diff --git a/human_reviews/0kHbD6ad07.md b/human_reviews/0kHbD6ad07.md
new file mode 100644
index 0000000000000000000000000000000000000000..4aa890022662fc0b34a60d8f98adc3e6807a6f6f
--- /dev/null
+++ b/human_reviews/0kHbD6ad07.md
@@ -0,0 +1,180 @@
+## Human Reviewer 1
+
+### Summary
+This is a primarily theory paper that discusses decoder only transformers being injective. Specifically that each unique prompt maps to a unique last token embedding (from final transformer layer). Paper provides theoretical setup and justification for this argument under acceptable assumptions at initialization (Theorem 2.2) and post SGD-like gradient based training (Theorem 2.3). It is to be noted, that the theorems state how injectivity is very high probability (1 or near 1) event under stated assumption and not proven. For eg., paper discusses how collisions (two different input mapping to same last token representation) can still occur if an adversarial crafts data specifically so (end of Section 2).
+
+Paper also introduces a prompt recovery method from last token representation. The method "Sequential Inverse Prompt via ITerative updates" or SIP-IT. This method says that at each index position given a current + previous token hidden representation, check each token in vocab to see which will produce current index hidden representation (formal algorithm describe in Algorithm 1). The paper further discusses computational cost of SIP IT.
+
+Review Note: Since the primary results are theoretical, I reduce my confidence to 3 in the reading and review.
+
+### Strengths
+- This is a unique and very science paper on LLMs, something we rarely see. Thanks for working on this. (I have what takeaways from this concern but more on that below).
+- It cites most related work I know and use proper baselines in experiments.
+
+### Weaknesses
+The paper seems poorly organized, I felt lot of important results were pushed into appendix and main paper felt very repetitive at times. I have listed my main qualms in the questions section.
+
+### Questions
+1. What is "measure-zero parameter choices"?
+1. If you consider the prompt length progressively growing (i.e. --> \inf) with no upper bound, but the model width (i.e. embedding or hidden representation size) is fixed, then the model's representation has to be overloaded to some extent. This would challenge the injectivity directly since it won't be lossless anymore. So I would argue, in the limit, since the vector dim of hidden dim is capped, transformers are not injective and infact more and more lossy. What do the authors think?
+1. Since the language follows power law of Zipf distribution [1], the words occurs as per an exponentially decaying frequency. One example, let us have LLM predict the next token on "Complete this: The quick brown fox jumps over the lazy [dog]" where "dog" is not part of prompt. If this exact phrase is used use with two distinct prompts (i.e. prefixes of this phrase), the next token would always be "dog" for most useful LLMs. Can you please run this as experiment with varied internet data used as prefix? If the next token prediction is same, I expect the last token to be super close if not identical and see if it meets the threshold of 1e-6 used in paper. There can be other examples as well, like cases where "should" is followed by "have" (assuming "should have" token is not part of vocab) with vastly different prompts. This is more inline with Zipfian distribution argument.
+1. Why threshold of 1e-6?
+1. Can you explain what exactly is the BRUTEFORCE method in Table 2?
+1. "distinct prompts produce distinct hidden states under standard initialization and training" is good summary of the paper.
+1. I think that under high precision, lookup of hidden activation against data is already expected. This steps from how deterministic models are. Can you clarify, under your threat model, the extractor of data have ONLY the last token embedding/representation with none of the prompt (and no knowledge of it's length either) or its access to each of previous token's embedding/representation as well? Because latter is kind of trivial (to me at least) and former is very difficult and the experiments might be convincing in that case. So yeah, the exact threat model is unclear to me, and kind of not stated clearly enough in the paper.
+
+[1] https://en.wikipedia.org/wiki/Zipf%27s_law
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The authors claim that a common thought is that language models are have a many to one relationship with regard to input and latent representation (respectively). The authors argue that language models are injective and that this suggests that there is an invertible relationship such that given a latent state, the input provided to arrive at this state is recoverable.
+
+The authors base the analysis on the belief that initialized transformers don't typically create collisions between prompts and that after a fixed number of training updates, the parameters have not been changed sufficiently to induce collisions.
+
+The authors propose a method to obtain the input to a language model. However, the method requires knowledge of the total last layer hidden state of the model for every substring of the prompt whose first token is the first token in the prompt.
+
+### Strengths
+This paper presents an interesting analysis I have not seen of the transformer architecture and convinced me that the transformer is often real analytic (though that depends on the choice of activation functions).
+
+### Weaknesses
+Terms like measure-zero and injective need to be defined.
+
+A collision must be defined. It's not sufficient to say that a collision didn't occur because a value differed in any way. Some bound must be placed on the distance between the output representations that constitutes a collision.
+
+Many activation functions are not real analytic functions.
+
+My understanding is that the zero set necessarily is measure-zero (given that the model is real analytic and we know the model is not the zero function). This doesn't seem to necessarily imply that no two inputs to the function will provide a similar output. I believe the authors intend for the reader to understand that the difference of two activations given dissimilar prompts is itself a real analytic function which then suggests that the difference between any two prompts whose value is zero is a measure-zero set. The problem with this logic is that it is possible that the difference between the last stage activations for two prompts is either the zero function or epsilon close to the zero function for some small epsilon without violating anything in the proof.
+
+My primary contention is that showing that the zero set is measure-zero is not sufficient to make the strong claim that there are no collisions. A collision should reasonably be considered anything within some small distance of zero rather than those items which have identical values given the reality of executing floating point operations a real machine.
+
+The SipIT method is trivial - given one knows the latent representation of every substring (which is less probable than simply knowing the input text to begin with), the algorithm can produce the substring by evaluating every possible token in this location. Further, the analysis of the algorithm seems to be either obscured or incorrect. For a prompt of length N and vocabulary of k, the algorithm will in the worst case require k^N time. This is exponential where the paper claims a linear time guarantee. Perhaps the paper meant linear with respect to vocabulary? But this is meaningless since the vocabulary is stationary and the input length is the changing factor.
+
+### Questions
+Decoder-only models are claimed to be a lossless representations of their input. This seems to be in contradiction to existing results that transformers are universal function approximators - a universal function approximation ought to be able to learn a many to one mapping if appropriate. However, function approximation is based on an epsilon bound. This seems to suggest that if instead of examining the size of the zero set, one were to examine the set which is epsilon close to the zero set, this would have no theoretic guarantee of being measure-zero. How does this not eliminate the practicality of the paper's analysis?
+
+What degree of fidelity is necessary for this result to hold? If lower precision approximations are used, online batching for practical serving, or significant context information is present, these will create random noise which ought to obscure any such precise mapping as is necessary for the analysis to hold.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+1
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper presents a strong theoretical study showing that decoder-only Transformer architectures are (almost surely) injective: different prompts map to distinct last-token hidden states. Building on this, the authors introduce SIPIT, an algorithm that recovers the exact input prompt from the final hidden state. The method is theory-driven and, across extensive experiments on a wide variety of models, the authors find no collisions, providing compelling empirical support for injectivity.
+
+### Strengths
+The main strength of the paper are as follows:
+
+1. This paper makes a significant theoretical contribution by proving that standard decoder-only Transformer language models are almost surely injective – different input prompts will (with probability one) produce distinct hidden representations. The authors use real analysis to show that collisions (two different prompts yielding the same last-token state).
+2. Building on the injectivity result, the novel algorithm (SipIt) to recover the exact input text from a model’s hidden activations with provable efficiency is introduced. As prior approaches could only approximate prompts via heavy training of inversion models, whereas SipIt achieves exact recovery by directly using the model's own representations.
+3. The paper backs up its theory with comprehensive experiments on two models (a kind of old GPT-2 and more novel Gemma). The authors performed an exhaustive search for representation collisions using 100k prompts drawn from diverse sources, amounting to billions of pairwise comparisons. They report no collisions in any model or layer tested, distinct prompts always yielded distinct last-token embeddings, with clear separation margins.
+4. The SipIt algorithm is shown to be not just theoretically sound but practically effective. On GPT-2, SipIt was able to reconstruct 20-token prompts perfectly (100% token-wise accuracy) in reasonable time, without any additional training or approximation.
+5. By establishing invertibility as a fundamental property, the work has broad implications. It provides a sound basis for interpretability: knowing that the full input is encoded in the last-layer state means any failure to probe knowledge is due to method limits, not information loss.
+
+### Weaknesses
+I would highlight the following weaknesses of this paper:
+
+1. Large vocabulary scaling. How does SipIt handle very large vocabularies (e.g., 100k+ tokens)? Does runtime grow linearly in practice, or do the gradient-based heuristics keep it manageable?
+2. Uncertain theoretical result of not-analytic estimation. Most modern models use SwiGLU or SiLU activations. Since your proofs assume analytic activations, can you confirm that these fit the theory?
+3. In continuation to the previous point, it is not clear, what happens with the quantized models. It seems that it can be the main source of the collision.
+4. The experiments are provided for models of relatively small size, thus, we cannot asses what empirically happens with the larger number of parameters.
+
+### Questions
+My questions to the authors are as following:
+
+1. Have you estimated, how SipIt works on datasets that were seen by the models during training, and on OOD samples, that were not observed by the model. Or even some random sequences of tokens? Does inversion speed or accuracy change compared to natural text?
+2. Instruction-tuned models with identical answers: For instruction models (or even pre-trained ones) where many prompts lead to the same answer (e.g., "yes" or "no"), do the hidden states remain well separated? Have you measured how close they get?
+3. Did you ever find prompts whose hidden states were almost identical? If so, what kind of prompts were they?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The authors make a significant theoretical and practical contribution by rigorously establishing that standard decoder-only transformer language models are almost surely injective - meaning different input prompts map to distinct last-token hidden representations under common initialization and training regimes. The authors leverage real-analyticity to prove that collisions (non-injective behavior) occur only on a measure-zero set of parameters, and they further demonstrate that gradient descent preserves this injectivity. Building on this foundation, the paper introduces SipIt, a novel algorithm that efficiently reconstructs the exact input prompt from hidden activations with provable linear-time guarantees. This work bridges theory and practice, offering new insights into model transparency, interpretability, and safety.
+
+### Strengths
+The following strong points can be highlighted:
+1. The theoretical analysis is rigorous, leveraging real-analyticity and measure theory to derive almost-sure guarantees.
+2. The injectivity results are novel and counter widespread assumptions about information loss in Transformers.
+3. SipIt is both theoretically grounded and empirically validated, demonstrating exact recovery with linear-time complexity.
+4. Extensive experiments across multiple models (e.g., GPT-2, Gemma, Llama) confirm the absence of collisions in practice.
+5. The paper clearly discusses implications for privacy, interpretability, and model auditing.
+
+The paper’s core contribution is proving injectivity and enabling exact inversion, which addresses foundational questions in deep learning and has immediate relevance to interpretability and safety. The proofs are meticulous, and the experiments are comprehensive, spanning multiple model families and scales. The introduction of SipIt provides a tangible tool for future research, while the theoretical guarantees are robust and well-supported. These qualities align with ICLR’s emphasis on impactful, rigorously evaluated work.
+
+### Weaknesses
+Whereas the paper is technically solid, there are several weak points I would like to mention:
+1. The scope is limited to decoder-only Transformers with analytic components, excluding architectures with non-analytic activations (e.g., ReLU) or encoder-decoder models.
+2. The practical utility of SipIt, while theoretically appealing, is primarily evaluated in a noiseless setting; its robustness to quantization or approximate hidden states is less explored.
+3. The discussion of related work, while adequate, could better contextualize how these results complement or challenge prior beliefs about Transformer expressivity.
+4. Some proofs in the appendix are highly technical and may be inaccessible to readers without deep mathematical backgrounds.
+5. It will be very interesting to analyze injectivity correlation with other internal transformer characteristics like anisotropy and intrinsic feature dimension using such frameworks as LLM-Microscope (https://arxiv.org/abs/2502.15007, https://github.com/AIRI-Institute/LLM-Microscope)
+
+### Questions
+1. How does SipIt perform under noisy or quantized hidden states, and can the theory be extended to account for such perturbations?
+2. Could the injectivity results generalize to encoder-decoder Transformers or models with non-analytic components (e.g., ReLU)?
+3. The paper claims gradient descent preserves injectivity - does this hold for adaptive optimizers like Adam, or only for GD?
+4. Are there practical scenarios where the linear-time complexity of SipIt becomes prohibitive, e.g., for very large vocabularies?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+6
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/0obDxMfeYu.md b/human_reviews/0obDxMfeYu.md
new file mode 100644
index 0000000000000000000000000000000000000000..bfa51280c5e47bbf1b9d68bf71c1a0697a728935
--- /dev/null
+++ b/human_reviews/0obDxMfeYu.md
@@ -0,0 +1,186 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces Medix, a method for Out-of-Distribution (OOD) detection that utilizes unlabeled "in-the-wild" data. Its core contribution is a two-stage process: (1) filtering potential OOD samples from the unlabeled data by identifying points whose gradient's element-wise median deviates significantly from the In-Distribution (InD) mean gradient, and (2) training a binary OOD detector using the identified outliers and labeled InD data. The authors support their method with theoretical error bounds and extensive empirical evaluations against numerous baselines.
+
+### Strengths
+1. A solid theoretical foundation is provided, with proven bounds on both inlier and outlier misclassification rates for the median-based filtering stage. This analysis offers valuable insight into the method's robustness, particularly under the Huber contamination model.
+2. The paper includes valuable investigations into hyperparameter sensitivity, pseudo-label quality, and computational efficiency, which bolster the credibility and practical understanding of the proposed approach.
+
+### Weaknesses
+1. The most significant weakness is the insufficient discussion and comparison with the most relevant prior work. The core mechanism of using gradients from an InD model to identify OOD samples in unlabeled data is the central contribution of Du et al. ("How Does Unlabeled Data Provably Help Out-of-Distribution Detection?"). While Medix employs a median-based objective instead of a mean-based one, the paper fails to compellingly argue why this constitutes a fundamental advance rather than an incremental variation. The absence of a direct, quantitative comparison with this key work (and its subsequent developments) makes it impossible to assess the true marginal contribution of the median-centric approach.
+2. The empirical comparisons, while broad, overlook several recent and highly relevant state-of-the-art methods (e.g., [a,b]). This omission weakens the claim of superior performance, as it remains unclear how Medix fares against its most direct competitors.
+3. The iterative, greedy filtering algorithm (Algorithm 1) is computationally intensive. Although profiling results are provided, the cost may be prohibitive for very large-scale datasets or applications requiring frequent model updates, which is a common scenario in real-world deployments.
+4. The theoretical guarantees rely on assumptions such as i.i.d. samples and sub-Gaussian gradient coordinates. The practical validity of these assumptions, especially for modern deep networks and complex data distributions, is not thoroughly justified and could limit the real-world applicability of the bounds.
+
+References:
+[a] Du et al. How does unlabeled data provably help out-of-distribution detection?. ICLR'2024.
+[b] Geng et al. LoD: Loss-difference OOD Detection by Intentionally Label-Noisifying Unlabeled Wild Data. IJCAI'2025.
+
+### Questions
+1. The mechanism of using InD model gradients to extract OOD candidates from unlabeled data is highly similar to the approach in Du et al. Could you explicitly clarify the fundamental conceptual difference between Medix and this line of work? Please provide a quantitative comparison on common benchmarks to demonstrate the advantage of using the median over other filtering criteria proposed in prior art.
+2. How does the theoretical analysis, particularly the error bounds, differ from or improve upon the theoretical framework already established in Du et al.? Is the primary theoretical contribution the adaptation of the analysis to the median operator, or are there new foundational insights?
+3. Why were the most directly comparable methods, specifically Du et al. and its subsequent developments, not included in the empirical comparison? Can you run these comparisons and report the results?
+4. Under what conditions would the median-based filtering be expected to perform poorly? For instance, how sensitive is the method to the quality of the initial InD model or scenarios where the OOD samples do not induce a significant shift in the gradient median?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper investigates how to enhance the OOD detection performance of a type of method which utilizes unlabeled wild data to train the model to distinguish between ID and OOD data. It proposes Medix, a median-based approach that filters outliers from the unlabeled wild data and then trains an OOD detector on the identified outliers and the ID samples. The authors provide theoretical guarantees for the robustness of median-based filtering and conduct experiments on CIFAR OOD benchmarks to verify its effectiveness.
+
+### Strengths
+1. The topic of utilizing unlabeled wild data for OOD detection is interesting.
+2. This paper provides a theoretical analysis of the proposed method.
+
+### Weaknesses
+1. **This paper should provide a more detailed discussion on a very important related work, SAL [1], which has only been briefly mentioned in the Related Work Section.** Both SAL and Medix share the same overall “Separate and Learn" framework, which first identifies OOD data from unlabeled wild data and then regularizes the model with them, and also leverages a similar reference gradient technique. If the reviewer understands correctly, the difference between SAL and Medix only lies in the procedures to use gradient information to identify candidate OOD data from the wild data. SAL can also be applied in the setting of dataset-level mixing. Therefore, the authors should **provide an in-depth discussion on the advantages of Medix over SAL, reinforced with additional experiment results or theoretical analysis.**
+
+2. **This paper omits a direct experimental comparison between SAL and Medix.** In fact, the reported results in the SAL paper indicate that SAL achieves nearly zero FPR95 on both CIFAR-10 and CIFAR-100 OOD benchmarks. But this paper claims that there are substantial opportunities for further advancement on utilizing unlabeled wild data. Therefore, the reviewer suggests that the authors **include a direct comparison with SAL and extend experiments on more challenging OOD benchmarks**, such as ImageNet-1k OOD benchmarks.
+
+3. The reviewer suggests that the authors present a detailed mathematical formulation of the element-wise median (EWM) used in the proposed algorithm, which will make it easier for readers to understand the implementation details.
+
+4. The process of filtering potential outliers from unlabeled wild data incurs non-negligible computational overhead, since it involves calculating the gradient of the loss function with respect to model parameters for every sample in the wild data. The reviewer suggests that the authors provide an experiment to quantitatively evaluate the actual time cost of filtering OOD data from unlabeled wild data with Medix and compare it with the time cost to train the OOD detector.
+
+[1]. Xuefeng Du, et al. How Does Unlabeled Data Provably Help Out-of-Distribution Detection?
+
+### Questions
+Please see the weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The work proposed to use median to address wild OOD detection. Median can used against noise and outliers for achieving robustness. The paper also provides error bounds to prove the effectiveness of proposed method.
+
+### Strengths
+A trivial method to address wild OOD with a strong theory.
+
+### Weaknesses
+I have not too many issues. I just want to ask why your bound has the Contamination term. It is possible to withdraw this term? In Du's work, there is not such constant. So it seems your bound is loss. Please address this issue, I will raise my score.
+
+### Questions
+See weakness.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes Medix, a median-based framework to identify OOD samples from unlabeled wild data and train robust OOD detectors. Theoretical analysis is provided along with the method to demonstrate the benifits of Medix.
+
+### Strengths
+Theoretical analysis are provided along with Medix. The authors derived an error bounds for understanding the proposed method under sub-Gaussian assumptions.
+
+### Weaknesses
+1. There is no comparison on challenging near-OOD scenarios and large-scale datasets (e.g., ImageNet), raising the concerns of the scalability of the proposed method.
+2. Limited novelty differentiation. Medix’s core design choice, i.e., (median filtering for OOD detector training) is closely related toOpenMatch[1] and SAL[, with insufficient distinction in motivation and mechanics. The reviewer generally feel the novelty of the proposed method does not meet the bar of NeurIPS. More comprehensive comparison may be necessary.
+3. Inadequate evaluation. Strong baselines are missing. Initial comparisons used outdated methods (e.g., KNN+ 2022). Some recent SOTA (e.g., CIDER[3], POEM[4]) are missing.
+
+[1] OpenMatch: Open-set Consistency Regularization for Semi-supervised Learning with Outliers
+
+[2] How Does Unlabeled Data Provably Help Out-of-Distribution Detection?
+
+[3] How to Exploit Hyperspherical Embeddings for Out-of-Distribution Detection?
+
+[4] POEM: Out-of-Distribution Detection with Posterior Sampling
+
+### Questions
+see weakness
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 5
+
+### Summary
+The paper proposed Medix, which leverages the unlabled wild data to build OOD detector. Medix first utilizes the graidents from the ERM loss and an element-wise median (EWM) to extract candidate outliers from the wild unlabeled data, adopting the greedy leave-one-out strategy. The OOD detector is then trained on the ID data and the extacted data. Theoretical bounds are provided to gaurantee low error rate for outlier selection.
+
+### Strengths
+1. Principled method for filtering outliers: The authors propose Medix which can cleanly extract outliers from wild dataset, being well theoretically grounded on misclassification rate, separating contamination.
+2. This paper provides a new perspective for OOD detection in a more realistic scenario, additional but unlabeled data is provided during training and deployment.
+3. The proposed Medix achieves strong performance across various OOD datasets.
+
+### Weaknesses
+1. Computational concern. While the gradients can be efficient for extracting outliers, it may introduce unaffordable computational cost. Time and Space complexity analysis will further justify the effect of Medix. The gradient quality may also influence the extraction, which is closely related to the amount of ID data used.
+2. Modest improvement. The baselines can already achieve great performance (e.g., WOODS on CIFAR10 vs. SVHN and LSUN-C), indicating that the improvement of Medix may be dataset-based and may shrink in some other domains(harder cases).
+3. Concern of greedy selection algorithm: while the leave-one-out strategy is intuitive and straightforward and the theoretical bounds are provided, there still be failure modes where ID data is wrongly removed.
+
+### Questions
+See weaknesses above.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/1CR1MTIgmq.md b/human_reviews/1CR1MTIgmq.md
new file mode 100644
index 0000000000000000000000000000000000000000..f8a6aac243d32acb1ee761d1476ac94840201aca
--- /dev/null
+++ b/human_reviews/1CR1MTIgmq.md
@@ -0,0 +1,97 @@
+## Human Reviewer 1
+
+### Summary
+I think this paper should have been desk rejected.
+It is essentially an attack on another article published in TPAMI, without any context or scientific contribution. The topic (brain–computer interface) is also outside my area of expertise.
+
+### Strengths
+N/A
+
+### Weaknesses
+N/A
+
+### Questions
+N/A
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+In 2021, the following paper was published in TPAMI: Palazzo et al., "Decoding Brain Representations by Multimodal Learning of Neural Activity and Visual Features," TPAMI, 43(11): 3833–3849 (2021). Since its publication, several papers have identified substantial flaws in this work. In particular, two comments papers appeared in TPAMI (Ahmed et al., 2022; Bharadwaj et al., 2023). In 2024, Palazzo et al. published a rebuttal in TPAMI presenting their response to these criticisms. The present submission is a continuation of this discourse, aiming to highlight the issues in Palazzo et al. (2024). Each of Sections 2–8 examines individual claims from Palazzo et al. (2024) and argues why they are invalid, partially providing support through experimental results.
+
+### Strengths
+The paper provides a critical discussion of several technical details of a previous TPAMI publication, following up on the subsequent comments and rebuttal papers that also appeared in TPAMI. Thus, it may help clarify the technical issues that have been raised.
+
+It also contributes to increasing general awareness of these and similar methodological challenges in neuroimaging and other fields.
+
+### Weaknesses
+This is a very unusual submission. A substantial portion of the text largely reiterates claims from the Palazzo et al. (2024) paper, as well as from the subsequent comment and rebuttal papers. The arguments presented for each cited claim are very brief and lack sufficient detail and discussion. In its current form, the paper is not self-contained, which makes it difficult to properly assess its content.
+
+It is highly questionable whether ICLR or similar conferences would be an appropriate venue for this submission, as it does not present any novel technical contributions. Considering the follow-up history of the original Palazzo et al. (2021) paper, TPAMI appears to be the more suitable venue for continuing this discussion.
+
+### Questions
+Why not consider contributing this text to TPAMI?
+
+Alternatively, why not consider a suitable online forum established for this ongoing discussion, potentially moderated by an authoritative figure in the field? This would allow many researchers to participate, fostering a collaborative effort aimed at arriving at the truth. In this context, such a platform might be even much more effective than publishing the work as a standalone paper.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper addresses statements in a recent publication.
+
+### Strengths
+The paper seems to address a major shortcoming in the published literature.
+
+### Weaknesses
+As far as I can see, no research contribution is made and the paper is off topic for ICLR. It is also over the page limit. The paper should be sent to TPAMI.
+
+### Questions
+n/a
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+0
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/23Ea4fVGiI.md b/human_reviews/23Ea4fVGiI.md
new file mode 100644
index 0000000000000000000000000000000000000000..c9814d9f94b189862813ffd0ca42d1fb925f0b3c
--- /dev/null
+++ b/human_reviews/23Ea4fVGiI.md
@@ -0,0 +1,110 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces a prompting approach based on the Task–Method–Knowledge (TMK) framework, originally from educational research. The authors argue that LLMs often fail on multi-step planning tasks because typical prompts provide only shallow textual goals. TMK decomposes each problem into structured layers: task (goal and conditions), method (procedure), and knowledge (objects and relations). The authors uses PlanBench’s Blocksworld domain in a TMK-formatted json and compare it with the plain prompts on GPT family (GPT-4, GPT-4o, o1-mini, o1, and GPT-5). Results show modest but consistent improvements.
+
+### Strengths
+• The paper introduces a simple and interpretable idea: representing planning tasks in a structured TMK format may align with how procedural knowledge is expressed in model pre-training data
+
+• The approach is prompt-based and requires no fine-tuning or external resources, making it easy to reproduce and extend.
+
+• The empirical trend (larger gains for weaker models) is intuitive and suggests the TMK structure provides helpful inductive bias.
+
+### Weaknesses
+• The experiments are narrow: only one domain and one benchmark family. Claims about general planning improvement are therefore not well supported.
+
+• There are no comparisons with so many other structured prompting methods (eg CoS, ReAct, least-to-most, chain-of-thought scaffolding and so on). It is unclear whether TMK offers advantages beyond simply using more structured json templates.
+
+• The explanation of why TMK helps remains speculative. No ablation isolates whether improvements come from the educational knowledge model framing or just from better formatting and key-word cues.
+
+### Questions
+The writing quality and technical presentation are weak, with many typos, missing citations, and incorrect or inconsistent latex usage (eg mismatched quotes and unescaped underscores). The paper would need careful proofreading and formatting cleanup.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper studies integrating the Task-Knowledge-Method (TMK) framework into prompting for LLM reasoning tasks. It focused on the blocksworld task in Planbench and experimented with OpenAI models.
+
+### Strengths
+The paper shows the potential of applying a prompting technique to improve the performance of models on the blocksworld task.
+
+### Weaknesses
+1. The reviewer finds it difficult to understand what is the core idea/contribution of TMK prompting method proposed in the paper. The paper did poorly in explaining the proposed prompting method.
+2. The paper proposes a prompting method, yet there are no examples of the prompt in the paper.
+3. Experimental evidence of the advantage of the proposed method is very limited: only OpenAI models, only one task (blocksworld), and many numbers are missing (Table 2)
+
+### Questions
+The presentation of the paper needs a lot more work, to list a few:
+1. Missing citation in line 39.
+2. Missing space in line 50.
+3. Missing citation in line 394.
+4. A formatting suggestion: most citations in the paper should use `\citep{}` instead of `\cite{}`.
+5. Figure 1 is too big, and the resolution of the image is too low.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes TMK, a framework to capture specific reasoning structures in LLM reasoning tasks. It features explicit task decomposition, and benefits the LLM reasoning tasks. It proposes a PlanBench benchmark to conduct experiments.
+
+### Strengths
+The method focuses on the key problem of long reasoning LLMs, which does not have clear task decomposition during thinking.
+
+### Weaknesses
++ Many fields are missing in Table 2, especially Plain Text + One Shot. Note that it's unfair to compare the other two columns (TMK + One Shot vs Plain Text + Zero Shot). The paper does not have other main results.
++ It does not make sense to replace standard description of blockworlds into irrelevant mystery or random words. No LLM learns it during pre-training, nor people will use those words to describe tasks, nor they will use LLMs like this.
++ It's not easy to understand what TMK is doing (lacking a concrete example of the prompt/formatting).
++ The method is only experimented on blockworlds, which is a toy dataset easily solvable by non-machine learning algorithms like DFS. It's unknown whether the method can be generalized to other meaningful domains, such as mathematical, logical, legal, scientific reasonings.
+
+### Questions
++ There is only 1 item in the list (Line 054)
++ Gpt5 -> GPT-5 (Line 308)
++ Unknown citation (?) (Line 394)
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/2PJkG6aV4A.md b/human_reviews/2PJkG6aV4A.md
new file mode 100644
index 0000000000000000000000000000000000000000..3b0acc35c45f3f54c4174dc6c65f1fe409a9f891
--- /dev/null
+++ b/human_reviews/2PJkG6aV4A.md
@@ -0,0 +1,156 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a method to evaluate societal bias in LVLMs that have strong safety guardrails. The authors note that modern LVLMs often refuse to answer traditional bias prompts that ask them to infer a person's attributes from an image. To bypass these refusals, their proposed method uses person-irrelevant tasks while providing a user's photo as implicit demographic context. Applying this framework to 20 LVLMs, the authors find it successfully avoids refusals and reveals that all tested models exhibit bias by altering their responses based on the user's perceived demographics.
+
+### Strengths
+**1. An effective framework for evaluating guarded models**
+
+The paper correctly identifies a critical problem: existing bias benchmarks are failing because modern models with safety guardrails simply refuse to answer. The proposed method is a novel and effective solution to this issue. By changing the evaluation paradigm, it successfully bypasses these guardrails to achieve a zero refusal rate, offering a practical way forward for evaluating heavily-guarded models.
+
+**2. A comprehensive, large-scale empirical study**
+
+The paper presents a comprehensive and large-scale empirical study of societal bias across 20 recent LVLMs, including both open-source and proprietary models. The evaluation is well-structured, using three distinct tasks to probe different facets of bias. This broad study provides a valuable snapshot of the current bias landscape and yields interesting comparative results between different types of models.
+
+### Weaknesses
+**1. Limited Methodological Novelty**
+
+The paper's core methodological contribution is limited. The proposed framework is largely an adaptation of the established "persona-based evaluation" paradigm from the text-only LLM domain. The primary modification is substituting an explicit textual persona with an implicit visual one via a user's photo. This is a straightforward and incremental step, rather than a fundamental innovation in evaluation methodology.
+
+**2. Potential for Confounding Variables in User Images**
+
+The evaluation framework does not adequately account for confounding variables within the user images. While the paper assumes the model's biased outputs are a reaction to core demographic traits like gender and race, the images contain many other correlated cues. The paper does not present any analysis to disentangle these factors, making it unclear if the model is reacting to the intended demographic variable or to these other confounding visual features.
+
+**3. Over-constrained "Story Generation" Task May Induce and Exaggerate Bias**
+
+One of the paper's key findings relies on the "story generation" task, which is presented as the most open-ended evaluation. However, the prompt for this task is highly constrained, explicitly forcing the model to fill in seven sensitive attributes, including job, economic status, and education. This setup is less a measure of bias in creative, open-ended generation and more a "stereotype fill-in-the-blanks" exercise. This task design may itself induce bias and exaggerate the extent to which the model would apply stereotypes in more natural, unconstrained scenarios.
+
+### Questions
+The paper's central claim is that the model's outputs are influenced by the user's demographic traits. Could the authors provide any analysis or stronger arguments to rule out the influence of potential confounding visual variables that might be spuriously correlated with demographics in the input images?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+1
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper identifies a critical flaw in existing methods for evaluating societal bias in Large Vision-Language Models: the increasing prevalence of safety guardrails. Models like GPT and Claude often refuse to answer attribute-inferring prompts, making traditional bias benchmarks unreliable. To solve this refusal problem, the authors propose a novel guardrail-agnostic evaluation method. The key idea is to decouple the task from the person in the image. Instead of using the image as a target for an attribute-inferring prompt, the method uses the image as provisional user information paired with a person-irrelevant prompt. The authors instantiate this framework across three tasks (Story Generation, Term Explanation, Exam-Style QA) and apply it to 20 recent LVLMs (both open-source and proprietary). Their method successfully achieves a 0% refusal rate. The results show that all models exhibit gender and racial bias and that proprietary models, while still biased, show lower levels of bias than open-source ones, which the authors hypothesize is due to continuous monitoring and iterative refinement rather than just one-time safety training.
+
+### Strengths
+1. Clarity and Writing: The paper is exceptionally well-written, clear, and logically structured. The problem is motivated perfectly with concrete examples (Figure 1) and data (Table 1), making the paper's contribution easy to understand and appreciate.
+2. Novel and Necessary Methodology: The "refusal problem" is a very real and growing challenge for AI safety and fairness research. As models become more locked down, prior evaluation methods are becoming obsolete. The proposed guardrail-agnostic method is an elegant, simple, and highly effective solution. It cleverly reframes the evaluation to probe implicit associations without triggering the models' explicit safety guardrails. The fact that it achieves zero refusals is a strong validation of the approach.
+3. Significant and Nuanced Findings: The paper's comprehensive evaluation of 20 LVLMs produces several nuanced and important findings for the community. The observations are not monolithic ("all models are biased") but are carefully broken down.
+4. Thorough and Insightful Discussion: The discussion in Section 5 is a major strength. The authors move beyond just reporting results to hypothesize why these results occur. The argument that continuous monitoring and iterative refinement are key factors in bias reduction —more so than just static safety alignment —is a mature and important takeaway for the field, especially for the open-source community.
+
+### Weaknesses
+The paper is of very high quality overall. Here are some questions:
+1. The validation of the LLM-as-judge showed a 97% human agreement for the term explanation task. Was a similar human-agreement study performed for the story generation attribute extraction? This seems like a more complex and potentially ambiguous extraction task (e.g., parsing "personality" or "economic situation"), and it would be valuable to know the human-LLM alignment there as well.
+2. In the "Term Explanation" and "Exam-Style QA" tasks, did the models ever comment on the irrelevance of the attached photo? For example, a response like, "I'm happy to explain linear algebra, but your photo is not relevant to the query." While not an explicit refusal, this would be an interesting behavior to note, as it sits between a full refusal and the (biased)-but-compliant behavior observed.
+
+### Questions
+See weakness
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper aims to address the problem of diagnosing social biases in LVLMs which have strong safety guardrails, The authors find that leading commercial LVLMs as well as some recent open-source LVLMs refuse to answer queries that are commonly used for diagnosing bias in these models (e.g., refusing to identify the occupation of a person). To avoid this issue, the authors propose a simple approach where they prompt LVLMs with an image and a text prompt which does not ask direct questions about the person, thereby eliminating the problem of model refusal. Despite the prompt not referencing the person in the image, significant differences in story generation, term explanation, and exam-style QA responses are observed depending upon the race and gender of the person depicted in the image. Experiments are conducted across a wide range of open-source and commercial LVLMs to quantify these differences.
+
+### Strengths
+1. The problem of studying intrinsic model biases in the face of safety guardrails is important and timely
+2. The authors propose a simple but clever solution which to the best of my knowledge is novel and original
+3. Several interesting findings are provided throughout the paper, such as discrepancies in the presence of technical jargon depending upon the race/gender depicted in the image (observation 2.2)
+4. Additional analyses are provided investigating the relationship between bias and model size, gender/race bias interdependence, and bias generalization across tasks.
+
+### Weaknesses
+1. The study only investigates race and gender bias, which seems limiting considering that image datasets exist with annotations for other types of social attributes.
+2. The proposed method itself is quite simple, which is not necessarily a weakness. However, the simplicity of the approach makes the first few pages of the manuscript feel repetitive as the same basic idea is described multiple times.
+3. The term explanation and exam-style QA tasks could be viewed as somewhat contrived in that they are not realistic prompting scenarios for LVLMs (i.e., it's unlikely for an image of a person to be provided as context along with a math of physics question). However, I understand the need to use creative prompting techniques to circumvent refusals.
+4. This work is limited only to bias evaluation and did not explore any strategies for mitigating bias.
+
+### Questions
+1. Why did you limit your study to only race & gender attributes and a single dataset (FairFace)? Other datasets such as FACET and SocialCounterfactuals contain images with annotations for other types of social attributes which would be interesting to investigate.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes a new evaluation protocol of societal bias in *guardrailed* large vision-language models. The authors show that LVLMs with safety guardrails refuse to answer direct attribute inference prompts used in conventional bias evaluation, and propose to use indirect prompts (e.g., story generation) merely using the image as a context. The new benchmark is shown to eliminate model refusal, yet still exposes hidden demographic biases in the LVLM responses.
+
+### Strengths
+- Unlike existing work that probe direct bias of models, the paper exposes indirect biases in LVLMs even through irrelevant questions to the input image. Such bias can potentially result in disparities in the response style and quality of the model, and likely cannot be eliminated by mitigation methods that target direct bias.
+- The evaluation is reasonably large-scale, spanning 3 probe tasks and 20 open-source and proprietary models. Results are extensive with detailed breakdown of bias types and qualitative examples. Some of the findings, such as the breakdown of bias per subject and demographic group, expose the stereotypes of existing VLMs that merit further research.
+- Overall writing of the paper is clear and easy to follow.
+
+### Weaknesses
+- Comparison to existing open-ended bias evaluations: I wonder if the proposed approach differs substantially from VisBias and other open-ended benchmarks, beyond using a different set of prompts. While the new tasks are irrelevant to the image by design, the prompts do refer to the user photo explicitly ("I've attached my photo...") and I wonder if the models may be misled to believe its response (e.g., generated story) should relate to the image, which leads to the same spurious correlations that direct bias probing suffers from. I would have liked to see some quantitative evaluations or comparisons between open-ended probing methods, similar to how the authors compared refusal rate to closed-form prompts in table 1.
+- It would be more convincing if the LLM judge used an ensemble of multiple models to reduce potential bias and variance from the Qwen3 32B model. While the model is shown to agree with human 97% of the time, it is unclear if this is high enough as the bias measurements for the task (term explanation) are mostly under 5%.
+- Most of the qualitative analysis was presented for story generation and term explanation and make intuitive sense. However, it remains unclear to me how the exam QA task could also be affected by demographics depicted in the image. The paper does not provide a detailed hypothesis or analysis on this task. Or could it be that the measured TVD of 1-2% is already within the margin of error that one cannot conclude the bias is present with certainty at all?
+
+### Questions
+(in addition to questions raised in weaknesses)
+While the experiments are already extensive, there are a few open questions worth further exploring:
+- Does the bias originate from LLM pretraining, and how multimodal training amplifies it? Authors may apply the same benchmark on text-only models, with image replaced with detailed caption or user profile in the context.
+- How effective are existing mitigation methods on the indirect bias? Adding system prompts that instruct the LVLM to avoid stereotypes from the input image could be a starting point.
+- Likewise, the authors can compare the bias of the same model architecture in different training phases (e.g., PT->SFT->RL) to study whether each phase reduces or amplifies bias.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/2uTxLC4LmC.md b/human_reviews/2uTxLC4LmC.md
new file mode 100644
index 0000000000000000000000000000000000000000..211d17abc7a4465441a09913685b4e4eecedf74f
--- /dev/null
+++ b/human_reviews/2uTxLC4LmC.md
@@ -0,0 +1,218 @@
+## Human Reviewer 1
+
+### Summary
+Reinforcement learning on chain-of-thoughts to improve reasoning capabilities have led to very strong thinking models like OpenAI-o1 and Deepseek-R1. These models generally produce a long sequence of “thinking” tokens (enclosed by or similar tags) followed by the final answer, and being trained to spend additional compute for thinking has dramatically improved these models capabilities in complex tasks like math and coding.
+
+However, this increase in capabilities also raises concerns about their misuse and safety issues. This work particularly studies the safety of both the chain-of-thought and the final answer. It shows that even when the final answer is safe, the chain-of-thought generated by the LLM can still be safe. The paper claims potential misuse of the unsafe chain-of-thoughts (COTs), and studies how to make COTs themselves safe. Specifically, they identify two mechanisms, namely safety triggers (where the model generates a sequence of tokens detecting potential harm of its chain-of-thought and stops) and compliance cues (where the model complies with potentially harmful requests) that affect safety of the chain-of-thoughts. The work then proposes to generate safe responses from unsafe ones by replacing the first “compliance cue” with a “safety trigger” and completing the response, use the (unsafe response, edited safe response) as a potential preference pair, and finally run DPO style training to induce safety in the chain-of-thoughts. The paper calls this method Intervened Preference Optimization (IPO), and demonstrates its performance in both safety benchmarks as well as demonstrates that it preserves performance across regular reasoning tasks.
+
+### Strengths
+1. The paper is well-written and executed. The idea of how to generate the preference pairs is well motivated by describing why simple reinforcement learning does not suffice (section 2.3), then showing a comparison of compliance cues and safety triggers after formally defining them (Section 3.1, 3.2), all of which leads to the final method of Intervened preference optimization (Section 3.3 and 3.4). I think the way the paper is structured is quite intuitive and illuminating.
+
+2. The results shown in Table 2 are comprehensive and thorough. Across a wide range of datasets and baselines, the proposed method shows strong performance. I also like the evidence shown in favor of the proposed method not harming regular reasoning performance on math datasets.
+
+3. The explanations about safety dynamics, and analyzing the safety of chain-of-thought besides the final answer is interesting and can be useful for the community.
+
+### Weaknesses
+I will list my concerns about this paper in the order of most to least severity.
+
+## Potential Flaw in the Problem Setting
+
+The biggest weakness of this paper is actually in the problem setting of attempting to make the chain-of-thoughts themselves safe, instead of just keeping the final response safe. I do not fully buy the authors’ argument, presented in 2.2, for why we should train models to keep their chain-of-thoughts safe. Particularly, prior works [1, 2] have described how making chain-of-thoughts safer can harm monitorability of modern reasoning LLMs. [1] shows that for a strong reasoning model like o3-mini, prolonged training to apply optimization pressure on the COT directly can lead to obfuscation, where the model can take harmful/unsafe actions while obfuscating their thoughts in the COT, which may make it **much harder** to actually prevent unsafe behaviors. In other words, making COTs safe does not mean that very strong reasoning models like o3-mini will become safe — these models might just learn to obfuscate their chain-of-thoughts. **A very strong counter-argument will be needed to supporting why we need to make COTs safe instead of just the final answers, given the results from frontier reasoning models like o3-mini presented in [1], to justify why COTs should be safe as well, given the risk to monitorability that this process may produce.**
+
+A simple way for current reasoning models, adopted by most frontier LLMs, is to just not reveal their chain-of-thoughts to the user. In this way, chain-of-thoughts act like scratch pads, and just training the model to backtrack/reverse safety issues in the final answer by spending additional compute during inference [4, 5] seems like a better option compared to specifically training for COT safety.
+
+## Lacking contextualization and novelty
+
+Firstly, just teaching the model to backtrack in its chain-of-thought to correct potential unsafe generations, such as Backtrack [4] might result in better performance. This paper does not cite [4] nor compare with it. Moreover, the idea of adding interventions to unsafe responses to potentially edit them to generate a preferred response, then creating a (preferred, dispreferred) pair for DPO-style training has already been explored in [4]. Without properly citing/contextualizing the current work with respect to [4] makes it significantly weaker.
+
+## Inheriting regular problems of DPO
+
+The paper describes why regular RL/GRPO does not work (base model lacks diversity) and then proposes the alternative method of IPO. However, this seems to me to be a similar reasoning of why people were using DPO style learning for math/reasoning earlier. Specifically, if base models lack sufficient coverage and capacity, then online RL might not induce the correct learning behavior [7]. However, the proper solution of that is to train a better base model, as shown in [7], and then to use online RL on top of it, instead of using offline methods like DPO.
+
+More specifically, an offline DPO loop will inherit all the problems of such an algorithm, like unintentional unalignment [8, 9] and problems of off-policy data [10, 11, 12]. These works and the concerns they raise about offline DPO-class of algorithms are not properly addressed in the paper. For example, what happens to the probability of positive sequences as IPO training goes on?
+
+## Lack of baselines
+
+This is a very minor concern, but instead of running DPO, if one just runs SFT on the constructed preferred responses, how does that perform? How about SFT + DPO (i.e., RPO [9])?
+
+### Questions
+1. Is there any reason to use GPT-4o, instead of the specific OpenAI safety moderation API (https://platform.openai.com/docs/guides/moderation) to judge safety? I believe the safety moderation API would be a better judge since it is specifically trained for this purpose, and having a strong enough judge is important for the numbers presented to be believable.
+
+2. How does this work compare to more recent methods specifically designed to instill safety into reasoning LLMs, such as TARS [5]? More specifically, I am interested in something like Figure 2 in [5], where one can clearly see the safety vs compliance tradeoff of thinking models. Does this paper’s proposed method, IPO, reduce performance on borderline/more tricky questions, which may seem unsafe at first but the model should think/spend more compute to actually find a satisfying answer? How does IPO perform on “ambiguous” prompts defined in [5]? Possibly using prompts from OR-Bench [6], that evaluates LLMs on over-refusal, can be useful here.
+
+3. A continuation to the previous question, but how does the model perform under tricky questions such as the one shown in Figure 1 of Deliberative Alignment [3], where only after thinking through/processing the question can the model understand that the prompt is asking the model to do something unsafe?
+
+# References
+
+[1] Monitoring Reasoning Models for Misbehavior and the Risks of Promoting Obfuscation, https://cdn.openai.com/pdf/34f2ada6-870f-4c26-9790-fd8def56387f/CoT_Monitoring.pdf
+
+[2] Chain of Thought Monitorability: A New and Fragile Opportunity for AI Safety, https://arxiv.org/abs/2507.11473
+
+[3] Deliberative Alignment: Reasoning Enables Safer Language Models, https://arxiv.org/abs/2412.16339
+
+[4] Backtracking Improves Generation Safety, https://arxiv.org/abs/2409.14586
+
+[5] Reasoning as an Adaptive Defense for Safety, https://arxiv.org/abs/2507.00971
+
+[6] OR-Bench: An over-refusal benchmark for large language models, https://arxiv.org/abs/2405.20947
+
+[7] Cognitive Behaviors that Enable Self-Improving Reasoners, or, Four Habits of Highly Effective STaRs, https://arxiv.org/abs/2503.01307v1
+
+[8] Unintentional Unalignment: Likelihood Displacement in Direct Preference Optimization, https://arxiv.org/abs/2410.08847
+
+[9] Iterative Reasoning Preference Optimization, https://arxiv.org/abs/2404.19733
+
+[10] Is DPO Superior to PPO for LLM Alignment? A Comprehensive Study, https://arxiv.org/abs/2404.10719
+
+[11] Preference Fine-Tuning of LLMs Should Leverage Suboptimal, On-Policy Data, https://arxiv.org/abs/2404.14367
+
+[12] Bridging Offline and Online Reinforcement Learning for LLMs, https://arxiv.org/abs/2506.21495
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+IPO proposes a DPO style training approach for safety in reasoning models by first identifying compliance cues and replacing them with safety triggers. Interestingly, IPO only trains on preference pairs of reasoning traces but show that this also leads to safe answers. The paper first conducts studies into SFT and RL based approaches for safety training, showing the limitations of both approaches on reasoning safety. Then they analyze the CSR by looking into turning points to see that replacing compliance cues with safety triggers could lead to reasoning traces that generate safe answers. Finally, they construct a DPO (RPO) preference dataset with prefixes including the reasoning trace up to the first compliance cue, chosen responses being a reasoning completion when replaced with a safety trigger, and rejected response being the original reasoning completion.
+
+### Strengths
+The paper is strongly motivated through analysis on SFT based and RL based approaches with RL experiments rewarding the safety of the reasoning directly. Analysis on CSR also provides valuable insight into the mechanism of how reasoning leads to a safe answer. Although it has been known that reasoning helps with safety, it has not been clear how or why it helps. This paper gives insight into this problem. Most interestingly, training only on the reasoning leads to safer answers, which is a sufficiently different paradigm from RLVR training in math domains. It shows that reasoning in more open-ended domains could work differently.
+
+### Weaknesses
+1. Although the paper includes sufficient baselines for SFT-based approaches, it does not include prior open-source work that uses RL-based approaches for safety training such as TARS [1]. Since part of the motivation is that RL training also does not provide sufficient signal, comparing against prior RL-based approaches for both reasoning trace analysis (Figure 2) and performance (Table 2) would help strengthen the paper.
+2. In Table 2, is the Avg. safety score across both Rsng. and Resp. or just Resp.? It would be helpful if the table includes averages for them separately to see how the effect of IPO is different for the reasoning and answer.
+3. I am not convinced about the claim in lines 189-191 “However, the absolute safety scores remain limited on adversarial datasets, suggesting the challenge of imposing process supervision”. How much effort was put into the training for tuning hyperparameters and exploring context guidelines in the reward model? The authors should explain what methods they tried to get the best performance out of GRPO with process rewards.
+4. The experiments on safety triggers and compliance cues were conducted on DS-8B. However, DS models are known to be relatively unsafe compared to other models [2,3], exhibiting different behavior. Does the trend also hold on other base reasoning models such as Qwen3-8B which are known to be safer?
+
+
+**References**
+
+[1] Kim, Taeyoun, et al. "Reasoning as an Adaptive Defense for Safety." arXiv preprint arXiv:2507.00971 (2025).
+
+[2] Zhou, Kaiwen, et al. "The hidden risks of large reasoning models: A safety assessment of r1." arXiv preprint arXiv:2502.12659 (2025).
+
+[3] Zhang, Zhexin, et al. "How Should We Enhance the Safety of Large Reasoning Models: An Empirical Study." arXiv preprint arXiv:2505.15404 (2025).
+
+### Questions
+General comments:
+
+1. The qualitative examples in the Appendix should be referenced in the main body. I was generally confused in lines 255-257, 274, 287-290 before I saw those examples.
+2. It would be helpful to also mention in words in section 3.4 that IPO only contains reasoning traces in the preference pairs.
+3. It would be helpful to include RL-based approaches in the related works section.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper tackles the problem of reasoning-level safety alignment in Large Reasoning Models (LRMs). It introduces Intervened Preference Optimization (IPO), a novel DPO-based method that supervises reasoning by replacing unsafe compliance cues with safe triggers to form preference pairs at safety-critical steps. Extensive experiments across multiple LRMs show that IPO substantially reduces harmful reasoning and response content while preserving or even improving reasoning capabilities.
+
+### Strengths
+- Clear technical novelty: The proposed IPO method is conceptually distinct from existing SFT or RL-based alignment methods, offering an integration of intervention-based preference optimization for reasoning safety.
+
+- Strong empirical grounding: The preliminary analyses (Sections 2 and 3) are concrete and provide interesting insights about safety of LRMs — establishing a solid foundation for the proposed approach.
+
+- Effective results: IPO consistently improves reasoning-level and response-level safety across multiple benchmarks without degrading reasoning capability.
+
+### Weaknesses
+- Limited model scale evaluation: Experiments are only conducted on mid-sized LRMs (DS-7B/8B and Qwen3-8B). Evaluating IPO on smaller (e.g., DS-1.5B) and larger models (e.g., DS-14B, DS-32B) would help assess scalability and generalizability.
+
+- Lack of adaptive robustness testing: It would be more convincing to include adaptive or adversarial tests such as obfuscation, paraphrased jailbreaks, or multi-turn exploit prompts, which better reflect real-world attack surfaces.
+
+- Limited capability assessment: Although math and coding benchmarks are included, there is no evaluation of general language capabilities after alignment — e.g., factual QA, instruction-following coverage, multilingual understanding, or knowledge recall. This raises questions about whether IPO maintains general utility beyond reasoning-heavy tasks.
+
+### Questions
+Why are the training dataset sizes for IPO different across models (DS-8B, DS-7B, Qwen3-8B)?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper explores how to achieve safe reasoning in LLMs. The authors argue that most existing safety-aligned models focus only on surface-level refusals or single-turn judgments, ignoring how unsafe reasoning trajectories evolve internally.
+To address this, the paper introduces a reasoning-aware alignment framework that dynamically monitors intermediate reasoning states, detects unsafe reasoning drifts, and reinforces safety alignment during the reasoning process itself.
+
+### Strengths
+1. The paper addresses a crucial and emerging challenge — safety alignment for reasoning models. This topic is becoming increasingly important as reasoning-capable models are deployed in real-world agentic settings.
+
+2. The paper makes a clear distinction between response-level and reasoning-level safety, offering a conceptual advance that will help structure future research in this area.
+
+3. The experiments show consistent improvements on multiple safety benchmarks, while maintaining competitive reasoning performance. The trade-off between safety and capability is well-balanced, outperforming SFT-based and RL-based baselines.
+
+4. The paper is clearly written, with intuitive diagrams and examples that help readers understand complex reasoning dynamics. Figures illustrating unsafe reasoning chains and safety corrections are particularly effective.
+
+### Weaknesses
+1. The paper would benefit from a deeper theoretical discussion on why certain reasoning paths become unsafe, and why the IPO method work.
+
+2. Empirical evaluation could be strengthened by including more open-ended reasoning scenarios to demonstrate generalization beyond factual or mathematical reasoning.
+
+### Questions
+1. The paper shows that Intervention by Prompt Optimization (IPO) significantly enhances reasoning safety by replacing compliance cues with safety triggers. However, do these interventions perform differently across attack types—for instance, between direct jailbreaks and indirect persuasion attacks? Are certain categories (e.g., violence, misinformation) more effectively mitigated than others?
+
+2. While IPO successfully reduces unsafe reasoning, how does it avoid over-refusal on benign requests? The paper mentions supplementing benign datasets—could you elaborate on whether this mechanism sufficiently addresses the trade-off? Might a more fine-grained calibration strategy further improve the balance?
+
+3. Some experiments (e.g., on GPQA-Diamond) suggest that IPO not only improves safety but also enhances reasoning performance. Does this imply that safety triggers might indirectly reinforce logical consistency or reduce reasoning shortcuts? It would be valuable to further explore this potential synergy between safety alignment and reasoning robustness.
+
+4. In adversarial contexts where attackers attempt to bypass safety triggers (e.g., through indirect phrasing or prompt obfuscation), how resilient is IPO?
+
+5. While the paper responsibly avoids releasing harmful examples, could the intervention mechanism itself be reverse-engineered (e.g., by comparing original and intervened reasoning traces)? How might future deployments ensure the transparency–security balance, especially in open-model ecosystems?
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/2za3iNkwXn.md b/human_reviews/2za3iNkwXn.md
new file mode 100644
index 0000000000000000000000000000000000000000..313228e0cd16081d6065f8664a5ccffa1bdaef85
--- /dev/null
+++ b/human_reviews/2za3iNkwXn.md
@@ -0,0 +1,231 @@
+## Human Reviewer 1
+
+### Summary
+This paper investigates how compression methods including quantization, distillation, and pruning, affect the reasoning abilities of large reasoning models (LRMs).
+
+### Strengths
+(1) The paper is clearly written, with a well-structured presentation that is easy to follow.
+
+(2) The motivation is articulated in a clear and convincing manner.
+
+(3) The study provides a comprehensive analysis and offers valuable new insights.
+
+### Weaknesses
+(1) The chosen reasoning models are all based on DeepSeek-R1 or its distilled variants, which may constrain the generality of the claims. It is unclear whether the findings would also hold for other reasoning models such as GPT-OSS-20B or GPT-OSS-120B.
+
+(2) The proposed layer-importance locating method is not entirely convincing. For example, Figure 2 suggests that the first-layer weights are relatively unimportant, yet Table 3 shows that quantizing the 1_up component causes the largest performance drop on AIME 2024. This apparent contradiction raises concerns about the reliability of the identified importance scores.
+
+(3) Minor concerns: the tick labels in Figure 2 are not clearly visible, and there is a typo in line 483 (“imrpving” → “improving”).
+
+### Questions
+(1) Can the findings in this paper also hold for other reasoning models such as GPT-OSS-20B/120B?
+
+(2) Why quantizing the 1_up component causes the largest performance drop on AIME 2024 but still keeps relatively good performence on other tasks.
+
+(3) Does the identified important component also depend on the task type/task difficulties?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper investigates how compression methods affect large reasoning models (LRMs), specifically focusing on DeepSeek-R1 and its variants. The authors benchmark compressed models on four reasoning datasets and employ mechanistic interpretability techniques (difference of means and attribution patching) to identify which weights are most important for reasoning capabilities. Key findings include: (1) weight count impacts knowledge memorization more than reasoning, (2) the MLP up-projection in the final layer is critically important for distilled LRMs, and (3) current quantization methods overly compress final-layer modules and MLP gate projections.
+
+### Strengths
+**Comprehensive scope.** The paper systematically evaluates three major compression paradigms (quantization, distillation, and pruning) on LRMs, addressing a timely and important research gap.
+
+**Easy to read and well-structured.** The paper maintains a clear narrative flow with consistent notation, provides context for key design choices, and connects results to takeaways, which significantly improves readability.
+
+### Weaknesses
+**Limited model coverage.**
+The analysis centers almost exclusively on DeepSeek-R1 and its distilled variants, which makes several findings read as DeepSeek-specific behaviors rather than properties of compression that generalize across LRMs. Validating the conclusions on additional open-sourced LRM families (e.g., QwQ variants) would strengthen the generalizability claims and help disentangle model-specific effects from compression-induced phenomena.
+
+**Imbalanced treatment across compression methods.**
+The paper allocates uneven coverage across the three compression families. Distillation is represented by off-the-shelf distilled checkpoints for black-box open-source models, quantization is explored with four distinct methods, while pruning is evaluated only with SparseGPT. This asymmetry makes the comparisons look method-specific rather than family-level and may hurt perceived fairness.
+
+**Coarse knowledge vs. reasoning disentanglement.**
+The paper infers that parameter count chiefly affects knowledge based largely on lower MuSiQue EM/F1 compared to other tasks. However, this single contrast is not sufficient to attribute effects to knowledge retention versus reasoning capability. MuSiQue itself blends multi-hop reasoning with retrieval-like knowledge and is sensitive to prompt/context choices. As a result, the “parameter count affects knowledge” conclusion feels somewhat overstated. More fine-grained experiments would strengthen the claim, e.g., RAG vs. closed-book ablations across model sizes or other synthetic tasks that decouple reasoning from memorized facts.
+
+**Minor presentation issues.** There’s a typo (“imrpving”) in Section 6.
+
+### Questions
+See weaknesses above.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper systematically studies the effective of different model compression strategies on the reasoning capability of LRM, by applying reasoning-diagnosis metrics such as the steering vectors. From extensive empirical studies the authors propose certain properties and locate certain modules in LRM that are most critical to reasoning, providing insights into future designs on compression methods.
+
+After reading the paper, I am under the impression that the paper has meaningful motivation, supported by well-designed empirical studies with strong results, and the claims are well-presented. However, the paper
+
+1. Lacks methodological novelty and diversity in the analytical framework, using only one previously-proposed metrics. Some of the main claims of the paper, such as the localization of critical modules.
+2. Could be further supported by more rigorous controlled study and evaluation metrics.
+
+Therefore I recommend weak reject, but with room for further improvement after obtaining more insights from the authors during discussions.
+
+### Strengths
+1. The motivation of the paper is meaningful, as the authors focus on the effect of compression methods to (hard) reasoning tasks, which is both critical and not well-studied.
+2. From comprehensive experiments the authors provides valuable insights on the design of compression methods on LRMs, that is to pay attention to certain modules important to reasoning.
+
+### Weaknesses
+1. The paper makes, in my opinion, a quite strong claim on localizing the reasoning ability to certain model layers. The claim that later layer is more critical to reasoning/performances is intuitive, as they have greater impact on the final output, and could be sensitive to perturbations/compressions. However the authors do not go deeper into why certain deep layers are important to reasoning.
+2. For a systematic study, the authors should consider using a more diverse set of diagnosing tools, rather than only using one framework, as it would put the general applicability of the main claim under question.
+3. In the paper, the locating of tokens related to certain reasoning behaviors seems not rigorous enough, as the authors only use GPT-4o to identify related tokens, which itself may have certain biases.
+4. Some missing discussions on the layer/module-wise compression methods [1, 2], and identifying weights important to reasoning [3]
+
+[1] Using Heavy-Tailed Self Regularization Theory for Improved Layer-wise Pruning of Large Language Models, https://arxiv.org/abs/2410.10912
+
+[2] Outlier Weighed Layerwise Sparsity (OWL): A Missing Secret Sauce for Pruning LLMs to High Sparsity, https://arxiv.org/abs/2310.05175
+
+[3] Principal Weights Emerge after Rank Reduction for Reasoning-Focused Supervised Fine-Tuning, https://arxiv.org/abs/2506.00772
+
+### Questions
+1. Could the authors add more discussions on recent works [1] on the principal weights of model weights that are related to reasoning performances.
+2. Since the choosing of tokens related to reasoning behaviors may be critical in the determination of reasoning-related modules, I wonder whether the authors have tried using other models (other than GPT-4o) to determine the tokens. In those cases, would the overall claims still hold? If so, it will strengthen the robustness of the findings.
+3. The authors proposes that certain layers/modules are more important in reasoning process, which relates to the discussion on the imbalanced quality among layers/modules. Do the authors believe that module-specific compression methods could potentially address the problem of over-compressing the important layers? There are recent works discussing module-wise compression [1, 2]
+4. For empirical evidence of layer importance (Takeaway 4.1 & 4.3, Fig. 2 & 3, etc.) it would be more intuitive if the authors could present the $I_{ml}^c$ metric for the base model (before distillation) to give the reader a better idea on how the importance of each module changes, rather than only presenting the $RI_{ml}^c$.
+
+[1] Using Heavy-Tailed Self Regularization Theory for Improved Layer-wise Pruning of Large Language Models, https://arxiv.org/abs/2410.10912
+
+[2] Outlier Weighed Layerwise Sparsity (OWL): A Missing Secret Sauce for Pruning LLMs to High Sparsity, https://arxiv.org/abs/2310.05175
+
+[3] Principal Weights Emerge after Rank Reduction for Reasoning-Focused Supervised Fine-Tuning, https://arxiv.org/abs/2506.00772
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper presents a two-fold analysis of the effects of compression on Large Reasoning Models (LRMs), using DeepSeek-R1 as its primary case study. First, it provides a comprehensive benchmark of three major compression families—quantization, distillation, and pruning—evaluating their impact on performance across a diverse set of reasoning datasets (AIME 2024, FOLIO, Temporal Sequences, and MuSiQue). Second, and more notably, the paper employs mechanistic interpretability techniques (adapting difference of means and attribution patching) to identify which specific model components are causally important for reasoning. The authors find that current compression methods, particularly quantization, disproportionately harm these critical components. They validate this finding by showing that selectively protecting these components (e.g., the final-layer MLP) during quantization significantly recovers lost performance.
+
+### Strengths
+Novelty of Interpretation: The paper's primary strength is its application of mechanistic interpretability to the problem of model compression. It moves beyond standard "accuracy vs. bits/size" tables to provide a causal analysis of why and where performance degrades, which is a valuable contribution.
+
+Actionable Findings: The analysis yields clear, actionable insights. The identification of the final-layer mlp.up_proj as a critical component for reasoning (in R1-distilled models) and the finding that popular quantization methods (AWQ, GPTQ) overly compress these final layers are important discoveries.
+
+Strong Validation: The experiment in Section 5.2 is compelling. Demonstrating that protecting just 2% of weights (the final-layer MLPs) from quantization can recover 6.57% in average accuracy on a 3-bit model provides strong validation for the paper's entire interpretability pipeline.
+
+### Weaknesses
+Generalizability: The analysis is heavily centered on DeepSeek-R1 and its specific distilled variants (R1-Distill-Llama, R1-Distill-Qwen). It is unclear if the central findings (e.g., the high importance of the final-layer mlp.up_proj) are a general feature of all LRMs or an artifact of the specific distillation-with-SFT process used to create the R1 models.
+
+Subjectivity in Methodology: The interpretability analysis (Section 2.2) relies on prompting GPT-4o to locate token sequences corresponding to four specific reasoning behaviors. This labeling process seems subjective and could introduce noise or bias. The robustness of the resulting steering vectors is highly dependent on the quality of this heuristic.
+
+Underdeveloped Pruning Analysis: While pruning is introduced as one of the three main compression methods, it is quickly dismissed after benchmarking shows it performs poorly (e.t., at 50% sparsity). The subsequent mechanistic analysis focuses almost exclusively on distillation and quantization, making the pruning aspect of the paper feel incomplete.
+
+### Questions
+1. Can the authors comment on whether the "final-layer importance" finding is specific to the R1-distillation process? Have you tried applying your interpretability analysis to a standard, non-distilled model (e.g., base Llama 3) that has been fine-tuned for reasoning? Would you expect to see the same components identified as critical?
+
+2. Could you elaborate on the validation process for the GPT-4o labeling of reasoning behaviors? How sensitive are the final importance scores (and the resulting conclusions) to potential inaccuracies or inconsistencies in this automated labeling process?
+
+3. The paper notes (Takeaway 3.3) that pruning/distillation (reducing parameter count) hurts knowledge memorization (MuSiQue) more severely than reasoning (AIME, FOLIO). Quantization (reducing precision) seems to have a less detrimental effect on knowledge. Could you expand on this distinction? Why do you hypothesize that parametric knowledge is so much more sensitive to parameter count than to parameter precision?
+
+I would like to improve my scores if authors can solve my questions.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 5
+
+### Summary
+This paper studies how compression (quantization, distillation, pruning) impacts reasoning in LRMs (DeepSeek-R1 and distilled Llama/Qwen) via (i) a broad benchmark on AIME-2024, FOLIO, Temporal Sequences, and MuSiQue, and (ii) mechanistic analyses that compute behavior-specific importance for every linear module using difference-of-means and attribution-patching. Key claims include: 2.51-bit dynamic quantization of R1 attains near-R1 performance; the final-layer MLP up-projection is consistently most reasoning-critical; and protecting ~2% of weights (final-layer MLPs) recovers +6.57% average accuracy for 3-bit AWQ.
+
+### Strengths
+1、 Comprehensive scope across three compression families with clear head-to-head tables and multiple distilled sizes (70B/32B/8B/7B).
+
+2、Fine-grained mechanistic lens (module-level DoM + attribution-patching) tied to four reasoning behaviors (backtracking, uncertainty estimation, example testing, adding knowledge).
+
+3、 Actionable insight: the final-layer up-projection is most critical; selectively quantizing it alone (≈0.7% of weights) causes a large drop, while protecting final-layer MLPs at 16-bit raises a 3-bit model by +6.57% on average.
+
+4、 Useful observations on collapse points (e.g., pruning ≥50% collapses; 3-bit baselines stress on harder tasks) and knowledge vs. reasoning separation (MuSiQue).
+
+### Weaknesses
+1、Robustness & Statistics. Behavior labeling robustness is under-specified (prompt/threshold/seed); key results lack rank-stability and uncertainty (variance, 95% CIs, significance).
+
+2、Metric & Visualization Choice. RI plots zero out increases, risking masked compensations; provide justified alternatives (report both ↑/↓ and net change).
+
+3、Coverage & Generalization. Pruning analysis is shallow (no mechanistic view beyond collapse); external validity is limited (mainly R1-distilled 8B/7B, few non-R1 families).
+
+### Questions
+1) Behavior-label robustness.
+Vary the behavior taxonomy/prompt/thresholds and report rank stability (Kendall’s τ / Spearman ρ) with 95% CIs; include a leave-one-behavior-out analysis.
+2) RI visualization choice.
+Justify zeroing positive RI deltas and provide an alternative view that reports both increases and decreases, plus a net-change summary.
+3) Selective protection trade-offs. Provide an accuracy vs. protected-ratio (0.5–5%) curve and the latency/memory overhead; compare protecting final-layer gate vs. up vs. both.
+4) 2.51-bit dynamic quantization details.
+Specify the skip policy (which layers stay high-precision), calibration set, and per-module bit-allocation histograms; compare to AWQ/GPTQ under identical calibration on quantization error, attribution-preservation, and end-task metrics.
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/36CzrZYEch.md b/human_reviews/36CzrZYEch.md
new file mode 100644
index 0000000000000000000000000000000000000000..ae4651ee58a1ded7886be2d37a609b65893711c6
--- /dev/null
+++ b/human_reviews/36CzrZYEch.md
@@ -0,0 +1,162 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces IRIS, which is a RL reward based on minimizing self-confidence / maximizing self uncertainty. The authors propose this objective and use GRPO to train an autoregressive text to image model. The performance of the IRIS model is on par with other methods which use a reward signal for training.
+
+### Strengths
+- This paper is well written and does a good job of communicating the idea
+- The ablations are good.
+- I appreciate the novelty, and I appreciate the insight that encouraging mode covering behavior in autogregressive image generators trends towards human preferences.
+
+### Weaknesses
+- This approach seems limited to optimizing for human preferences as measured by these specific benchmarks. If for example, I wanted to fit to the preference of some specific group, then this method would not work.
+- The motivation for choosing this method over alternatives isn't entirely clear to me. For instance, would the approach remain effective with a different base model than Janus Pro? Would this generalize better to other human preference benchmarks?
+- I'd appreciate more understanding into the underlying mechanisms of this behavior. Is this an emergent property of the pretraining phase, or something else?
+- I am surprised that figure 2 allows one to draw this conclusion. For example, [0] and other papers indeed observe an increase in entropy in addition to an increase in reward. I notice that the GRPO for the LLM is on a MATH task, which entropy does usually decrease.
+
+- Unimportant but appendix b.1 refers to GRPO as Generative Reward Process Optimization, instead of Group Relative Policy Optimization.
+
+[0] Tonyi Deep Research, https://arxiv.org/pdf/2510.24701
+
+### Questions
+- is IRIS more robust to multiple benchmarks? why would i prefer iris over other methods?
+- what is the hypothesis for this working?
+- does this method work for other families of models?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes IRIS, a label-free RL fine-tuning scheme for text-to-image models (Janus-Pro) that replaces external reward models with an intrinsic token-level signal called Negative Self-Certainty (NSC), defined as the forward KL from a uniform distribution to the model’s next-token distribution; the authors consider both text and image tokens and ultimately use NSC for both. The reward is optimized with a GRPO objective. Experiments compare three reward schemes—external, SC, and NSC—on Janus-Pro and evaluate early training (first ~800 steps) on GenEval, T2I-CompBench, and WISE, where IRIS reports gains over the base models and competitive performance with the external-reward baseline.
+
+### Strengths
+- IRIS uses an intrinsic reward (their NSC) instead of any human labels or domain-specific verifiers, which makes the setup lightweight and potentially scalable to new domains.
+- The GRPO objective and token-level advantage computation are written explicitly, which lowers the barrier for reproduction or adaptation.
+- The plots in the experimental results consistently report improvements early in training.
+
+### Weaknesses
+- This paper’s statements about self-confidence are mistaken. As written, IRIS is actually maximizing self-confidence, not minimizing it. The paper’s prose repeatedly says the opposite, but the mathematics and the reward used in training point the other way. Eq. (2) defines Self-Certainty (SC) at a token as $SC = -{KL}(U\ \Vert\ \pi_\theta)$, contradicting the typical definition [r1].
+- There is a severe mischaracterization of the proposed method IRIS. The papers asserts that forward KL to uniform is “mode-covering,” contrasting it with entropy; but with the paper’s own definition (forward KL: ${KL}(U\Vert \pi)$), increasing NSC pushes peaky (confidence-seeking) distributions, not mode-covering.
+- Metric terminology drifts mid-paper. Fig. 2’s paragraph says they “compute the self-confidence measured by ${KL}(U\Vert \pi)$,” which is NSC by their Eq. (2), while elsewhere “self-certainty” is plotted and discussed, resulting in inconsistent naming (SC vs. NSC vs. “confidence”).
+- Novelty relative to prior work (INTUITOR [r1]) is thin at the algorithmic core. IRIS’s intrinsic reward is exactly the token-level forward KL to uniform, used inside GRPO—the same scalar that INTUITOR optimizes (called “self-certainty” there) using the same GRPO algorithm. The contribution is primarily domain/application (T2I) and pipeline choices (semantic CoT), not a novel objective. This should be explicitly acknowledged and compared.
+- Gains in the experimental results may stem from the semantic CoT stage rather than the intrinsic reward per se. While the appendix shows with/without CoT comparisons, the main results and claims still bundle CoT with IRIS; stronger controls are needed (e.g., CoT-matched baselines and cross-combinations with external-reward pipelines).
+- Although IRIS trains without external verifiers, most metrics are pretrained reward/evaluator models (HPSv2, etc). Improvements against these may reflect alignment with those evaluators rather than human preference; explicit human-preference studies can only be implied with blinded A/B tests.
+
+[r1] Zhao, X., Kang, Z., Feng, A., Levine, S. and Song, D., 2025. Learning to reason without external rewards. arXiv preprint arXiv:2505.19590.
+
+### Questions
+- What exactly is “self-confidence” in Fig. 2? The text says you “compute the self-confidence measured by KL between uniform and the model’s distribution.” Is this NSC (i.e., ${KL}(U\|\pi)$)? If so, please clarify terminology and axes so readers don’t confuse SC with NSC.
+- Why NSC on both text and image tokens? You conclude “using NSC as the intrinsic reward in both text and image tokens can achieve the best results.” Could you share ablations with mixed choices (e.g., NSC on image, SC on text), modality-specific weights, or temperature controls to support this decision?
+- Many plots focus on the first ~800 steps. Do your gains persist or change at longer horizons, and how does variance across random seeds look over full training? Please include long-run curves and seed-wise spreads.
+- The reward NSC is differentiable against the model parameters as it’s an analytic function of the model’s softmax probabilities, hence smoothly differentiable w.r.t. the logits/parameters. It means that it can be direclty optimized using gradient-based algorithm like SGD. What is the meaning of using RL to optimize it?
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper introduces IRIS (Intrinsic Reward Image Synthesis), a reinforcement learning framework designed to improve text-to-image generation without relying on external human feedback or labeled data. The key idea is to use intrinsic rewards derived from the model’s own self-uncertainty, showing that maximizing uncertainty—rather than minimizing it—leads to more diverse, detailed, and human-preferred images. The authors demonstrate that autoregressive T2I models with low uncertainty tend to produce oversimplified and uniform results, while optimizing intrinsic uncertainty enhances visual richness and alignment with user intent. Empirical experiments confirm that IRIS effectively improves generation quality.
+
+### Strengths
+1. This paper provides a interesting observation of the relationship between model confidence and reward in the training process, and the different patterns between text generation and image generation.
+
+2. This paper proposes a reinforcement learning method that improves text-to-image generation without external reward or human annotation. After training with intrinsic reward, the model outperforms the baseline model by a large margin, and achieves comparable performance with external reward-guided training.
+
+3. This paper is motivated by a observation presented in Figure2, and fluently leads to the method design.
+
+### Weaknesses
+1. The performance using intrinsic reward is slightly lower than using external reward. It is sometimes acceptable to achieve slightly lower performance without the need of external reward, but in some cases people may prefer a higher overall performance.
+
+2. Captions of figure 5 and 6 need to switch. The captions of some other figures also seem unclear. It would be better to summarize the key observations of each figure in the caption.
+
+3. In the experiment, the authors compare the best checkpoints of T2I-R1 and IRIS, which may lead to unfair comparison. It would be better to compare them at the same training steps. Since RL training are often unstable and costly, sometimes the training step is also an important factor that we want to compare. Besides, in figure 3, it seems T2I-R1 consistently outperform IRIS by a large margin. This does not well align with the claimed results in Table1.
+
+### Questions
+NA
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces IRIS (Intrinsic Reward Image Synthesis), a reinforcement learning framework for text-to-image (T2I) generation that uses negative self-certainty (NSC) as an intrinsic reward. Unlike RLHF or external reward-based approaches, IRIS optimizes autoregressive T2I models without human labels or domain-specific verifiers. The key insight is that reducing self-confidence in image token predictions enhances visual richness and diversity. Experiments on Janus-Pro across GenEval, T2I-CompBench, and WISE benchmarks show IRIS performs competitively or better than models trained with external rewards.
+
+### Strengths
+[+] Challenges standard RL intuition demonstrates that minimizing self-confidence improves image diversity.
+
+[+] Defines intrinsic rewards via forward KL divergence; mathematically grounded and well-motivated.
+
+[+] Broad evaluation across multiple benchmarks and ablations (text vs. image tokens, KL direction, semantic CoT).
+
+### Weaknesses
+[-] Reward aggregation details (text/image scaling, normalization) are unclear.
+
+[-] Not includes the comparison with preference- or diffusion-based RL.
+
+[-] There are no human studies to demonstrate that visual preference.
+
+### Questions
+1. How are text and image token rewards normalized or weighted—are they on comparable scales?
+1. Has IRIS been tested on diffusion or masked models beyond autoregressive Janus-Pro?
+1. Any user preference studies confirming that lower self-confidence yields subjectively better images?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/4fm4Rc5fUK.md b/human_reviews/4fm4Rc5fUK.md
new file mode 100644
index 0000000000000000000000000000000000000000..100427bca563d6c5d091dd678f7adc972d0ad066
--- /dev/null
+++ b/human_reviews/4fm4Rc5fUK.md
@@ -0,0 +1,112 @@
+## Human Reviewer 1
+
+### Summary
+ATF is a system that turns natural-language math problems into formal Lean 4 statements using feedback tools. It combines **syntax checks** from the Lean compiler and **semantic checks** from multiple LLM judges to iteratively refine results. Trained in three stages, ATF greatly improves both accuracy and consistency over previous models and releases a 750K-sample dataset (**Numina-ATF**) to support further research.
+
+### Strengths
+- The proposed framework, ATF, is clearly structured and the experimental results are reported in a generally comprehensible way.
+- The topic itself is timely, and the authors make an effort to connect their work to recent trends in LLM-based reasoning and formal verification.
+
+### Weaknesses
+- I want to know what other tool calls, besides the **Syntax Check Tool**, can enhance autoformalization.
+I doubt that there are many tools capable of surpassing **Lean** in terms of checking ability, so the paper should explore **Lean’s potential as a tool** more deeply.
+
+- Lean is not good at performing numerical calculations, but I didn’t see you invoke any **calculator-related tools** in your framework.
+
+- Please provide experiments on **benchmarks that require extensive numerical computation**.
+
+### Questions
+Please refer to Weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes a model called ATF (Autoformalizer with Tool Feedback), which is designed to translate mathematical problems from natural language into formal statements. To this end, the authors design two types of tool feedback mechanisms: the first uses the Lean 4 compiler to check and correct the syntax of the generated formal statements, ensuring syntactic validity; the second adopts a multi-model voting approach to evaluate the semantic consistency of the generated results. When errors occur in the formalization results, the model can iteratively revise its outputs based on the tool feedback. To train ATF, the authors propose a three-stage training process: first, a “cold start” phase on synthetic data to teach the model how to use tools for correction; then an “expert iteration” phase to further improve the model’s capability through simulated expert feedback; and finally, a Direct Preference Optimization (DPO) phase to reduce ineffective modifications. In the experiments, ATF is evaluated on three mainstream benchmark datasets (FormalMath-Lite, ProverBench, and CombiBench), and the results show that ATF significantly outperforms the current best baseline, Goedel-V2-Formalizer-32B, in both syntactic validity and semantic consistency. The authors also release a synthetic dataset containing 750,000 formal statements (Numina-ATF) and conduct detailed human evaluations and ablation studies to verify the effectiveness of each component. Overall, this work demonstrates a new approach to significantly improve automatic mathematical formalization through tool feedback and provides new data resources.
+
+### Strengths
+- High innovation: For the first time, the paper introduces the use of Lean compiler outputs as a syntax verification tool and multi-model collective judgment as a semantic verification tool in the automatic formalization task, effectively combining the strengths of formal systems and large model reasoning.
+- Significant experimental results: The proposed method substantially surpasses the current best approach (Goedel-V2-Formalizer-32B) on multiple popular benchmarks, including FormalMath-Lite, ProverBench, and CombiBench, with particularly notable improvements in semantic consistency metrics, demonstrating the effectiveness of the approach.
+- Well-designed training process: The proposed three-stage training strategy—cold start, expert iteration, and DPO—progressively optimizes the model for different needs, enabling it to learn how to invoke tools and make reasonable corrections based on feedback, showing a thoughtful and well-structured design.
+- Resource contribution: The authors release the Numina-ATF synthetic formalization dataset with 750,000 samples, providing the community with valuable resources for training and evaluation, which holds high practical value.
+- Detailed analysis: The paper includes human evaluations and ablation studies, offering in-depth analysis of the roles of each component and the model’s scalability (such as extension effects in the inference stage), enhancing the credibility of the work. The writing is clear, and the figures are easy to read, making the contributions easy to grasp.
+
+### Weaknesses
+- Concerns about the reliability of the multi-model consistency tool: The paper relies on multiple large language models as “judges” to determine whether the generated statements are semantically consistent with the problems. However, the judgments made by LLMs may be unstable or biased, especially when it comes to subtle logical errors. Although the authors conducted human evaluations, the error rate and potential blind spots of the consistency checking tool remain unclear. It is recommended to further quantify or add verification mechanisms to ensure the accuracy of consistency feedback.
+- Limited generalization ability and scope: The current tool feedback is based on the Lean 4 compiler. If mathematical problems need to be formalized in other languages (such as Isabelle or Coq) or in different versions of Lean, the current approach may not be directly applicable. The authors mention the differences between Lean versions, but there is insufficient study on the adaptability of the method. Future work could explore the method’s transferability across different formal systems or introduce language-agnostic tool interfaces.
+- Training and inference overhead: The three-stage training and multi-round feedback mechanisms of ATF increase computational complexity. In particular, during inference, the repeated invocation of the compiler and multi-model judgments may lead to slower inference speed and higher resource consumption. The paper does not discuss efficiency in detail. In practical applications, fast response is also important, and it would be helpful for the authors to specify the model’s inference cost and latency, as well as its performance under limited computational resources.
+- Interpretability and failure analysis: Although the paper provides overall performance improvement data, it lacks an in-depth analysis of failure cases. For example, it remains unclear what types of problems ATF still struggles to formalize, or when tool feedback fails to correct the output. A detailed analysis of failure cases would help reveal the limitations of the approach and potential directions for improvement.
+
+### Questions
+- The paper mentions using multiple large language models (LLMs) as “judges” for semantic consistency verification. However, I only observed the use of **QWQ-32B** and **Qwen3-32B** in the main text. Could the authors clarify whether these are the only LLMs employed in the consistency check, or if other models were also used but not explicitly mentioned in the paper?
+- In Table 1, the results do not appear to show a clear advantage of the *Ensemble Vote* method compared to using a single LLM as the judge. I would recommend adding a new evaluation metric — **Accuracy** — to the table, which would provide a more intuitive comparison and make it easier to quantify the improvement brought by the ensemble voting method.
+- Since ATF requires multiple rounds of tool calls for iterative correction during inference, does this lead to a significant computational overhead? How does the actual inference speed compare to conventional one-shot formalization models? Moreover, have the authors considered strategies such as reducing the number of iterations or parallelizing the process to enhance scalability for large-scale mathematical libraries?
+- In Section 5.2 (“Tool Analysis”), the paper states: “As shown in Figure 5, the number of tool calls varies by dataset; CombiBench requires the highest average number of tool invocations (8.35) due to its combinatorial complexity, while FormalMath-Lite requires fewer attempts (3.19).”However, I was unable to locate the corresponding values (8.35 and 3.19) in Figure 5. Similarly, the sentence *“ProverBench is an exception where consistency checking (66.34%) outperforms syntax checking (61.65%)”* cites values that also do not appear in the figure. Could the authors verify whether these numbers are accurate or possibly correspond to an earlier version of the figure?
+- In Table 4 (ablation study), the improvement brought by adding the DPO training stage over the *Expert Iteration* stage alone appears rather marginal (around 1% increase). Could the authors elaborate on whether the DPO stage provides additional benefits beyond accuracy improvement, such as better stability, generalization, or robustness in handling ambiguous formalization cases?
+- The experiments report strong results on **FormalMath-Lite**, **ProverBench**, and **CombiBench**. However, other widely used benchmarks for formalization tasks include **MiniF2F** and **ProofNet**. Could the authors share any results or observations on these datasets, or discuss potential challenges in applying ATF to them?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper presents Autoformalizer with Tool Feedback (ATF), a framework that integrates Lean 4 compiler feedback and multi-LLM semantic evaluation to improve mathematical autoformalization. Through three-stage training—cold start, expert iteration, and DPO—ATF learns effective tool usage and revision strategies. Experiments on FormalMath-Lite, ProverBench, and CombiBench show significant gains over prior systems like Goedel-V2 and StepFun-Formalizer, particularly in semantic consistency.
+
+### Strengths
+1. The paper clearly identifies two key bottlenecks in current autoformalization models—syntactic errors and semantic drift—and systematically addresses both through tool feedback.
+2. The experiments show substantial improvements in syntactic validity and semantic consistency, further validated by human evaluation, demonstrating a strong correlation with human judgment.
+3. The system is thoughtfully designed, featuring grouped execution and expert iteration mechanisms that enable efficient syntax checking and progressive tool learning.
+4. The paper is well-written and comprehensive, with detailed appendices and clear figures that effectively illustrate the model’s iterative reasoning and tool interaction process.
+
+### Weaknesses
+1. The paper introduces a meaningful but moderately novel approach by systematizing tool feedback specifically for autoformalization
+2. Training and evaluation datasets are all derived from the Numina ecosystem; although similarity-based decontamination (cosine < 0.8) is performed, stronger guarantees against overlap would make the results more convincing. Include one external dataset (e.g., MiniF2F or PutnamBench) or a stricter decontamination threshold.
+
+### Questions
+Please refer to the Weakness section.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+2
\ No newline at end of file
diff --git a/human_reviews/4hkMvkzai5.md b/human_reviews/4hkMvkzai5.md
new file mode 100644
index 0000000000000000000000000000000000000000..4c300f756ef0a2f789c5c681907a1161b86986df
--- /dev/null
+++ b/human_reviews/4hkMvkzai5.md
@@ -0,0 +1,252 @@
+## Human Reviewer 1
+
+### Summary
+The paper introduces DeCodec, a method to decouple audio representations into orthogonal subspaces for speech and background sound. It further decomposes speech representations into semantic and paralinguistic components, similar to SpeechTokenizer. To achieve this, the authors propose a subspace orthogonal projection module and a representation swap training strategy. The model is trained on 700 hours of speech data mixed with background sounds selected from ESC-50 and DNS-Noise datasets. Experiments demonstrate competitive performance on tasks including speech reconstruction, speech enhancement, and one-shot voice conversion of noisy speech compared to baselines such as EnCodec, HiFi-Codec, DAC, and SpeechTokenizer.
+
+### Strengths
+1. Decoupling noisy speech into speech and background sound is an interesting and novel idea.
+2. The writing is clear and easy to follow.
+3. DeCodec inherently enables speech enhancement with performance comparable to specialized models.
+
+### Weaknesses
+1. The claim of being an "audio codec" is overstated as the experiments only focus on noisy speech data. Typical audio codecs should cover broader audio content, such as pure sounds or music.
+2. The study lacks experimental comparisons with relevant works, such as UniCodec and FACodec, which share similar decoupling-based approaches mentioned in the introduction and related work.
+3. The experiments are limited to 700 hours of speech data. It is unclear if the method can scale effectively to larger datasets.
+4. One-shot voice conversion results are poor (e.g., WER exceeding 50). The qualitative audio demos also exhibit low sound quality. The paper should include comparisons with stronger voice conversion models like CosyVoice2 (e.g., its S3+flow matching method).
+
+Minor Comments:
+1. Line 266: Correct "S andnN" to "S and N."
+2. Define terms like SRVQ and NRVQ upon first mention.
+
+### Questions
+Please address the issues mentioned in the Weaknesses section. Resolving these concerns may lead to a higher evaluation.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The authors propose, in this paper, the model DeCodec, a disentangled audio codec that separates audio representations into orthogonal subspaces for speech and background sound. Built on a neural codec framework (DAC model), DeCodec introduces: a subspace orthogonal projection module that factorizes input into decoupled subspaces, and a representation-swap training strategy aligning them with speech and background features. Parallel RVQs independently quantize each subspace, while semantic guidance refines speech disentanglement. Experiments illustrate the performances of DeCodec in terms of reconstruction quality and speech enhancement.
+
+### Strengths
+The main strengths of the paper are:
+
+- The concept of using audio codecs to build disentangled representations is very interesting (although not novel)
+
+- The use of a subspace orthogonal decomposition module to project the primary audio embeddings in two orthogonal subspaces is interesting.
+
+- The authors provide a comprehensible online demo, illustrating the performance of the proposed model.
+
+### Weaknesses
+The main weaknesses of the paper are:
+
+- The authors are largely overstating the results, and in particular regarding the universality of the disentangled representation obtained or in the semantic representation control.
+
+- The paper is not well positioned with regards to the appropriate State of the art. Some very related works in building disentangled representations using neural audio codecs are not mentioned nor discussed (for example [1] and [2] below). Similarly, the current work is weakly positioned with the SoA in Speech enhancement.
+
+[1] Omran, N. Zeghidour, Z. Borsos, F. de Chaumont Quitry, M. Slaney, and M. Tagliasacchi, “Disentangling speech from surroundings with neural embeddings,” in Proc. IEEE Int. Conf. Acoust., Speech, Signal Process. (ICASSP), 2023.
+[2] X. Bie, X. Liu and G. Richard, "Learning Source Disentanglement in Neural Audio Codec," 2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Hyderabad, India, 2025,
+
+- No indication is given to assess if the differences between approaches are statistically relevant.
+
+- The justification of the interest of “speech / background sound separation” from the neuroscience results (audio perception exploiting two different auditory cortex regions) is not convincing and appears to be quite disconnected.
+
+- The clarity and writing of the paper could be largely improved (e.g. figure 1 with almost unreadable texts, many typos or inconsistencies)
+
+### Questions
+Questions:
+- What are the references of the different speech enhancement models used and compared to (Table 2) ?. Are these models strong baselines ?
+- Typos, some examples: separated, andnN, BRVQ (in figure 2) and NRVQ (in text), Aound, representaions, …
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes DeCodec, a neural audio codec designed as a universal disentangled representation learner. It introduces three key modules — Subspace Orthogonal Projection (SOP) for separating speech and background sound, Representation Swap Training (RST) for enforcing disentanglement, and Semantic Guidance (SG) using HuBERT features to structure speech representations. The model aims to unify multiple audio tasks (speech enhancement, voice conversion, ASR, TTS) within a single controllable representation space. Experiments on synthetic noisy datasets show strong reconstruction and robustness performance, though evidence for true semantic disentanglement remains mostly empirical rather than theoretical. Overall, DeCodec offers an interesting conceptual reframing and practical architecture, but its theoretical grounding and evaluation depth are limited.
+
+### Strengths
+* Reinterprets neural audio codecs as universal disentangled representation learners, bridging low-level compression with high-level semantic audio modeling. The bio-inspired analogy to auditory cortex processing is intellectually engaging.
+
+* Simple design: The combination of Subspace Orthogonal Projection (SOP), Representation Swap Training (RST), and Semantic Guidance (SG) forms an elegant, modular framework for factorized representation learning. The approach is lightweight, differentiable, and compatible with existing codecs.
+
+* Unified controllable representations: Demonstrates a single codec that can handle diverse tasks (reconstruction, enhancement, voice conversion, ASR, TTS) through selective subspace manipulation, showing strong versatility and practical controllability.
+
+* Achieves competitive or superior SDR, WER, and DNSMOS scores compared to baselines, particularly in noisy and low-resource conditions, indicating improved robustness and general usability.
+
+* Clear structure: The paper is well-organized, easy to reproduce, and provides intuitive visualizations linking architectural components to perceptual interpretations.
+
+### Weaknesses
+* Conceptual Validity
+
+The assumption that orthogonality between subspaces guarantees semantic disentanglement is not theoretically grounded.
+Orthogonality only enforces statistical decorrelation, not physical or perceptual independence. The learned projections may encode arbitrary frequency or energy partitions rather than truly separating speech and background sound. The analogy with the auditory cortex (A2) is purely metaphorical. Biological “orthogonality” arises from nonlinear, attention-driven and feedback-modulated mechanisms, whereas the proposed SOP relies solely on linear projections and an L2 orthogonality loss.
+
+* Methodological Concerns
+
+Representation Swap Training (RST) lacks theoretical justification. The swap reconstruction objective can be satisfied without genuine factor separation, as the decoder may simply compensate through overparameterization. The observed “disentanglement” might thus emerge from data correlation or reconstruction bias rather than causal structure. The Semantic Guidance (SG) module only supervises the speech branch using HuBERT features but is not jointly optimized with the SOP/RST mechanisms. Therefore, the claimed “hierarchical disentanglement” (semantic vs. paralinguistic) is loosely coupled and not formally guaranteed.
+
+* Evaluation and Empirical Limitations
+
+Experiments are largely performed on synthetic mixtures (LibriTTS + DNS-Noise), without tests on real-world recordings, unseen noise conditions, or cross-domain generalization. Baseline selection is incomplete — comparisons omit recent disentangling codecs such as RepCodec, FunCodec, or SemanticCodec, which pursue similar objectives. The ablation analysis only reports SDR and WER metrics; no interpretability or information-theoretic metrics (e.g., mutual information, alignment scores) are provided to confirm actual semantic separation. Several claims (e.g., controllable feature recombination, semantic robustness) are demonstrated qualitatively through spectrograms, without perceptual or statistical validation. Subjective listening tests (MOS/CMOS/SMOS) are missing; evaluation relies solely on objective or proxy metrics such as DNSMOS and WER, which may not reflect perceptual quality.
+
+* Conceptual Scope and Framing
+
+The “universal front-end” claim is overstated. The multi-task functionality is achieved through post-hoc recombination of representations rather than a truly unified optimization framework. The connection between DeCodec’s representation learning and human auditory cognition is speculative, offering conceptual inspiration but lacking neuroscientific rigor or measurable alignment.
+
+### Questions
+1. The paper draws inspiration from the auditory cortex (A2) but provides little biological or neuroscientific evidence. Could you clarify whether this analogy is purely conceptual, or if there are empirical findings (e.g., cortical response studies, neural decoding evidence) supporting the proposed “orthogonal subspace” interpretation?
+
+2. Is there any neurophysiological or psychophysical experiment planned (or referenced) to validate the hypothesis that speech and background sound representations in DeCodec correspond to separable cortical processing pathways?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper introduces DeCodec, which frames the audio codec as a disentangled representation learner. It introduces two mechanisms: Subspace Orthogonal Projection and Representation Swap procedure, to ensure that codecs subspaces correlate to speech and background sound. Experiments show that the codec achieves promising results on downstream tasks such as audio reconstruction, speech enhancement and one-shot voice conversion.
+
+### Strengths
+Originality: The paper proposed a codec representation via disentanglement to speech and background noise. This disentanglement is achieved via two novel mechanisms: one is enforcing the speech subspace and background subspace as orthogonal, and second via representation swapping which enforces:
+(a) Speech Invariance to Background: Speech latent $Zs$ must reconstruct correctly regardless of the noise it is paired with. Hence $Zs$ should only encode speech.
+(b) Background invariance to speech: $Zn$ must reconstruct correctly regardless of speech it is paired with. Hence $Zn$ should only encode noise.
+
+Quality: The authors conduct thorough experiments for comparing DeCodec against multiple state of the art codec models, such as DAC, SpeechTokenizer for audio reconstruction, and StoRM, SELM for speech enhancement. The authors provide ablations for orthogonal subspace constraint (SOP), representation swapping and semantic guidance. The supplemental material includes visual analysis (cosine similar and singular value comparison), and performance of codec on downstream ASR and TTS tasks to further support the codec's results.
+
+Clarity: The paper is structured well, providing theoretical analysis for factorized audio coding in Section 3, and then providing thorough experimental studies via objective results and visualizations.
+
+Significance: The paper makes a good attempt towards a universal disentangled codec separating the semantic, acoustic and background sounds. It is very relevant to the community working for neural codecs for audio tasks.
+
+### Weaknesses
+The paper aims towards having audio codec as "universal dis-entagled representation learner", though both the theoretical discussion and experimental results point towards the case in which background noise is added to speech. The results on other audio types like singing/music/sound with more language coverage on evaluation other than English speech should be included to call it universal. Singing and background instruments are co-related and this can break the assumption of orthogonal spaces and representation swapping.
+
+The authors used a well-established way of semantic vs acoustic information separation in neural codecs, which is having Hubert loss on semantic tokens, which limits the novelty to only speech vs background sound separation.
+
+For Table 1, DeCodec bitrate is 8kbps, which is higher than all the baselines. For the experimental results, Table 1 and Table 2, the baseline checkpoints are not re-trained with the new training dataset, which makes a comparison a little unfair.
+
+WER is quite high for Table 3 for Voice Conversion at 50+%, for all baselines, the authors provide an explanation that it's due to different speech segment voicing times, which is not convincing.
+
+### Questions
+Writing and Notation:
+Please increase the font size for the text in the figures. Figure 1 text is really hard to read, especially the ones colored white.
+
+Please consider reducing the amount of new abbreviations like SOP, RST, SG, SRVQ, NRVQ, BRVQ, SDR-O, SDR-B, SDR-S. We could re-name them as Speech-RVQ, Noise-RVQ etc. Background sound vs noise are somewhat used interchangeably in the notation, please keep it consistent to one. The reader should understand tables and figures without referring to the text.
+
+Please have complete headings, instead of ones like "SE", "One-shot VC" in Section 4.
+
+Include the final training loss for the model at end of section 3.6.
+
+Please fix typos such as "representaions", "infered", "aound", "quantinized" etc.
+
+Please use subscript in notation for $Z_s$, $Z_n$, $Z_r$, $Z_c$.
+
+Method and Evaluation:
+Please Provide audio samples to convince readers of disentanglement and reconstruction quality. It will be interesting to see if real world noisy data, rather than synthetically created (speech + noise) can be separated well using DeCodec's approach.
+
+It will be interesting to compare the convolution + transformer based architecture choice as seen in Mimi (https://arxiv.org/pdf/2410.00037)t and TAAE (https://arxiv.org/pdf/2411.19842v1) vs a pure convolution architecture based on DAC.
+
+Please explain or include comparison with another common technique for disentanglement ( gradient reversal + supervision) as mentioned in FACodec (https://arxiv.org/pdf/2403.03100), and why SOP + RST is better. The authors claim there is significant information leakage in FACCodec. It would be good to empirically validate that vs DeCodec on real world data.
+
+Please clarify how the Huber semantic guidance is applied.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+This paper proposes a neural audio codec, DeCodec, designed to disentangle speech and background sounds into separate, orthogonal representations. To achieve this, the authors introduce a subspace orthogonal projection (SOP) module and a representation swap training (RST) strategy.
+
+### Strengths
+The goal of disentangling audio components within a codec is interesting and, if successful, could benefit downstream tasks like speech enhancement, noise-robust voice clone.
+
+### Weaknesses
+1. Fundamental flaw in premise: The core assumption that speech and background must be orthogonal is ill-posed for a reconstruction task. It does not convince me that there is no overlapping in the acoustic phonomenons of speech and background sound. Enforing the codec to encode them into orthogonoal representations could incur significant distortion in the decoupled outputs, as the decoder is deprived of shared acoustic information.
+2. Poor reconstruction quality on individual representation: The audio samples on the demo page substantiate the theoretical concern. Both the extracted speech and background sound in speech enhancemnet scenario are noticeably distorted, indicating that the decoder still relies on the combination of the separate representations to generate high-fidelity audio.
+3. Inefficient representation compression: The decouple of the audio signal in the proposed neural audio codec does not help the compression of encoded representation, but doubles the bitrate to 8kbps instead! Considering that the separate representation is not properly decoupled, the added overhead is not dispensible when applied to various downstream tasks, especially for generation.
+4. The semantic guidance mechanism for the speech encoder has been established in prior work and does not constitute a novel contribution.
+5. There major presentation issues in the paper:
+* In all figures and tables, the VQ module of DeCodec contains a SRVQ and a BRVQ. While in the main text, the BRVQ is never mentioned, but replaced with a NRVQ without any explanation.
+* The font size of Figure 1 is too tiny to read easily.
+* The Figure 2 is missing a lot of captions and legends to enable a basic understanding of the proposed workflow.
+
+### Questions
+1. It is claimed that the paper proposes a novel neural codec that learns to decouple audio representations into “orthogonal subspaces” dedicated to speech and background sound. Although the authors give some justifications about "orthogonal" on Section 3.4 when introducing SOP module, the experimental results can not give full support that the speech and background sound features are really "orthogonally" disentangled.
+2. What is the theoretical or empirical justification for the requirement of orthogonal representations? Given the shared acoustic properties of speech and noise, how can high-fidelity reconstruction be achieved from a single, artificially constrained representation?
+3. How does this method aid compression, given that it doubles the bitrate? What is the computational overhead (e.g., latency, memory) when integrating DeCodec with a downstream LLM for a task like TTS?
+4. In downstream TTS evalution results, why is the comparison with DAC missing (which is compared in ASR evalution) ? There is only the weak baseline SpeechTokenizer which shows inferior reconstruction fidelity to DAC.
+5. The main text refers to an "NRVQ," while the figures label a "BRVQ." Are these the same component? If not, please clarify the difference.
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/5DpzzTPnJZ.md b/human_reviews/5DpzzTPnJZ.md
new file mode 100644
index 0000000000000000000000000000000000000000..7c5e6819e629024ab6bd19cdffbcbf30f0af9896
--- /dev/null
+++ b/human_reviews/5DpzzTPnJZ.md
@@ -0,0 +1,170 @@
+## Human Reviewer 1
+
+### Summary
+Studies plasticity loss in deep RL under non-stationarity. The theory isolates two mechanisms: (i) NTK rank collapse across sequential warm-starts and (ii) a $\Theta (1/k)$ decay of the initial gradient each round. Motivated by (ii), the paper proposes Sample Weight Decay (SWD)—a lightweight recency-weighted replay scheme—to restore gradient magnitude. Experiments on TD3 (MuJoCo) and SAC with SimBa (DMC Humanoids/Dog) show consistent gains with reliable aggregate metrics (IQM/median/mean, bootstrap CIs) and a reverse ablation (SWA) that up-weights old samples and underperforms, alongside GraMa analyses.
+
+### Strengths
+- Identifies a crisp cause of plasticity loss and links it to a tractable remedy (recency weighting)
+- Very simple algorithm (SWD) with negligible overhead, orthogonal to architectural methods (ReDo, Plasticity injection, etc.)
+- Consistent empirical improvements across TD3 and SimBa-SAC; reverse ablation (SWA) plus GraMa trends support the mechanism.
+- Uses reliable RL reporting (IQM/median/mean + stratified bootstrap CIs).
+
+### Weaknesses
+- Theory scope. Main results are derived for FQI-style/population losses; transfer to fully practical bootstrapped targets with representation drift is not fully established.
+- Breadth. Evaluation is confined to continuous control; adding a pixel-based or sparse-reward task (e.g., DMControl pixels, AntMaze) would test generality.
+- Over-edited text (LLM side-effects). While LLM assistance can improve flow/grammar, several sentences become awkward or semantically off and harm readability—for example, the abstract’s “How plasticity loss arises, dissipates and can be dissolved.” A careful human pass is needed to fix misuses and improve readability.
+- Related work is too narrowly framed (over-emphasis on resets). The section concentrates on reset-style approaches while under-representing other relevant families—particularly **churn-reduction methods** and **auxiliary-loss–based representation stabilisation**. Please discuss these lines of work and clarify how SWD differs or complements them (see, e.g., churn-reduction: [https://arxiv.org/abs/2506.00592](https://arxiv.org/abs/2506.00592); auxiliary losses: [https://arxiv.org/abs/2405.00662](https://arxiv.org/abs/2405.00662)).
+
+### Questions
+- How sensitive are results to **linear vs. exponential** decay and to $((w_{\min}, T))$? Any failure modes with small buffers or rapid behaviour-policy shifts?
+- Do SWD’s benefits persist with **pixel observations** or **sparse rewards**? (A small add-on task would suffice.)
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper studies plasticity loss in deep RL through an optimization lens, identifying two mechanisms: (i) NTK rank degeneration and (ii) gradient attenuation that scales as Θ(1/k) under non-stationary data/targets with experience replay. Building on this analysis, the authors propose Sample Weight Decay (SWD)—a simple, plug-and-play, age-based sampling scheme for replay buffers that linearly down-weights older samples to counteract gradient decay and restore gradient magnitude. Experiments on MuJoCo (TD3) and DMC (SimBa-SAC) show consistent gains—including strong results on Humanoid—plus robustness across UTD ratios; ablations (including a reverse “SWA” variant) and GraMa measurements support the mechanism.
+
+### Strengths
+1. Clear theoretical framing with actionable takeaways. The paper formalizes how distribution/target non-stationarity yields NTK rank issues and a Θ(1/k) gradient-magnitude decay, then links performance to Bellman-residual control via a suboptimality bound—cleanly motivating data-weighting interventions.
+
+2. Simple, general, and orthogonal method. SWD is an easy drop-in change to replay sampling, compatible with TD3/SAC (and, in principle, other replay-based methods) and positioned as orthogonal to architectural “plasticity-injection” tricks. The paper claims minimal overhead and plug-and-play practicality.
+
+3. Compelling empirical evidence. Consistent improvements across MuJoCo and DMC (including Humanoid), robustness to varying UTD, and reverse validation via SWA plus GraMa analysis strengthen the causal story beyond raw scores.
+
+### Weaknesses
+1. Missing related work / plasticity literature coverage.
+
+The related work should more deeply connect to recent plasticity and replay-weighting literature. Please discuss and contrast with, e.g.:
+
+- Overestimation, Overfitting, and Plasticity in Actor-Critic: the Bitter Lesson of Reinforcement Learning (ICML’24).
+- Disentangling the causes of plasticity loss in neural networks (CoLLA’24).
+- Hyperspherical Normalization for Scalable Deep RL (ICML’25).
+- Mitigating Plasticity Loss in Continual RL by Reducing Churn (ICML’25).
+- A Forget-and-Grow Strategy for Deep RL Scaling in Continuous Control (ICML’25).
+
+2. Overlapping idea; contribution clarity vs ER-decay.
+
+Conceptually, SWD (linear, age-based down-weighting) looks very close to prior ER-decay heuristics, with differences seemingly in coefficients/schedules. The paper does offer more formalism, but the delta in contribution should be crystal clear: which parts are novel theory, which are new algorithmic prescriptions beyond a tuned decay, and what guarantees (if any) distinguish SWD from ER-decay? I’m open to a high score even if the mechanism is similar—provided the theoretical backup and empirical analysis are meticulous and make the case for why this instantiation is principled/non-equivalent.
+
+3. Implementation and efficiency details are thin.
+
+A per-sample weight update naively done every step can be costly. Please:
+- Describe the efficient implementation (lazy updates? piecewise-linear buckets? periodic renormalization?).
+- Report end-to-end wall-clock and GPU-hour costs on standard hardware for SimBa vs SimBa+SWD;
+
+### Questions
+1. Beyond sample-efficient regimes.
+
+Authors primarily test in sample-efficient settings. What happens with very long training (e.g., 10M env steps with a 1M buffer) where fresh samples repeatedly overwrite older ones? Do you observe more catastrophic forgetting under high churn, and does SWD still mitigate it or saturate? (This is important because small buffers + long horizons can exacerbate plasticity.)
+
+
+
+I’m open to increasing the score if the authors adequately address the weaknesses—particularly by deepening related work discussion, clarifying the novelty relative to ER-decay, and detailing the efficiency and long-horizon robustness experiments.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper investigates plasticity loss in deep reinforcement learning from a theoretical optimization perspective. The authors identify two mechanisms causing plasticity loss: (1) rank collapse of the Neural Tangent Kernel (NTK) Gram matrix, and (2) Θ(1/k) decay of gradient magnitude during training. Based on this analysis, they propose Sample Weight Decay (SWD), a lightweight sampling strategy that assigns higher probabilities to more recent samples in the replay buffer to counteract gradient attenuation. Experiments on MuJoCo and DeepMind Control Suite tasks with TD3 and SAC algorithms demonstrate consistent performance improvements.
+
+### Strengths
+- SWD is remarkably simple to implement with minimal computational overhead, making it easily applicable across different RL algorithms and architectures as a plug-and-play solution, which is practically valuable compared to more invasive methods.
+- The experimental validation is comprehensive, including evaluation on two benchmark suites, comparison with PER, reverse validation through SWA ablation, plasticity measurement using GraMa metrics, and robustness analysis across different UTD ratios, all showing consistent improvements.
+
+### Weaknesses
+1. The linear decay design of SWD (w_i = max(w_min, 1 - age_i/T)) appears somewhat arbitrary without clear theoretical justification for why this particular weighting scheme optimally compensates for the 1/k gradient attenuation. Sensitivity analysis on decay schedules and hyperparameters is insufficient.
+
+2. Recency-based sampling is not novel conceptually, and the paper lacks direct comparisons with recent plasticity-preserving methods (ReDo, ReGraMa, Plasticity Injection). The claimed "SOTA performance" is primarily against uniform sampling and PER, making it difficult to assess the true contribution relative to the current state of the art.
+
+### Questions
+1. Can you provide rigorous analysis showing how the gradient dynamics derived for FQI extend to deep RL algorithms with experience replay and bootstrapping? How does the 1/k decay manifest in TD3/SAC specifically?
+2. How sensitive is SWD to hyperparameters T and w_min? Tables 5-6 show different T values—how were these chosen? Have you systematically compared different decay schedules (exponential, polynomial, etc.)?
+3. Since you claim SWD is orthogonal to existing methods, have you tested combinations with network reset or neuron recycling? Can you provide direct experimental comparisons with ReDo, ReGraMa, and Plasticity Injection to substantiate the SOTA claim?
+
+I will consider increasing the score if the author responds to these questions.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper studies plasticity loss in deep RL and attributes it to two mechanisms induced by non-stationarity: (i) NTK Gram rank collapse, and (ii) attenuation of gradient magnitudes that decays as $\Theta(1/k)$ over training iterations $k$. Motivated by the second mechanism, the authors propose Sample Weight Decay (SWD): linearly down-weight older transitions in the replay buffer so that recent data counteracts the $\Theta(1/k)$ decay and restores effective gradient scale. SWD is plug-and-play for replay-based algorithms.
+Empirically, SWD is added to TD3 and SimBa-SAC on MuJoCo and DMC tasks, with strong gains on DMC Humanoid. A “reverse” ablation (SWA, which up-weights old data) predictably reduces gradient norms and hurts returns, supporting the causal story.
+
+### Strengths
+1. Tight theory to method link: The $\Theta(1/k)$ gradient attenuation analysis (Theorem 3) cleanly motivates SWD’s linearly decaying replay weights; the SWA “reverse” ablation strengthens causal plausibility.
+2. Simple and orthogonal: SWD lives at the sampling layer, is easy to add to any replay-based RL algorithm, and should compose with model-level plasticity fixes.
+3. Compelling results on hard control: Consistent improvements, with standout gains on DMC Humanoid, suggest the effect is meaningful, not a small-n artifact.
+
+### Weaknesses
+1. Unprobed NTK mechanism: The paper posits NTK rank collapse but provides no spectrum or conditioning measurements; half of the causal story remains speculative.
+2. Missing SOTA positioning: No head-to-head (or composition) with recent plasticity remedies such as ReGraMa, Plasticity Injection, or ReDo, leaving SWD’s incremental or additive value unclear.
+3. Practical knobs under-explored: No sensitivity for $T$ (linear decay steps) and $w_{\min}$; interactions with PER are not clarified (do they stack or conflict?); runtime or throughput impact is unreported.
+
+### Questions
+1. NTK evidence: Can you track NTK Gram eigenvalues (or condition number) on fixed probe batches across training, ideally under “sequential initialization,” to confirm or quantify rank collapse?
+2. Comparisons or compositions: How does SWD compare to and combine with ReGraMa or Plasticity Injection on a small DMC subset (including an SWD+X variant) to establish additivity?
+3. Sensitivity and heuristics: Please add curves for $T$ and $w_{\min}$. Is a simple heuristic (for example, $T$ as a fraction of buffer capacity or tied to a gradient-norm half-life) a reasonable default for new domains?
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/65Ai8mLfjI.md b/human_reviews/65Ai8mLfjI.md
new file mode 100644
index 0000000000000000000000000000000000000000..422a4e16dc0c10296a78b1844671069e912dd85a
--- /dev/null
+++ b/human_reviews/65Ai8mLfjI.md
@@ -0,0 +1,145 @@
+## Human Reviewer 1
+
+### Summary
+This paper explores the impact of modulation-based text conditioning on text-to-image diffusion models. The authors demonstrate that this technique is an important factor in increasing the quality of generated images. They introduce a simple, training-free method that improves performance across various diffusion models without imposing any additional computational burden at inference time.
+
+### Strengths
+- The paper is well-written, presenting its concepts and results with clarity.
+- The proposed approach is easy to apply, computationally inexpensive, and demonstrably improves generation quality.
+- The method is validated through a sound evaluation on state-of-the-art models, confirming its effectiveness.
+- A significant advantage is the method's broad applicability, as it can be used even with models that do not rely on a CLIP text encoder.
+
+### Weaknesses
+- Based on the observation presented in Table 1 that adding CLIP embeddings can increase the quality of images generated from short prompts, it would be beneficial if the authors would also separate their evaluation based on the criteria of prompt length, to demonstrate that modulation can increase generation quality even with long prompts. A more detailed analysis would strengthen the method's reliability.
+- The evaluation lacks a comparison to common, practical methods for quality enhancement. For example, many users simply add phrases like "good quality image" or "very detailed image" to their prompts or use negative guidance, which is a standard feature in many diffusion model interfaces.
+- A potential trade-off between the enforced modulation and prompt fidelity is not explored. If the aesthetic qualities introduced by the modulation contradict the user's explicit request in a prompt, it could negatively impact prompt-following. An exploration of this dynamic would strengthen the submission.
+
+### Questions
+- The quality improvement shown in Figure 5 appears to stem largely from guiding the outputs to look more photographic, particularly with the introduction of blurred backgrounds. While this is often desirable, it raises a question about the trade-off between this aesthetic guidance and prompt fidelity. For example, if a user explicitly asks for a plain background, will the modulation override this request to produce a more "image-like" result with depth of field? Have the authors evaluated this trade-off?
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper investigates the role of the CLIP modulation component within Text-to-Image (T2I) diffusion models. The authors begin by questioning its necessity, demonstrating through ablation that its removal has a minimal impact on overall generation performance. Despite this finding, the authors argue that this component enable controllable shifts in the generation process. They propose a novel method that involves altering the modulation guidance at different blocks of the diffusion transofmer. This claim is supported by a thorough quantitative analysis across several T2I models and is further extended to text-to-video models. The authors show that their method improves generation quality in terms of aesthetics and complexity. They also demonstrate that it mitigates common generation failures, such as incorrect object counts and anomalous finger generation.
+
+### Strengths
+The paper is clearly written and well-structured. A primary strength lies in its comprehensive experimental validation. The experiments are thorough and are conducted on 4 T2I models that are trained with CLIP modulation, and even included additional model that was not using CLIP, training it to incorporate CLIP modulation. Furthermore, they include text-to-video models, thereby broadening the applicability of their findings.
+
+### Weaknesses
+The primary weakness is the limited novelty of the method. This method (with the exception of choosing the dynamic modulation strategies) was already presented in [1] as a naive approach (Equation 2). If the authors disagree, I would be happy to discuss and understand the novelty better.
+
+A second, smaller weakness, concerns the justification for the proposed dynamic modulation strategies. These strategies are heuristically derived from observed attention patterns within the model. This reliance is a potential weakness, as attention weights are not always a reliable or faithful indicator [2] of a model's internal semantic processing at different hierarchical levels. While the authors attempt to validate these attention-driven heuristics through an ablation study, the results appear inconclusive and fail to provide a definitive justification for the chosen strategies.
+
+[1] TokenVerse: Versatile Multi-concept Personalization in Token Modulation Space (Garibi and Yadin et al. 2025)
+[2] Attention is not Explanation. (Jain et al. 2019)
+
+### Questions
+- The analysis suggests that CLIP modulation is more influential for short prompts compared to long prompts. Do the authors have a hypothesis for this observed phenomenon?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper revisits the role of global text conditioning in diffusion transformers. In response to the prevailing trend of abandoning modulation mechanisms in favor of attention-only approaches, the authors demonstrate through analysis that while conventionally used pooled text embeddings contribute limited benefits, repurposing them as a guidance mechanism can effectively adjust the diffusion trajectory toward more desirable attributes. This approach, termed modulation guidance, is training-free, straightforward to implement, and enhances performance across multiple tasks including text-to-image, text-to-video generation, and image editing.
+
+### Strengths
+1. The revisiting and discovery that global text conditioning can be leveraged as a powerful control signal—rather than being merely a passive input—is novel. The proposed dynamic modulation guidance demonstrates a clear ability to address classic and stubborn challenges in T2I generation, such as hand synthesis and object counting, which is a significant finding.
+
+2. The paper is impressive in its extensive experimental scope, demonstrating effectiveness across a diverse set of tasks—including text-to-image, text-to-video, and instruction-guided editing—and model architectures, encompassing transformer-based DMs and the CLIP-free COSMOS model.
+
+3. The paper is well-structured and easy to follow.
+
+### Weaknesses
+I have the following two major questions:
+
+1. I noticed that different hyperparameters are used for different tasks and generation types/styles In Tab.5. Could the authors provide more detailed guidance on the process of selecting the appropriate strategy and its associated hyperparameters for a **new, unseen task**? Is this process largely heuristic, requiring manual search for each new situation, or are there general principles or a methodology that can be derived from the observations in Figure 3 to make this selection more systematic?
+
+2. **Connection and Distinction to h-space Methods:** The work [1] demonstrates that diffusion models possess a semantic latent space (h-space) and that rescaling the difference in latent features ($\Delta h$) can control attribute strength. Could the authors discuss the primary distinction between their method and this prior work? Specifically, is it possible to achieve a similar guidance effect by simply rescaling $\Delta h$, analogous to Equation 3 in this paper, instead of explicitly using the CLIP embedding to compute $y(p^+, t) - y(p^-, t)$?
+
+[1] Mingi Kwon, Jaeseok Jeong, Youngjung Uh. "Diffusion Models Already Have a Semantic Latent Space". *ICLR*, 2023.
+
+### Questions
+Please see my **Weaknesses** part.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper revisits the role of global (pooled) text conditioning in diffusion transformers, which has recently been discarded in favor of attention-only conditioning. The authors first demonstrate through empirical analysis that the pooled CLIP embedding contributes little to generation quality in several state-of-the-art models (e.g., FLUX, HiDream-Fast), especially with long prompts. However, they propose a novel perspective: repurposing the pooled embedding for modulation guidance—a training-free, plug-and-play technique that steers the diffusion process toward desirable visual properties (e.g., aesthetics, complexity, hand realism) by extrapolating in the modulation space using positive/negative prompt pairs. The method is simple, incurs negligible overhead, works with or without classifier-free guidance (CFG), and can be retrofitted into models that originally lack pooled embeddings. Extensive experiments across text-to-image, text-to-video, and image editing tasks show consistent improvements in human evaluations and automatic metrics.
+
+### Strengths
+1. The paper provides a clear and convincing empirical investigation into why global text conditioning appears ineffective in current models, filling an important gap in understanding.
+
+2. Modulation guidance is training-free, easy to implement, computationally lightweight, and broadly applicable across architectures and tasks.
+
+### Weaknesses
+1. The core idea of using pooled embeddings for guidance resembles prior work on semantic directions in GANs (e.g., StyleGAN) and recent methods like TokenVerse or Concept Sliders, though the application to modulation space in diffusion transformers is new.
+
+2. The method introduces new hyperparameters (guidance scale w, layer indices), requiring tuning for different tasks—though ablations help, this adds complexity compared to plug-and-play baselines.
+
+### Questions
+NA
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/6P5sAycAQr.md b/human_reviews/6P5sAycAQr.md
new file mode 100644
index 0000000000000000000000000000000000000000..1010d7db4a69490eaf0b68891de776713e44d842
--- /dev/null
+++ b/human_reviews/6P5sAycAQr.md
@@ -0,0 +1,129 @@
+## Human Reviewer 1
+
+### Summary
+This paper organically integrates two lines of zero-shot CLIP enhancement methods—text prompt augmentation and hierarchy-based approaches—into a unified workflow to improve CLIP’s zero-shot classification performance.
+
+### Strengths
+The proposed method demonstrates a clear and rigorous workflow, supported by significant and well-validated experimental results.
+
+### Weaknesses
+The performance of the proposed method may potentially depend on the class structure of the classification task.
+
+Although the paper emphasizes that taxonomic context is essential for classification, there is limited analysis supporting this claim beyond the reported accuracy of the proposed method. In Table 4, removing the taxonomic context (W-TaxS) outperforms removing the descriptors (TaxCLIP) in several cases, which does not appear to substantiate the assertion that taxonomic context is essential.
+
+### Questions
+Could you please include additional experimental results comparing the proposed method with existing baselines on fine-grained benchmarks, such as Oxford Flowers 102 and Stanford Cars?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper presents a simple approach for prompt adaptation to improve zero-shot classification of Vision Language models such as CLIP. The authors propose constructing prompts with supercategories appended to prompts for each class. Evaluation is conducted over multiple benchmarks. Ablations and improvements over baselines is shown.
+
+### Strengths
+The authors show improvement over baselines for most datasets. Extensive evaluation includes performance of the method over various CLIP architecures as well as ablations over different aspects such as prompt construction choices.
+
+### Weaknesses
+Novelty is very limited. There is very little difference conceptually wrt CHiLS and CGPT-P (cited in the paper). Why have the authors decided to only include one level in their hierarchical tree? This has not been discussed. What happens if you construct a deeper tree? This also brings into concern the fact that simply appending the super category name to the class prompt should be suboptimal as CLIP often suffers with long context without specialized fine-tuning. The performance reported does not match numbers in other papers like CHiLS for some datasets. What could cause this? Table 1 does not state the numbers are for which CLIP architecture. The lack of examples of what the texts look like also leads to confusion about the reason why this approach will work better than CHiLS and CGPT-P.
+
+### Questions
+Please refer to questions in weaknesses.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper introduces DefNTaxS, which addresses taxonomic ambiguity in zero-shot classification by automatically generating LLM-based taxonomic context for class prompts. Building on D-CLIP's approach of adding descriptors to class names, DefNTaxS extends the template to include subcategory information: while D-CLIP uses "[class] which [has/is] [descriptor]", DefNTaxS adds taxonomic context as "[class] which [has/is] [descriptor], [contextual phrase] [subcategory]". The method uses GPT-X to discover subcategories, assign classes (targeting ~20 classes per group), and generate natural contextual phrases, achieving +5.5% average improvement over CLIP and +2.44% over D-CLIP across seven benchmarks without requiring model retraining.
+
+### Strengths
+The work explores an interesting aspect of vision-text alignment by investigating how taxonomic context can help resolve semantic ambiguities in CLIP-style models, addressing a real limitation where classes like "boxer" could refer to dogs or athletes depending on dataset context.
+
+### Weaknesses
+-- marginal extension over existing work: The contribution is an incremental improvement over D-CLIP and related LLM-prompting methods (WaffleCLIP, CuPL, CHiLS), essentially adding one more field to existing prompt templates. The taxonomic discovery process reduces to basic LLM prompting with heuristic post-processing rules, offering limited technical novelty beyond existing descriptor-based approaches.
+
+-- small performance gains: The improvements over D-CLIP are modest (+2.44% average, table 1) and inconsistent across datasets, with some showing minimal gains (+0.16% on Places365) or even degradation (-1.05% on Food101).
+
+-- limited technical and scientific contribution: the paper lacks architectural insights about vision-language models and proposes no learnable components or model modifications. The study is mainly about prompt manipulation, which doesn't advance our understanding of why CLIP struggles with ambiguity or how to fundamentally improve VLM architectures.
+
+### Questions
+--
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper extends existing works on image-text matching within VLMs such as CLIP by augmenting class descriptors with taxonomical context, achieving a gain of on average 5.5% over CLIP on standard benchmarks.
+
+### Strengths
+The paper is well written and simple to follow, and on standard benchmarks compared to methods such as D-CLIP or WaffleCLIP, consistent performance improvements can be found.
+
+### Weaknesses
+I have several issues with the proposed setup, and would love for the authors to provide more context here:
+* Why would DEFNTAXS actually be a meaningful improvement over D-CLIP, which itself has significant issues, as descriptors proposed by LLMs are not necessary to be found in given query images, see Roth et al. 2023? The problems are the same, it's just that more context is provided that may or may not match the query image, no? I.e., adding "commonly found in kitchen utils" would maybe help to differentate a fork against, say, a motorcycle, but the fail when contrasting between potentially a single fork, and a general image on kitchen utensils, since redundancy is introduced.
+* Importantly, a lot of additional semantic information is introduced into a language encoder that is known to be very weak and often fails to distinguish finegrained or multiples of semantic features. It would be important for the authors to offer some support that the CLIP model actually meaningfully and explicitly leverages the semantic context; and its not just better chosen structured noise which is given the additional performance gains.
+
+### Questions
+See weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/6i1jVAYbHs.md b/human_reviews/6i1jVAYbHs.md
new file mode 100644
index 0000000000000000000000000000000000000000..29385d726658a975ede7750584bb94d6d2955b90
--- /dev/null
+++ b/human_reviews/6i1jVAYbHs.md
@@ -0,0 +1,178 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes AtlasKV, a parametric knowledge augmentation method designed to integrate billion-scale Knowledge Graphs (KGs) into Large Language Models (LLMs) with extremely low VRAM cost (under 20GB). The core contributions are twofold: 1) KG2KV, a method for transforming KG triples into high-quality Query-Key-Value (Q-K-V) data, which aims to improve generalization by increasing query diversity compared to prior work. 2) HiKVP (Hierarchical Key-Value Pruning), a novel inference-time algorithm that organizes keys into a 3-layer hierarchy, enabling sub-linear ($\mathcal{O}(\sqrt[3]{M})$) time and memory complexity. This allows the model to scale to 1B triples while avoiding the linear cost growth seen in methods like KBLaM.
+
+### Strengths
+- Excellent Scalability: The primary strength of this paper is the HiKVP algorithm. It provides a credible path to scaling parametric knowledge augmentation to the billion-fact scale, a task that seems infeasible for prior methods like KBLaM. The experimental results in Figure 4, showing the ability to handle 1B triples with <20GB VRAM while KBLaM fails at 100K triples, are very impressive.
+
+- Strong Generalization and Robustness: The KG2KV method effectively addresses the limited query diversity of template-based synthetic data used in prior work. This is validated by the strong results in Table 3, where AtlasKV (even with pruning) massively outperforms KBLaM on OOD datasets, especially complex ones like ATLAS-Pes20-QKV (e.g., 52.7% vs 5.5% on 10³ triples).
+
+- Addresses a Critical Problem: Efficiently and scalably augmenting LLMs with vast, external factual knowledge is a fundamental goal in AI. This paper tackles this problem head-on with a novel parametric approach that avoids the high inference latency of RAG.
+
+### Weaknesses
+- Major Flaw in Experimental Validation: The paper's core premise is that scaling up KGs to 1B triples is valuable. However, the experiments fail to demonstrate this value. Table 3, the primary knowledge grounding experiment, only shows that as the number of "candidate triples" (i.e., noise) increases, performance decreases. This experiment proves "robustness to noise" but critically fails to prove the benefit of "knowledge coverage".
+The paper is missing the most crucial experiment: a comparison between a small KG and the large KG on a set of questions where the answers only exist in the large KG. Without this, the motivation for the entire paper—scaling up—is left as an unsubstantiated assumption. As it stands, the experiments show that scaling up (the candidate pool) only hurts performance.
+
+- Unaccounted LLM Cost & Unfair Comparison: The KG2KV method (Section 4.1, Appendix H) relies on external, powerful LLMs (GPT-4o-mini, and the authors state in Appendix I that Claude-4-sonnet was used for development) to transform KG relations into natural noun phrases. This introduces a significant, one-off (but potentially massive) computational and/or API cost for preprocessing the 1B+ triples. This cost is completely ignored in the paper's efficiency analysis. This makes the comparison to methods like KBLaM, which uses simple synthetic templates, an unfair, apples-to-oranges comparison. The scalability of AtlasKV is thus partially achieved by offloading significant complexity to an external, unmeasured LLM.
+
+- Loss of Graph Structure: The KG2KV method inherently "flattens" the knowledge graph, treating each triple as an independent fact. This sacrifices all topological/structural information of the KG, limiting the method to one-hop retrieval and precluding multi-hop reasoning. This is a significant trade-off that should be more explicitly acknowledged and discussed as a limitation.
+
+### Questions
+- Could the authors provide an experiment that demonstrates the value of "knowledge coverage"? For example, by comparing a model trained on a 1M-triple KG vs. a 100M-triple KG on a set of questions where the answers only exist in the larger KG? This seems essential to justify the paper's core motivation.
+
+- Can the authors quantify the computational cost (e.g., in GPU hours or total API costs) of the KG2KV preprocessing step for the 1B-triple ATLAS-Wiki dataset? How does this one-off cost compare to the training/inference costs, and how does it affect the overall efficiency claim?
+
+- The performance of AtlasKV with HiKVP is notably lower than AtlasKV without HiKVP (e.g., Table 3, ATLAS-CC-QA, 10³ triples: 74.5% vs 96.4%). This suggests the hierarchical pruning is quite lossy. Have the authors explored strategies to mitigate this precision drop (e.g., different top-k values, as hinted at in Appendix B.2), or is this considered an acceptable trade-off for the achieved scalability?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes a relatively systematic optimization framework to address the high computational complexity of knowledge-augmented large language models (KG-augmented LLMs). It provides both theoretical and experimental analyses of the model’s time and space complexity as well as GPU memory consumption, showing a certain level of exploratory research value. The designs of the hierarchical knowledge base and Rectangular Attention modules are instructive. In addition, the authors present relatively complete complexity derivations and visualization results, which enhance the technical rigor of the work.
+
+### Strengths
+1. **Novel and principled framework:**
+
+The transformation from KG triples to Q-K-V structures is conceptually elegant and theoretically aligned with transformer attention, effectively bridging symbolic and neural representations.
+
+2. **Scalable design and sub-linear efficiency:**
+
+The hierarchical pruning mechanism (HiKVP) achieves sub-linear time and memory complexity, making it feasible to integrate billion-scale KGs in limited VRAM environments.
+
+3. **Strong empirical results:**
+
+Extensive experiments demonstrate clear improvements in both knowledge grounding and generalization, with substantial reductions in memory cost compared to KBLaM and RAG.
+
+### Weaknesses
+1. The methodology section is difficult to follow. The main issue is that many symbols are not clearly defined. For example, the meaning of $S$ on Line 253 and the correspondence of variables in Eq. (3) and Eq. (13). In addition, the paper does not state the model’s optimization objective, which further increases the burden on readers trying to understand the work.
+
+2. The paper’s primary contribution appears to be complexity optimization for KG-augmented LLMs. However, relying solely on time/space complexity analyses and VRAM accounting is not sufficient to fully assess this advantage. For instance, when performing top-k pruning over a hierarchical KB, switching among three levels of keys can induce frequent CPU–GPU I/O, which is a non-negligible hardware latency during real-world training/inference. I recommend discussing this overhead explicitly.
+
+3. Missing parameter sensitivity analysis. To my knowledge, Rectangular Attention in KBLaM is not invoked at every LLM layer; it is typically applied every few layers. I could not find this setting in the main text (it might be in the appendix, which I may have overlooked). Moreover, the paper does not provide any rationale or analysis for such a setting.
+
+4. Why three hierarchy levels? The choice of a 3-level hierarchical key-value cache is insufficiently justified. Please add more detailed theoretical or empirical support for this design choice.
+
+5. Inter-level correlation in top-k selection is not clear. Are the top-k selections across different hierarchy levels correlated? Figure 6 only shows the variation of a single variable. Given that top-k pruning at an upper level can influence the quality of pruning at the next level, an experimental analysis of this inter-level dependency seems necessary.
+
+6. I am curious about the appendix proof of equivalence for Rectangular Attention. It appears to be largely a distributive rearrangement of matrix operators that, in practice, does not change the computed result. Please provide a deeper explanation of its effectiveness. Alternatively, clarify whether this operator manipulation merely serves as an algebraic device to facilitate subsequent complexity analysis for hierarchical key-value computation.
+
+### Questions
+Please See weakness
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes AtlasKV, a parametric method for integrating billion-scale KGs into LLMs without external retrievers, long contexts, or retraining.
+
+It addresses limitations of non-parametric RAG (latency, retrieval bottlenecks) and traditional parametric methods (retraining costs, poor scalability)
+
+Key innovations include KG2KV, which converts KG triples into query-key-value (Q-K-V) data aligned with LLM attention mechanisms, and HiKVP, a hierarchical pruning algorithm for sub-linear time/memory complexity during inference.
+
+Experiments demonstrate superior empirical performance.
+
+### Strengths
+1. AtlasKV shifts from retrieval-heavy RAG to parametric KG injection, enabling training-free adaptation to new KGs. This idea is both novel and practical.
+
+2. The method is well-motivated, with clear formalisms for KG2KV and HiKVP. Such formulation maintains generalization without fine-tuning.
+
+3. Results show strong gains in knowledge-intensive tasks.
+
+### Weaknesses
+1. HiKVP's pruning is efficient, but lacks formal guarantees or error analysis.
+
+2. Lack comparison with GraphRAG algorithms, such as HippoRAG and Raptor. I understand the focus of this work is on large KGs, where existing graphRAG algorithms can struggle to handle especially for indexing latency and token consumption. But comparing with them on small datasets can benefit the understanding the pros and cons of these methods.
+
+### Questions
+See above.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces AtlasKV, a parametric knowledge integration framework for large language models (LLMs) that enables augmentation with billion-scale knowledge graphs (KGs) under modest GPU memory budgets (<20GB VRAM). The method converts KG triples into query–key–value (QKV) training data aligned with LLM attention structures. It also employs a hierarchical key–value pruning algorithm that reduces computational and memory overhead while preserving grounding accuracy. Extensive experiments on large-scale KG datasets (ATLAS family, Enron, etc.) demonstrate that AtlasKV outperforms both non-parametric RAG methods and parametric baselines (e.g., KBLaM) in terms of scalability, knowledge grounding, and generalization to out-of-distribution (OOD) queries.
+
+### Strengths
+- The combination of KG2KV and HiKVP is elegant, bridging symbolic KG structure with LLM attention in a natural way.
+
+- The proposed method demonstrates integration of 1B triples with <20GB VRAM, a significant improvement over KBLaM (>40GB for 100K triples).
+
+- Experiments across multiple datasets (ATLAS-CC, ATLAS-Pes2o, Enron) with ablations (entity vs. event masking, pruning strategies, encoders) show the effectiveness of the method.
+
+### Weaknesses
+- KG2KV requires relation rewriting (e.g., "because" -> "cause"), which relies on external LLMs. This introduces dependency on external models and may limit reproducibility.
+
+- The baselines are strong (KBLaM, RAG), but newer lightweight RAG variants (e.g., caching-based or hybrid symbolic-neural methods) are not included.
+
+- The claim that only 20K KG2KV samples suffice for generalization is intriguing, but more discussion is needed on why such small-scale training suffices for billion-scale integration.
+
+### Questions
+- How sensitive is AtlasKV to the quality of relation rewriting in KG2KV? Could noisy or ambiguous relations degrade performance?
+
+- How does AtlasKV handle evolving KGs (e.g., streaming updates)? Is retraining or re-encoding required?
+
+- Could AtlasKV be combined with lightweight retrieval (hybrid parametric + non-parametric) for further efficiency gains?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/7gLNA6nT5d.md b/human_reviews/7gLNA6nT5d.md
new file mode 100644
index 0000000000000000000000000000000000000000..480f73d5f6e579559260774133659c508ebd4c2b
--- /dev/null
+++ b/human_reviews/7gLNA6nT5d.md
@@ -0,0 +1,185 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes to explicitly add n-gram induction heads to transformer model for in-context reinforcement learning. It can improve the data efficiency, address the simplicity bias and make the model more stable and less sensitive to hyperparameters. Experiments show that the proposed method can outperform the algorithm distillation baseline.
+
+### Strengths
+1. The idea of introducing n-gram induction head is simple and easy to implement.
+2. It can improve the data efficiency and reduce the hyperparameter sensitivity.
+3. The proposed n-gram head can also be applicable to visual environment settings.
+
+### Weaknesses
+1. Section 2.2: the description of the whole model structure is unclear. The formula in line152 needs more detailed explanation, like how the attention score of n-gram head is normalized, what if there are no n-grams in the history, if there is only one head in each NG layer. The authors should better provide a pseudo-code or the architecture figure.
+
+2. What is the architecture of your base transformer model? What is the number of layers and the total size of the model? Do you try using a powerful pretrained model to see if the benefit of 2-gram information still helps? There should also be experiments on different model size to further validate the effectiveness of the n-gram head.
+
+3. The limited generalizability. The motivation of the 2-gram induction head is to mitigate the simplicity bias and accelerate the emergence of in-context learning.
+While effective at small scales and with limited data, this architectural improvement is fundamentally a hardcoded bias for simple, short-term pattern recognition (specifically, 2-gram statistics in the experiments, 3-gram will hurt the performance). In the era of increasingly large transformers and datasets, the attention itself can emerge the complex induction heads and even more sophisticated learning algorithms, which makes the 2-gram information redundant. Moreover, in real-world scenarios, the basic in-context learning capability is already strong, we do not need to train the transformer from scratch for the emergence of in-context RL, and the n-gram information is insufficient for distilling complex RL algorithms that require abstract reasoning instead of the local sequential patterns.
+
+### Questions
+Typos: The title of the paper is wrong.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes N-gram attention in ICRL to reduce the data required in training process but achieve the similar performance of AD. Evaluations on some visual-based scenarios further show its edge.
+
+### Strengths
+1. The paper is easy to follow.
+2. The figure is well-situated and clear.
+
+### Weaknesses
+As I'm not the expert in this area, I cannot provide some professional review here. Below are my comments:
+
+1. The work lacks formal analysis explaining why N-gram heads yield stability gains and reduced data requirement. Maybe the authors should provide some theoretical perspective to elaborate this.
+2. Could the authors add more experiments on some diverse visual tasks to further showcase the superiority ?
+
+### Questions
+See weakness above
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper integrates n-gram introduction heads into transformers for In-Context RL. This integration aims to resolve two challenges in Algorithm Distillation: (1) the low data efficiency in ICRL; (2) the training instability in emerge the in-context capability. The authors apply explicit n-gram introduction heads to the transformer backbone and test n-gram heads in Dark Room and Key-to-Door environments. The authors also propose a scheme to extend the environments to image states. The results show that the n-gram heads can significantly reduce the data requirement and improves hyperparameter robustness.
+
+### Strengths
+1. This paper proposes a very useful improvements to AD by integrating n-gram heads to transformer. This architectural improvement significantly mitigates the disadvantage of AD of data overhead, hyperparameter tuning, and training instability
+1. The empirical study is very comprehensive that answers all my concerns towards the n-gram heads architecture application in AD. Section 4 strengths my confidence in applying this technique to ICRL research.
+1. The VQ technique provides a feasible approach to image-based environments which extends the n-gram heads architecture to broader application scenarios.
+1. The authors give detailed description on how to sweep and choose the hyperparameters. This information is rather important to such empirical papers for reproduction.
+
+### Weaknesses
+1. This paper demonstrates the benifits of n-gram heads by expriments in two environments and their variants in Miniworld. However, these environments are relatively simple. I suggest the authors test n-gram heads in more complicated continuous control tasks (e.g., MuJoCo, Meta world) to show the generalization.
+1. In addition to the experiments, I would expect theoretical analysis for why explicit n-gram heads can help improve data efficiency and traning stability in Algorithm Distillation, as n-gram has been studied for decades.
+1. As VQ and ResNet are used in image-based tasks, I suggest the authors also analyze the training cost sensitivity for these modules. They are important to prove the adaptation and efficiency in pixel-based environment.
+
+Minor issue:
+1. The title is missing in the paper.
+1. The figure positions mismatch the text. For example, I have to jump pages to find Fig. 2 and Fig. 4 when I read the paper. It would be nice to rearrange the paper so that the figures are right in the place where they are referred.
+
+### Questions
+1. Could the authors compare with other baselines, for example, Noise Distillation [1] mentioned in the paper? This will help clarify whether the observed data-efficiency and stability gains stem specifically from the proposed n-gram inductive bias, or whether similar improvements could be achieved through alternative data-centric approaches.
+1. Could the authors test the method in high dimensional continuous control environments, e.g., MuJoCo and Meta world? These are widely used benchmarks to evaluate the generalization and scalability of RL algorithm, and would help demonstrate whether the proposed n-gram heads can extend the scope to more complex, real-world control tasks.
+
+[1] Zisman, Ilya, et al. "Emergence of In-Context Reinforcement Learning from Noise Distillation." International Conference on Machine Learning. PMLR, 2024.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper examines whether augmenting the architecture with n-gram attention heads improves the performance of Algorithm Distillation [17].
+
+### Strengths
+N/A
+
+### Weaknesses
+The scope of this work is narrow, as it focuses solely on improving Algorithm Distillation [17], and it is unclear whether the findings generalize beyond this specific approach. Given the limited experimental scale, its relevance to understanding in-context learning in large transformer models is also unclear.
+
+### Questions
+The title in the PDF file ("FORMATTING INSTRUCTIONS FOR ICLR 2026 CONFERENCE SUBMISSIONS") should be corrected.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+This paper integrates n-gram induction heads into transformer architectures for in-context reinforcement learning (ICRL). Building on Algorithm Distillation, the authors show that explicitly incorporating n-gram attention patterns reduces data requirements (up to 27× fewer transitions) and makes hyperparameter search easier, and works across both discrete and pixel-based environments. The method is validated on Dark Room, Key-to-Door, and Miniworld environments.
+
+### Strengths
+S1: The paper addresses a real practical problem in ICRL: Algorithm Distillation's demand for large datsets, and sometime slow convergence or getting stuck.
+
+S1: The paper tests their method on different setups, ones with more grid based states and another with rgb 64x64 pixel. A diverse set of tasks reinforces the findings.
+
+S3: Clear presentation with intuitive figures.
+
+### Weaknesses
+W1: This is my main concern. This work seems to not disentangle three questions: 1) how does n-gram heads general help the training of transformers 2) why this is espeically important (or not) in ICRL tasks 3) is the gain via n-gram heads really not achievable by other hyperparameter tuning or different architectural tricks.
+
+W2: It is very hard to takeaway generalizable insights on why n-gram heads help and when we should be using these.
+
+W3: Lack of serious comparison. The method is only compared against vanilla AD. There has been many variants on the algorithmic side, and at the same time many improvements on the transformer architecture and initialization.
+
+W4: Overselling of generality. The title and abstract suggest n-grams solve ICRL's data problems broadly, but it is hard to understand whether these gains are precisely attributable to n-gram heads or will be simply addressed by data scale or better optimization.
+
+### Questions
+Q: What is the positional encoding used in the transformer?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/8J3GTeQmwl.md b/human_reviews/8J3GTeQmwl.md
new file mode 100644
index 0000000000000000000000000000000000000000..bdde708ac5162932cdcb44d39086eef7abfd78f1
--- /dev/null
+++ b/human_reviews/8J3GTeQmwl.md
@@ -0,0 +1,171 @@
+## Human Reviewer 1
+
+### Summary
+This paper addresses the problem of model selection in graphon estimation by proposing a new cross-validation method for selecting tuning parameters and estimation approaches. The authors prove that their cross-validation score is asymptotically aligned with the estimation error. Extensive numerical simulations and real-data analyses are provided.
+
+### Strengths
+1. I feel the proposed method quite smart. By randomly replacing a portion of the edges, the authors introduce a controllable bias, while obtaining edges that are (conditionally) independent of the training set for validation. The idea is interesting and provides insights for existing research.
+
+2. The authors show that minimizing $V_k(M)$ approximately corresponds to minimizing $L(M)$, which provides a theoretical justification for the proposed method.
+
+3. The authors have provided sufficient numerical simulations and applied their method to real data examples.
+
+4. I enjoyed reading the paper. The writing is clear and well-structured.
+
+### Weaknesses
+1. It is confused whether $v_i$ in Line 97 is a typo, since it is unusual for a node label to be a random variable. In addition, if $v_i$ is intended to be $\mu_i$, then $p_{ij}$ would be random, see my Questions 1 and 2.
+
+2. It is unusual that the paper does not impose any assumptions on the graphon function. It is unclear what role the graphon function plays in their framework.
+
+3. The proofs need to be written more rigorously. See my Question 2, 5.
+
+### Questions
+1. Could the authors clarify whether line 560 contains a type error? Should it perhaps be something like $P((v_i,v_j)\in S_k)P(b_{ij}=1, a_{i'j'}=1) + P((v_i,v_j)\notin S_k)P(a_{ij}=1,a_{i'j'}=1)?$ In addition, could the authors explain how the term $P(a_{ij}=1)P(a_{i'j'}=1)$ in line 561 is obtained? If I understand correctly, the edges $(i,j)$ and $(i',j')$ are correlated when $i=i'$ since they share the same $\mu_i$.
+
+2. Line 597 could be made clearer. More precisely, the statement holds conditional on all $\mu_i$'s.
+
+3. If all $\mu_i$'s are treated as deterministic, then it is unclear why the paper introduces the graphon function.
+
+4. It would be helpful if the authors could comment on the computational complexity of calculating $V_K(M)$, for example when $K\asymp n$.
+
+5. Could the authors clarify why Line 610 is correct? It seems that $S_k$ is random.
+
+
+6. It would be helpful if the authors could provide more clarification on when Condition 1 is satisfied. For instance, including a toy example or specifying sufficient conditions would make it clearer. In addition, could the authors comment on whether this condition depends on $w_k$ and $\theta$?
+
+7. It seems that the theorem holds for any fixed $\theta$. What would happen if $\theta = 0$ or 1? In addition, in the appendix the authors set $\theta$ as a random variable, then how would this affect the validity of the theorem?
+
+
+8. It would be helpful if the authors could provide a theoretical comparison between their method and ECV in terms of implementation time.
+
+9. It would be interesting to know how the theoretical results behave when $p_{ij}$ tends to zero as $n$ increases.
+
+10. Some minor errors:
+
+Line 158: $w_k\theta$: $w_k\theta 11^\top$.
+
+Line 249, 251: five: four.
+
+Line 573: equation equation 8: equation 8.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces an improved cross-validation method with random imputation, which is unbiased and efficient compared to existing methods including edge sampling approaches and the matrix completion method proposed by Li et al. (2020). The paper compares against these baselines across multiple graphon estimation methods, demonstrating effectiveness in terms of both accuracy and computational efficiency. The authors provide theoretical justification showing that their cross-validation score is asymptotically correct. I found that this paper is strong and provides a comprehensive analysis based on both theory and numerical evidence. The case studies are insightful and demonstrate practical applicability of the proposed method.
+
+### Strengths
+1. The authors effectively articulate the fundamental challenge in applying cross-validation to network data, particularly how traditional edge sampling destroys network topology.
+
+2. The random imputation strategy is quite simple and very effective. I could not think of any simpler way.
+
+3. The paper provides extensive experiments across multiple graphon models (varying in density and rank properties) and estimation methods (NS, SAS, USVT, ICE). Section 6's case studies are particularly compelling.
+
+4. Unlike ECV which requires low-rank assumptions and only has theoretical guarantees for specific models (SBM, RDPG), CV-imputation works for the general graphon model class
+
+### Weaknesses
+1. I could not follow the theoretical justification precisely, but I get the intuition behind it which is that the training and test data are independent of each other. Therefore, it doesn't change the distribution of the edge probabilities. It is worthwhile to note that this is valid only when the presence orabsense of an edge is independent of that of other edges.
+
+2. While the paper tests networks up to approximately 2,600 nodes, many real-world networks contain tens or hundreds of thousands of nodes, yet no discussion addresses computational or memory requirements at such scales. I understand to some extent because the number of pairs for increases quadratically with respect to the number of nodes. But it is nicer to discuss a solution to scale up the method.
+
+### Questions
+I am unclear why the computational time differs across estimation methods (Figure 3), since the cross-validation procedure itself should be independent of the estimation method being evaluated. I suspect the authors calculated the total CPU time, which includes both the cross-validation procedure and the estimation method execution, rather than isolating the cross-validation overhead alone. This make it unclear the actual speedup specifically attributable to CV-imputation compared to ECV. The authors should clarify what operations are included in their reported CPU times and, ideally, provide a breakdown separating cross-validation overhead from estimation costs.
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes a new cross-validation approach for graphon estimation, introducing a random-imputation strategy to handle dependency structures in networks and to tune hyperparameters from a single observed graph. The authors argue that existing edge-sampling methods lead to bias by degrading network connectivity, and they provide a careful theoretical treatment to show consistency of their approach. The work is technically sound and well written, but the contribution represents a relatively narrow conceptual advance within the specific context of graphon models rather than a broader methodological step forward for network machine learning. The empirical results, while generally positive, do not convincingly demonstrate consistent or substantial gains over edge-based cross-validation (ECV). The paper would be strengthened by a deeper analysis of when and why ECV fails in practice, clearer discussion of how the proposed method could generalize beyond the graphon setting, and a more comprehensive evaluation showing robust and meaningful performance improvements across a wider range of network types.
+
+### Strengths
+The paper addresses a legitimate technical challenge: how to form cross-validation sets in under dependence in networks. The proposed CV-imputation scheme is clearly described, mathematically justified, and accompanied by consistency proof. The implementation appears efficient, and the experiments consider several graphon estimators (NS, SAS, USVT, ICE), as well as both synthetic and real-world graph datasets. The manuscript is generally clear and thorough.
+
+### Weaknesses
+(1) Scope and generality. The method applies specifically to graphon models and depends on smoothness and exchangeability assumptions. It is unclear how the proposed theoretical framework or random-imputation idea would extend to broader classes of network models (e.g., latent-space, temporal, or sparsified networks). Thus the paper’s claims of general applicability thus seem overstated.
+(2) Empirical impact. The experimental gains over ECV are modest. In Table 1, SAS and ICE show no meaningful improvement, suggesting that differences arise mainly from estimator robustness rather than from the proposed validation method. In real-world datasets, results are essentially tied on three of four networks. Only the drug–disease network shows a visible advantage, which is not analyzed in depth. Without more in-depth analysis demonstrating the impact of ECV bias, it is difficult to conclude that the differences are practically important.
+(3) Efficiency gains. Although Figure 3 shows a computational speed-up relative to ECV, the paper does not provide an asymptotic complexity comparison. Moreover, the statistical efficiency results in Figure 5 are averaged across all graphon models and may be dominated by the weaker performance of NS and USVT, making it hard to assess whether the gains are consistent or meaningful across settings.
+
+### Questions
+See weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes CV-imputation, a cross-validation method for selecting graphon-based models on network data. The method is model-agnostic, computationally efficient, and supported by theoretical guarantees of asymptotic consistency. Empirical results show that it outperforms or matches existing methods across various networks.
+
+### Strengths
+1. CV-imputation does not assume a specific form of the graphon, allowing it to be applied across diverse network structures without model restrictions.
+2. The method avoids expensive singular value decomposition (SVD), reducing runtime and enabling scalability to large networks.
+3. It is supported by a convergence result showing that its validation criterion aligns with mean squared error minimization in the asymptotic regime.
+
+### Weaknesses
+This work assumes the data comes from a graphon and the goal is to assess graphon-based estimators. However, would such a method be extended beyond this assumption? Discussion about the limitations of applicability would be a nice addition to the paper.
+
+Additional discussion on the order complexity of the method vs the baselines would strengthen the paper.
+
+### Questions
+1. How sensitive is CV-imputation to violations of the graphon assumption? Are the theoretical guarantees still meaningful outside the graphon framework?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+2
\ No newline at end of file
diff --git a/human_reviews/8KcjEygedc.md b/human_reviews/8KcjEygedc.md
new file mode 100644
index 0000000000000000000000000000000000000000..e5474e040ca42ccb008787819e047a815625b054
--- /dev/null
+++ b/human_reviews/8KcjEygedc.md
@@ -0,0 +1,166 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces a principled theoretical framework for data curation, trying to figure out when less data actually works better than more, to challenge the classical "more is more" scaling laws with comprehensive experiments. It derives exact scaling laws for test error under label-agnostic and label-aware curation rules, showing that strategically pruned small datasets can outperform full datasets under conditions like strong generators and abundant data, while also mitigating model collapse.
+
+### Strengths
+1. The first paper tries to theoretically explain when and why LIMO happens in machine learning by developing a principled theoretical framework for data curation, enabling practitioners to design data-centric pipelines instead of blindly scaling datasets.
+2. Also provides a unifying explanation for contradictory curation strategies.
+3. The writing and presentation look perfect to me.
+
+### Weaknesses
+1. While the paper links theory to LLM math reasoning (AIME benchmark in Table 1&2), it would be better to discuss other LLM-critical tasks (e.g., code generation, natural language understanding, or multi-step reasoning benchmarks) where curation is also widely used. Additionally, the authors do not investigate how the pruning ratio or oracle quality affects performance across different model sizes (e.g., 7B vs. 70B LLMs), leaving uncertainty about whether the LIMO principle holds consistently across LLM scales.
+
+### Questions
+1. The theory is framed around binary classification, but multi-class tasks are definitely more common in practice. Could you discuss whether the optimal pruning strategies could extend to multi-class settings?
+2. In the ImageNet experiment, the generator and pruner are the same pre-trained ViT, which ensures alignment, but real-world CV pipelines may use separate generators (e.g., a synthetic data model) and pruners (e.g., a human-in-the-loop verifier). Could you discuss how misalignment between generator and pruner (e.g., low ρ₊ relative to ρ) would impact the optimal curation strategy, and whether this differs from the LLM case (where generator and pruner are often separate)?
+3. I have another question for the authors, but not necessarily to be answered: LLM training encompasses pre-training, post-training, and stages such as SFT and RL within the fine-tuning process, with distinct training data used for each stage. For the LIMO method discussed in the paper, in which of these training stages is its principle more likely to be reflected?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper develops a teacher–student, high-dimensional model of learning from curated data in order to reconcile two empirically observed regimes in modern LLM/vision training: "More is more" regime (classical scaling laws) in Kaplan et al. (2020) and Hoffmann et al. (2022), where performance improves monotonically with dataset size vs. "Less is more" regime (LIMO/s1–style curation), when the generator is strongly aligned with the target, then selectively keeping only the most informative/hard examples yields strictly lower test error than training on the full set. Formally, the authors setup a theoretical model with Gaussian inputs and labels generated by a linear teacher with known alignment, and the learner as a ridge (square-loss) estimator trained on a pruned sample whose selection is governed by an oracle with its own alignment parameter. Using random-matrix/deterministic-equivalent techniques, the authors derive closed-form high-dimensional limits for the test error after curation. The authors show numerical simulations of their theory and corroborated with empirical simulations.
+
+### Strengths
+* The paper is clearly written and well-organized. The paper has both solid theoretical side and empirical evidence.
+* The paper has deep theoretical building blocks with high dimensional asymptotics of linear models and classification problems. Using both RMT techniques and tools from Feng et al. for classification problems to study the effects of pruning by the oracle. The conclusions are sound as far as I have checked, and the results appear novel to me.
+* The paper's conclusion provides an alternative to neural scaling laws: it is possible to perform with higher accuracy with fewer data with an expert pruner. This also gives a potential remedy to the neural collapse phenomenon where the training procedure seeks to scale with self-generated data---perhaps by scrutiny using the synthetic data (instead of training on them) and picking only harder/easier problems we can avoid model collapse from synthetic data.
+
+### Weaknesses
+Major comments:
+* I think the main inconsistency between the main message and theory is that: both "KE" and "KH" strategies are effectively "less is more". It is just what data should be picked. I think it is a bit of stretch to say "KE" is equivalent to "more is more", while the neural scaling laws scenario should correspond to a very small $\phi$ instead of the "KE" strategy.
+* The theory relies on linear model with Gaussian covariates, and is limited to the binary classification setup with proportional asymptotics. This is, definitely limited, as is acknowledged also by the authors in the limitation discussions, a good starting point for study the pruning and data curation in large datasets. I think this is only a minor weakness.
+
+Minor comments:
+* A general style suggestion: use \eqref instead of \ref for equations.
+* Page 19, "Corollary xyz". I think this is a placeholder or typo.
+
+### Questions
+* My main questions are in the weaknesses section. I would especially like to see more discussions between "KE" and "more is more".
+* The paper uses deterministic equivalence to obtain risk asymptotics for the problem (2). While in general, when l is a convex loss function, using the CGMT techniques the similar asymptotics can also be obtained. See Karoui (2013). What do authors think the behavior in this setup? Would the same behavior also be expected?
+
+Karoui, Noureddine El. "Asymptotic behavior of unregularized and ridge-regularized high-dimensional robust regression estimators: rigorous results." arXiv preprint arXiv:1311.2445 (2013).
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This work seeks to develop a theoretical framework for understanding data curation. In other words, they seek a theory that can predict when it is best to use less data (filtered/curated) versus all data (no filtering/curation). The authors are motivated by the fact that there are cases where small datasets have been shown to be beneficial, like LIMO and s1. Their theoretical results assume a Gaussian feature model under a binary classification setting.
+
+### Strengths
+1. The authors use their theory to show that it can predict empirical results to a surprising degree (mean relative error of 1.8% according to App. B), and within these empirical results live the settings they sought to understand: when all data is needed ("more is more") and when curation is needed ("less is more")
+2. Authors consider both label-agnostic and label-aware data curation in their theory
+3. Significant extra detail for figures and proofs are provided in appendix, answering a few of my early questions
+
+### Weaknesses
+1. Arguably the most important feature of the paper is that their theory is predictive of empirical results in a very realistic dataset (ImageNet training of a ViT), but it is not clear from the writing how to use this in practice. In particular: how does someone measure the quality of the generator $\rho$ for a dataset you are given? No commentary on this is given. A bonus would be if the authors gave a step-by-step appendix section for a practitioner on how to use their theory (willing to raise score for clarity on this)
+2. "the base LLM is a strong generator" based on what? how is this claim measured?
+3. Why is $n=5000$ considered the "large data" setting in Figure 1? How was this number chosen? That $n$ is smaller than the CIFAR-10 training set...
+
+Minor:
+- capitalize PDF and CDF on L184
+
+### Questions
+1. Why is the Gaussian feature model noted as a limitation? Wouldn't we expect gaussian distributions of features according to central limit theorem? The authors mention real-world data is "structured" but I find that vague.
+2. How does someone measure the quality of the generator $\rho$ for a dataset you are given?
+3. Is it possible to know the quality of pruning? For example, suppose I curate a dataset of text by removing duplicates, how would a "quality" be assigned to that?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces a rigorous theoretical framework to analyze the efficacy of data curation strategies in high-dimensional learning. It addresses a central paradox in modern ML: When does aggressive data pruning ("Less is More," exemplified by methods like LIMO and s1) outperform training on the full dataset ("More is More")?
+
+The paper model this scenario using high-dimensional binary classification and regression with Gaussian covariates. The setup captures the interactions between a data generator ($w_g$), the ground truth ($w_*$), and a pruning oracle ($w_o$), allowing for label shift. They analyze both label-agnostic (based on difficulty/margin) and label-aware (based on difficulty and correctness) curation.
+
+Using RMT, the paper derive exact asymptotic expressions for the test error in the proportionate scaling limit ($d/n \to \phi$). The central theoretical finding (Theorem 2) identifies a precise phase transition: "Less is More" (specifically, keeping hard examples) is optimal iff data is abundant AND the generator is strong. In all other regimes (scarce data or weak generator), using more data or keeping easy examples is superior.
+
+While the paper is primarily theoretical, it tries rounding itself off with some simulations and Imagenet experiments.
+
+### Strengths
+- **Theoretical Rigor and Exactness:** The primary strength is the sophisticated mathematical analysis. By leveraging RMT, the paper derive *exact* asymptotic formulas for the generalization error (Theorems 1, 3). This allows for a precise characterization of the interplay between data quality ($\rho$), oracle quality ($\rho_*$), and data scale ($\phi$), moving far beyond bounds or heuristics. The derivation of how pruning "deforms" the Marchenko-Pastur law governing the data spectrum is technically impressive and commendable.
+
+- **Good Resolution of the "Less vs. More" question:** The paper provides a clear and elegant resolution to conflicting empirical observations regarding data scaling. Fig. 1 beautifully illustrates the four key regimes of learning. The insight that the optimal strategy is fundamentally tied to the generator's strength relative to the task difficulty is a major conceptual contribution.
+
+- The framework successfully unifies several recent lines of work, including data pruning strategies and model collapse mitigation. The analysis of label-aware curation (Section 3.2) is highly relevant to modern SFT/RL*F pipelines where reward models filter policy outputs. The demonstration that strategic pruning prevents model collapse (Fig. 3) is practically significant for the stability of iterative training loops.
+
+- The authors provide some practical validation. Synthetic experiments show strong agreement with the theory (App. B, Fig. 4). Crucially, the ImageNet experiments confirm that the qualitative insights transfer to deep learning settings (ViT), and the analysis in Sec. 4.2 provides a compelling explanation for recent contradictory LLM results.
+
+### Weaknesses
+**Linear Models:** The theoretical results are derived under the assumption of linear models and Gaussian covariates. This is a known standard simplification for RMT analysis but limits the direct quantitative applicability to deep neural networks on structured data. However, the empirical results do point towards potential qualitative transfer, but would warrant a more complete exploration.
+
+**Fixed Oracle:** The framework assumes a fixed pruning oracle ($w_o$). In practice, oracles (e.g., reward models) are often learned and may evolve adaptively during training (e.g., iterative RLHF), which is not captured in the current analysis. Extending the theory to adaptive oracles would be an important future direction.
+
+
+I am **highly skeptical** that this constitutes the explanation for "Less is More" in modern deep learning. The assumptions are too strong, the dynamics of optimization (like SGD) and feature learning are ignored, and the empirical validation is not sufficiently robust to confirm that the mechanisms identified by the theory are the ones driving results in practice.
+
+### Questions
+- There is an inherent balance/tradeoff between optimal strategy vs model collapse mitigation. Could the authors further clarify the contradictory observation between Theorem 2(b) and Fig.3 ? To be more specific, does the optimal strategy shift from Keeping easy back to Keeping Hard when moving from label-agnostic curation to label-aware curation? Maybe an equivalent Theorem 2 for label-aware setting could help.
+
+- An important practical consideration is to identify which of the four regimes in Fig. 1 is one operating in. Practically where ground truth is scarse and strength of model is difficult to estimate, how would the paper suggest reliably diagnose this? I guess there needs to be a detector for this crossover point when KH > KE?
+
+- The RMT analysis relies on linear models, while experiments elude to ImageNet teasing the qualitative transfer, but the theoretical boundaries remain tied. Can the paper describe the mechanisms they believe enable this transfer?
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/8ZQ0HjBOEc.md b/human_reviews/8ZQ0HjBOEc.md
new file mode 100644
index 0000000000000000000000000000000000000000..0c28f2dc805d725a4250b900406da7bf5072600e
--- /dev/null
+++ b/human_reviews/8ZQ0HjBOEc.md
@@ -0,0 +1,176 @@
+## Human Reviewer 1
+
+### Summary
+This paper studies the NTK regime of neural networks in the limit of increasing depth $L \to \infty$, i.e., the regime obtained by first taking the infinite-width limit $n \to \infty$ and then the infinite-depth limit $L \to \infty$. The analysis is restricted to the *ordered phase*, where the initialization variance $W_{ij} \sim \mathcal{N}(0, 1/n)$ leads to vanishing gradients as depth increases. In this setting, the NTK $\Theta(X,X)$ approaches a singular matrix as $L \to \infty$. The authors study the behavior of the *mean predictor*, defined as $\Theta(x, X)\Theta^{-1}(X, X)$, which corresponds to the expected kernel regression solution under the NTK. The main result appears to be a proof that, despite the convergence of $\Theta(X,X)$ to a singular matrix in this vanishing-gradient regime, the mean predictor itself admits a well-defined limiting form.
+
+### Strengths
+- **Relevance:** In general, scaling limits of neural networks beyond the standard infinite-width regime are in important and relevant topic in deep learning theory, and the paper aims to advance this line of work.
+
+### Weaknesses
+- **Lack of novelty:** The presented results have appeared in various forms in prior work. For instance, Xiao et al. (2020) [1] show the existence of a well-defined limit for the mean predictor in Eq. (16). Related results and discussions of the limitations of the "$n \to \infty$ then $L \to \infty$" limit also appear e.g. in Seleznova & Kutyniok (2022) [2] and Hayou et al. (2022) [3]. This regime has long been considered trivial, as the covariance between distinct inputs converges to one, leading to effectivelly constant predictions for any input. Moreover, it seems like the paper uses unnecessarily complex machinery of rough differential equations to prove convergence of the mean predictor, which is a result that can be obtained directly through standard linear-algebraic arguments.
+
+- **Restricted initialization setting:** The analysis considers only the initialization $W_{ij} \sim \mathcal{N}(0, 1/n)$, corresponding to the *ordered phase*, in which gradients vanish with depth. Prior works cited above studied a broader class of initializations and show that the behavior of the "$n \to \infty$ then $L \to \infty$" regime depends critically on this choice. The present paper does not acknowledge this and, in fact, never explicitly defines the initialization variance.
+
+- **Lack of relevant literature discussion:** Existing work on the regime $n \to \infty$, $L \to \infty$, $L/n \to 0$ is not discussed. The paper does not reference or contrast its results with any prior analyses of this limit.
+
+- **Misrepresentation of prior results:** The paper incorrectly summarizes the results of Hanin & Nica (2019) [4], which concern the *double-scaling* regime where $L, n \to \infty$ with $L/n \to \lambda > 0$. The text repeatedly claims that Hanin & Nica study the case where "the ratio of depth to width is unbounded" or where $L \gg n$, which is incorrect.
+
+- **Lack of clarity and technical precision:** There are multiple problems with clarity and technical precision in the text. A few examples are:
+ - The initialization distribution is never specified, so the source of randomness in the concentration results is unclear.
+ - "Case a" (lines 221–222) states that "if data points lie on a unit sphere, the NTK is invertible." This is trivially false, with a counterexample of taking the same point on a sphere multiple times. Moreover, the text references "Proposition 2 of Jacot et al (2018)" here. However, Jacot et al (2018) [5] does not contain Preposition 2.
+ - "Case c" (lines 227–228) refers to "stereographic projection from $\mathbb{R}^{n_0}$ to $\mathbb{S}^{n_0-1}$." Such a projection does not exist.
+
+## References
+
+[1] Xiao, L., Pennington, J., & Schoenholz, S. (2020). *Disentangling trainability and generalization in deep neural networks.* ICML.
+[2] Seleznova, M., & Kutyniok, G. (2022). *Analyzing finite neural networks: Can we trust neural tangent kernel theory?* MSML.
+[3] Hayou, S., Doucet, A., & Rousseau, J. (2022). *The curse of depth in kernel regime.* NeurIPS Workshop.
+[4] Hanin, B., & Nica, M. (2020). *Finite depth and width corrections to the neural tangent kernel.* ICLR.
+[5] Jacot, A., Gabriel, F., & Hongler, C. (2018). *Neural tangent kernel: Convergence and generalization in neural networks.* NeurIPS.
+
+### Questions
+- What is meant by “stereographic projection from $\mathbb{R}^{n_0}$ to $\mathbb{S}^{n_0-1}$” mentioned several times in the paper?
+- Why is it necessary to rely on rough differential equations to obtain the main result?
+- How do the presented results differ from or improve upon the mentioned existing work?
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper analyzes the effect of increasing depth on the Neural Tangent Kernel (NTK) for infinitely wide, overparameterized ReLU networks. While prior work established that wide networks behave like kernel methods, the role of depth remains less understood. The authors prove that as depth increases (with depth growing slower than width), the normalized NTK converges to a matrix of ones, and the kernel regression solution approaches a fixed limit for data on the sphere. They characterize this convergence theoretically using rough path theory and identify key properties enabling generalization to other kernels. Experiments show that while some kernel components converge quickly, the full normalized NTK converges extremely slowly.
+
+### Strengths
+1. By characterizing the deterministic limit of the NTK and its corresponding solution as depth goes to infinity (under a specific regime), this paper provides novel theoretical insights into the fundamental properties of deep, overparameterized networks, moving beyond the established infinite-width paradigm.
+
+2. The work demonstrates high technical quality through its use of advanced mathematical tools, such as rough path theory, to prove its central convergence theorem (Theorem 3). This sophisticated approach allows the authors to handle the challenging technical obstacle of the kernel matrix becoming singular in the limit, showcasing a rigorous and robust analytical framework.
+
+3. By identifying a list of key properties that lead to the observed limiting behavior, the authors provide a valuable template for analyzing other kernels and architectures. Furthermore, their empirical evaluation clarifies the practical implications, notably highlighting the extremely slow convergence rate of the normalized NTK, which is a crucial observation for connecting theory to practice.
+
+### Weaknesses
+1. The empirical validation is minimal, using only synthetic, uniformly distributed data on a sphere for very shallow depths ($L=1$ to $10$). This is insufficient to support the theoretical claim of "extremely slow" convergence, as the chosen depth range is too small to visually demonstrate the asymptotic behavior. To be more compelling, experiments should include benchmarks on real-world datasets and probe much larger depths to empirically quantify the convergence rate and its impact on test performance.
+
+2. While the paper successfully characterizes the existence of a limiting solution, it provides little discussion on what this limit implies for generalization. Does convergence to a fixed limit imply a loss of representation power or a tendency towards simpler functions? A deeper analysis connecting the specific form of the limiting kernel solution to known generalization behaviors would significantly strengthen the significance of the theoretical results.
+
+### Questions
+1. Your theoretical results establish an "extremely slow" convergence of the normalized NTK to 1, yet your empirical results only show depths up to $L=10$. Could you provide a quantitative estimate of the depth $L$ required for the kernel solution $\kappa_x\kappa^{-1}$ to be within a small $\epsilon$ of its limit on, for instance CIFAR-10? This would greatly help in assessing the practical relevance of your limit for modern deep architectures.
+
+2. Your analysis crucially relies on the depth growing slower than the width to maintain a deterministic NTK. Is this a fundamental requirement for your rough path theory technique to hold, or is it an artifact of the current proof? Could you comment on the feasibility and potential challenges of extending your analysis to the stochastic NTK regime described in Hanin & Nica (2020)?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper examines the role of network depth through the lens of Neural Tangent Kernel (NTK) theory. Within this framework, this paper shows that the normalized NTK converges to the all-ones matrix as depth increases for data on the sphere (with extensions via projection for more general data), under the assumption that depth grows more slowly than width. Empirical evidence illustrates that this convergence is very slow.
+
+### Strengths
+The background of NTK theory is clearly presented. Theorems appear to be rigorously argued, and the experiments are conducted to validate them.
+
+### Weaknesses
+Although the paper considers a different width and depth scaling than Hanin & Nica (2020), I do not think novelty of this result meets the bar for acceptance at this venue. The scope is limited to CNNs, omitting Transformers, now widely used in practice.
+
+The experiments explore depths up to only 10 layers, which is not particularly deep by modern standards.
+
+### Questions
+If I understand correctly, normalized NTK converge to the all-ones matrix and if so, it would become a deterministic kernel independent of the input data. Is this due to the normalization? And does it imply that the neural network just reduces to a kernel method with a trivial kernel?
+
+Could the authors emphasize the key technical difficulties in the proof of Theorem 3 and explain how they overcame them in plain language?
+
+Missing reference: Please include and discuss “Neural Tangent Kernel Analysis of Deep Narrow Neural Networks” (Lee et al., 2022) in the Related Work section.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper provides a theoretical and empirical analysis of how increasing depth affects the Neural Tangent Kernel (NTK) in infinitely wide, fully-connected ReLU networks. The authors show that as depth $L \to \infty$, the normalized limiting NTK $\bar{\Theta}^{(L)}$ converges to a matrix of ones, implying that all inputs become perfectly correlated in the infinite-depth limit. Despite this kernel degeneracy, the closed-form NTK predictor $f(x) = f_0(x) + \Theta_x^{(L)} [\Theta^{(L)}]^{-1} (y - y_0)$ converges to a finite, well-defined limit due to a cancellation effect between the numerator and denominator terms. Theoretical results are supported with toy experiments that visualize convergence rates and verify monotonic correlation growth.
+Overall, the paper clarifies the limiting behavior of NTKs with depth and its implications for overparameterized models trained in the kernel regime.
+
+### Strengths
+-- Rigorous theoretical grounding, with a clean progression from correlation dynamics to kernel limit to predictor stability.
+
+-- Extends NTK theory by isolating the effect of depth, complementing prior focus on width.
+
+-- Elegant use of normalization and rough differential equations to handle singular kernel limits.
+
+-- Empirical plots and numerical validation reinforce theoretical claims (Fig. 1, lines L432--L446).
+
+-- Results implications: very deep, infinitely wide ReLU nets become less expressive, converging to constant mappings.
+
+### Weaknesses
+-- Experimental section is minimal; only small-scale synthetic tests are shown. A broader empirical sweep would strengthen conclusions.
+
+-- Intuition behind the RDE-based boundedness could be expanded—currently highly technical and somewhat opaque to non-specialists.
+
+-- The convergence rate discussion could quantify how “extremely slow” the approach to 1 is (as noted in L446--L454) using asymptotic bounds.
+
+-- The experimental section and conclusions feel somewhat underdeveloped, leaving the reader wishing for more explicit explanations or additional insights into the implications and experimental findings as per ICLR standards.
+
+### Questions
+-- Can the authors clarify how the convergence rate of $\phi^{(L)} \to 1$ depends on activation nonlinearity—e.g., would smoother activations yield slower or faster kernel collapse?
+
+-- Since the NTK converges to a constant kernel, does this imply that in the deep infinite-width limit, gradient descent loses any data-dependent inductive bias?
+
+-- Minor comments: 1) L051, L052: Proposition 4 and, Theorem 3 do not have hyperlink (which makes it easy to naviagte) and also does not give much insight as what the actually contributions are by just reading the contributing section, can be written better. 2) same issue with L218, no hyperlinks, poorly written ==>
+This, in turn, allow us to aim at characterizing the output of such neural network,as done in the rest of the section. Indeed, from Proposition 2 and Proposition 2 from Jacotet al. (2018), we can immediately observe a few facts regarding the input data:
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/9h2c2rMSY1.md b/human_reviews/9h2c2rMSY1.md
new file mode 100644
index 0000000000000000000000000000000000000000..6a028fce1280a1ebbafcecf91eaae6eb66ace3ac
--- /dev/null
+++ b/human_reviews/9h2c2rMSY1.md
@@ -0,0 +1,130 @@
+## Human Reviewer 1
+
+### Summary
+Spatiotemporal PDEs are being increasingly solved with neural operators. Uncertainty quantification on such predictions, therefore, is not immediately possible as a result of distribution shifts that occur as temporal windows slide. In this vein, previous works have studied conformal prediction under covariate shift. This paper then studied the application of such ideas to this setting, first in the full functional form and then in the discretized setting.
+
+### Strengths
+The paper presents an interesting problem of study: the study of spatiotemporal PDE coverage seems like a worthwhile direction. The exposition of the paper is also very clear, making the paper easy to follow and engage with. The paper also nicely discusses both the functional and the discretized forms of the problem statement.
+
+### Weaknesses
+In the first part of the paper, the authors establish that the TV distance between consecutive steps is maximal in the functional space. I believe the implication of this statement is supposed to be that, therefore, we cannot consider the functional space coverage using ideas from covariate shift. However, the approach of Barbet et. al only establishes that $\mathcal{P}(Y\in\mathcal{C}(X))\ge 1-\alpha-\sum_i w_i d_{TV}(z, z^i)$, which is a lower bound. How can we say anything more strongly than just making claims of this lower bound here?
+
+Moreover, this then motivates studying this problem in a finite-dimensional discretized form. This, however, then just becomes a standard, finite-dimensional time series problem, so I do not see how this becomes any different from a typical finite-dimensional conformal time series problem. Also, Theorem 4.2 appears to be a standard proof from SDEs, so I do not see why it and its proof are provided in the main body of the paper.
+
+Finally, the experimental results appear to be not very compelling: many times, WCP appears to produce extremely conservative prediction regions, having a coverage of 1.0 or close to it at desired coverage levels well below this. The other methods, in contrast, appropriately hit 0.90 initially.
+
+### Questions
+1. How does this particular setting differ from a general time series conformal prediction problem after the PDE has been discretized? Are there particular structures that you can uniquely leverage to develop a method in this setting that cannot be more generally applied? This reduced scope would likely yield more useful methods.
+
+2. Why are the coverages so conservative in this setting? The empirical results seem to indicate over-coverage even before the time steps progress very far.
+
+3. Even though the TV in the functional case is 1.0, does that necessarily mean there is no other form of covariate-shift type adjustments that could fix the miscoverage?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper develops weighted conformal prediction (WCP) for applying conformal prediction to time-dependent PDE surrogate models. The authors prove that in function spaces with time-dependency, distributions at different times can be mutually singular (TV distance = 1), breaking the exchangeability assumption and hence CP coverage guarantees. As a solution, they propose reweighing the nonconformity scores with density ratios to enable exact coverage guarantees. Experiments on three PDEs (univariate, linear, with Gaussian initial conditions) demonstrate that WCP maintains coverage where two baselines, naive CP and LSCI, fail.
+
+### Strengths
+- The problem is significant and well motivated. The authors make a good point in laying out the challenge of covariance shifts in time-dependent PDEs that are common in physics and engineering. Theorem 4.1 was also a clear illustration of this challenge and how existing methods can fail.
+
+- The paper was over-all well organized and easy to follow.
+
+### Weaknesses
+- No real algorithmic or theoretical contribution. Theorem 4.1 proves that for the heat equation with Gaussian initial conditions, the TV distance between solution distributions at any two distinct time points is maximal (equals 1). Theorem 4.2 shows that for discretized linear PDEs with Gaussian initial conditions, the solution distribution at any time t remains Gaussian, with explicitly computable mean and covariance. These two results are not particular novel for PDEs. The authors' method, then, directly applies Barber et al. 2023's weighted conformal prediction algorithm using the likelihoods. The coverage guarantees are from Barber 2023. I fail to see how this algorithm is a novel contribution.
+
+- The scope is limited. The algorithm only applies to _linear_ PDEs with _Gaussian_ (and location-scale) initial conditions, but most physical systems of interest of UQ have nonlinear dynamics (Navier-Stokes, reaction-diffusion with nonlinear terms, etc.). The proposed algorithm require explicit probabilities which makes it not extendable to the more general case.
+
+- Significant weakness and ambiguity in the experiment section. This includes:
+ - What is the target coverage? Why is the target in Fig 3 set at 90% but the target for WCP said to be 99%? Why does WCP's line disappear half way through the horizon? What is $n_\infty$ in Table 1 and how should we interpret it?
+ - Limited experiment setups: only linear, univariate, synthetic experiments. This is a result of the nature and assumption made by the method, but with this set of experiments it's not very convincing that this algorithm is useful in practice.
+ - Lack of comparison to baselines, and discussion of literature. From the PDE literature, there are works that provide probabilistic forecasts (for example [1,2], and the baselines in LSCI). From the CP literature, there are a swath of works that handles time series distribution shift that does not require explicit covariates or local exchangeability [3-6]. They should be compared to show what are the advantages of your algorithm, or at least discussed w.r.t. why they are not applicable to your setup.
+ - It is also questionable that WCP over-covers by so much, often achieving 1.0 coverage with infinite bands. While I respect the authors' honest reporting, this is a significant limitation on the usability of the UQ bands. UQ's goal is calibration and the tendency to over-cover is not desirable. Can you show results of both 90\% and 99\% target coverage?
+ - Some qualitative plots of UQ bands (similar to figure 1) will also help the presentation of results.
+
+[1] Yang, Liu, Xuhui Meng, and George Em Karniadakis. "B-PINNs: Bayesian physics-informed neural networks for forward and inverse PDE problems with noisy data." Journal of Computational Physics 425 (2021): 109913.
+
+[2] Bülte, Christopher, Philipp Scholl, and Gitta Kutyniok. "Probabilistic neural operators for functional uncertainty quantification." arXiv preprint arXiv:2502.12902 (2025).
+
+[3] Gibbs, Isaac, and Emmanuel Candes. "Adaptive conformal inference under distribution shift." Advances in Neural Information Processing Systems 34 (2021): 1660-1672
+
+[4] Angelopoulos, Anastasios, Emmanuel Candes, and Ryan J. Tibshirani. "Conformal pid control for time series prediction." Advances in neural information processing systems 36 (2023): 23047-23074.
+
+[5] Xu, Chen, and Yao Xie. "Sequential predictive conformal inference for time series." International Conference on Machine Learning. PMLR, 2023.
+
+[6] Auer, Andreas, et al. "Conformal prediction for time series with modern hopfield networks." Advances in neural information processing systems 36 (2023): 56027-56074.
+
+### Questions
+See Weaknesses.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper studies how conformal prediction (CP) fails under temporal non-stationarity common in time-dependent PDEs, where calibration and test data are not exchangeable. The authors first prove that, in function-space settings, even simple PDEs (e.g., the 1-D heat equation) produce mutually singular solution distributions across time, making exact coverage guarantees impossible. They then propose Weighted Conformal Prediction (WCP) for discretised PDE surrogates, deriving closed-form Gaussian densities for the evolving solutions and using likelihood-ratio weights to re-establish exact coverage. Experiments on fractional diffusion, backward heat, and reaction–diffusion equations show that WCP maintains nominal 90 % coverage over long horizons, whereas naïve CP and local-exchangeability (LSCI) methods quickly under-cover.
+
+### Strengths
+- Mathematical clarity. The analysis of mutual singularity in function spaces (Theorem 4.1) exposes a genuine limitation of applying CP directly to PDEs.
+
+- Principled solution. The likelihood-weighted approach is a suitable approach to time-dependent distribution shift, avoiding unverifiable “local exchangeability” assumptions.
+
+- Clear writing and sound experiments. The presentation is precise, proofs are rigorous, and empirical results clearly support the claims.
+
+### Weaknesses
+- Limited scope. Theoretical guarantees hold only for linear PDEs with Gaussian initial conditions, where analytic densities exist.
+
+- Incremental novelty. Weighted CP under covariate shift is known (e.g., Barber et al., 2023); the contribution is mainly its application to PDE surrogates, not a new CP framework.
+
+- Narrow experiments. Tests on 1-D synthetic PDEs demonstrate correctness but not scalability or real-world complexity.
+
+### Questions
+- How sensitive is WCP to deviations from Gaussianity or linearity?
+- Can the framework be extended to nonlinear or stochastic PDEs without closed-form densities?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/A4Us8jxVGq.md b/human_reviews/A4Us8jxVGq.md
new file mode 100644
index 0000000000000000000000000000000000000000..fee8907cfd1d19189c76743eba4c8abb89eb0109
--- /dev/null
+++ b/human_reviews/A4Us8jxVGq.md
@@ -0,0 +1,196 @@
+## Human Reviewer 1
+
+### Summary
+This paper study how transformers learn semantic associations during training on natural language data. The authors develop a theory based on training dynamics, specifically using a leading-term approximation of the gradients to analyze the model's weights in the early phase of training. Their central finding is that the weight matrices, like the output $W_O$, the value $V^{(\ell)}$, and query-key $W^{(\ell)}$ can be expressed as compositions of three basis functions derived directly from corpus statistics. These basis functions are bigram maping, that captures the next token co-occurrence ($\bar{B}$); the interchangeability maping, that fnds tokens with similar preceding token distributions (like synonyms or words in the same grammatical class) ($\sum_{\bar{B}}$); and context mapping, that encodes long range co-occurrance between a token and the tokens in its prefix ($\bar{\Phi}$).
+The authors validate this theory first on a 3 layer attention only model trained on TinyStories, and they show that the learned weights have a very high cosine similarity (often >0.99) to their theoretical characterizations. Then, they extend the analysis to the Pythia-1.4B checkpoints, showing that these foundational associations are also learned in larger models, especially during early training and in the later layers.
+
+### Strengths
+- The leading-term gradient approximation is a clever technical innovation that makes an otherwise intractable analysis feasible while maintaining interpretability. The decomposition into three basis functions provides clear mechanistic insight into how different components capture semantic structure.
+- Unlike much prior theoretical work that relies on synthetic data or heavily simplified models, this analysis is grounded in a more realistic setup.
+- The paper provides closed-form expressions for all major weight matrices uniformly across layers, showing how they compose the basis functions differently.
+
+### Weaknesses
+- The theory applies to attention-only transformers, but validation on Pythia requires indirect analysis through covariance matrices of activations rather than direct weight comparison. This introduces an additional layer of approximation and makes it unclear how MLPs and multi-head attention affect the theoretical predictions.
+- The theoretical guarantees only hold for $\mathcal{O}(1/\eta)$ steps in early training. While empirical results show features persist longer, the paper lacks analysis of how and why these features evolve during later training, limiting practical applicability for understanding fully trained models.
+- To achieve theoretical tractability, the analysis relies on certain assumptions, such as "sufficiently small" initialization and bounds on the learning rate and number of steps (as seen in Theorem 4.1). The error bounds for the approximation, while derived, grow over time. This means the exact closed-form expressions are an idealization, and their accuracy naturally decreases as training progresses and the model's state becomes more complex.
+- Experiments use truncated vocabularies (3K for TinyStories, 20K for Pythia) which may not capture the full complexity of semantic associations in real LLMs with vocabularies of 50K+ tokens. The computational tractability argument doesn't fully justify this limitation.
+
+### Questions
+Your leading-term approximation brilliantly explains how associations emerge in the very early stages of training. The empirical results with Pythia suggest these structures persist for some time but also evolve, especially in the earlier layers. What are your thoughts on the mechanisms that drive this evolution away from the initial basis functions? Is it simply the accumulation of higher-order gradient terms, or do you suspect qualitatively new structures, like logical reasoning circuits, are being built on top of this initial associative foundation?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper presents a theoretical and empirical analysis of how semantic associations emerge in transformer-based language models during early training. By analyzing the leading-term approximation of training gradients, the authors derive closed-form expressions for the model's weight matrices. They show that these weights can be characterized by the composition of three interpretable basis functions—bigram, interchangeability, and context mappings—which collectively explain how transformers acquire semantic structure from data. The theoretical claims are rigorously validated through experiments on both the controlled TinyStories benchmark and large-scale models like Pythia-1.4B, demonstrating strong agreement between the theoretically predicted features and the empirically learned weights.
+
+### Strengths
+1. The paper starts from the perspective of gradient flow and utilizes the contextual distribution in the text to explain the implied semantic associations within the parameters. This perspective is very novel and provides an in-depth way of understanding the distributional characteristics of the parameters of transformer-based language models.
+2. The paper is trained on real text, and the experimental results are highly consistent with the theoretical analysis, demonstrating the reasonableness of its results.
+
+### Weaknesses
+1. The paper is validated only on the TinyStories dataset, which I consider insufficient for comprehensive verification.
+2. The training loss on TinyStories remains very high (greater than 5), indicating that the model's learning on this dataset is inadequate and arguably unsuccessful. The value of discussing parameter characteristics under such inadequate fitting conditions is highly questionable.
+3. The description of how theoretical and experimental results are compared in Section 5.2 is difficult to understand. The authors should revise this section and provide more detailed methodological descriptions in the appendix, preferably in an algorithmic format.
+4. The paper uses one-hot encoding instead of the more commonly used embedding encoding. The authors should discuss how this distinction affects their theoretical results, particularly whether the presence of an embedding layer under zero initialization would invalidate their theoretical findings.
+5. Paper [1] also discusses from a gradient flow perspective how the embedding layer is influenced by semantic distributions under small initialization, and its findings share some similarities with certain results in this paper. I believe the authors should discuss the distinctions between their work and [1].
+
+[1] An Analysis for Reasoning Bias of Language Models with Small Initialization, Forty-second International Conference on Machine Learning.
+
+### Questions
+See weakness.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper studies how semantic associations first emerge in attention-based language models by analyzing early training dynamics. Using a leading‑term expansion of the gradients, the authors derive closed‑form approximations for all major weight classes in a self attention only transformer with causal masking and learned relative positional bias.
+shows very high cosine similarity between learned weights and their leading‑term predictions, and an analysis of Pythia‑1.4B on OpenWebText shows strong early training alignment that gradually drifts laterr. Qualitative examples illustrate that the basis functions recover intuitive relations like "fish" <--> "pond/lake".
+
+### Strengths
+* The three basis functions (bigram, interchangeability provide an intuitive, corpus‑linked explanation for what each weight class is learning and how attention and values cooperate early in training
+
+
+* The writing is very clear
+
+* Near perfect cosine agreement on TinyStories over many steps and reasonable agreement in a non-toy sized model (pythia) support external validity. heatmaps/diagrams are clear
+
+### Weaknesses
+* Quantitative validation centers on cosine similarity and selected qualitative token lists. Some broader behavioral evaluations or ablations (e.g., other corpora, tokenizations, or stronger baselines) would further strengthen the claims
+
+* Unless I'm missing something, this doesn't hold well for later stages of training because of drift. That's fine, but I figured I'd raise it. I am not entirely sure how much this is a problem for the scope of the paper. Are there analyses on later stages of training that would be interesting but are blocked by this constraint?
+
+* I would like to see some interventional results showing some practicality: E.g., show that the leading term predictors enable training diagnostics or interventions (e.g., early phase monitoring that forecasts later perplexity or feature formation).
+
+* The theoretical result is clean and realistic for early training, and the empirical results are suggestive. I think the thing holding this paper back right now are scope
+
+### Questions
+N/A
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper studies how semantic associations between tokens emerge during the early training of language models. Focusing on a self-attention-only architecture, the authors derive the leading-order gradient updates and show that the learned weights can be decomposed using three quantities that reflect the statistics of the training corpus: bigram mapping (correlations between consecutive tokens), intercheangiability mapping (correlations induced by similarity of tokens’ previous-token context distributions), and context mapping (average contextual features of tokens across their occurrences). They validate the theory on small attention-only models - where the predicted leading terms match the learned parameters in the early steps - and then analyze embeddings in Pythia models, finding qualitative alignment with the theory in the initial training phase.
+
+### Strengths
+- The paper presents an interesting and, to my knowledge, novel blend of mathematical analysis, numerical experiments, linguistic insight, and mechanistic interpretability. The bottom-up approach of deriving representations from first principles of training dynamics is significant.
+- The paper analytically derives a leading-order approximation of the weight evolution and provides clear, intuitive interpretations for each component.
+- The theory does not rely on synthetic data models. Rather, the basis functions are derived directly from the statistics of the language corpora.
+- The paper is well-written and its assumptions are clearly outlined.
+
+### Weaknesses
+- The primary weakness is that the theory still relies on strong architectural assumptions. It is derived only for self-attention-only transformers. This analysis does not account for the impact of MLP layers, which are important components of present models. While this is a limitation, it is an understandable simplification necessary to make the analysis tractable, and future work might build upon this to relax these assumptions.
+
+### Questions
+- Th. 4.1 provides formal bounds on the error between the learned weights and their leading-term approximations. How tight are these error bounds in practice? For instance, in the TinyStories experiment.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+This paper addresses a critical gap in transformer interpretability: how semantic associations (e.g., "bird"-"flew", "country"-"capital") emerge during training of attention-based language models (LLMs) on natural language data. Unlike prior work that relies on synthetic data, simplified architectures, or non-standard training, the authors ground their analysis in realistic settings (natural text distributions, standard transformers with positional encoding, and standard next-token prediction loss). Their key technical innovation is leveraging a gradient leading-term approximation to derive closed-form expressions for transformer weights in the early training stage.
+
+The authors show that all transformer weights (output, value, query-key, positional encoding) can be characterized as compositions of three interpretable basis functions: (1) bigram mapping (captures next-token dependencies), (2) token-interchangeability mapping (reflects functional similarity, e.g., synonyms), and (3) context mapping (encodes long-range prefix-suffix co-occurrence). They validate this theory empirically: on a 3-layer transformer trained on TinyStories, learned weights maintain cosine similarity ≥0.9 with theoretical predictions even beyond early training; on real-world LLMs (Pythia-1.4B trained on OpenWebText), early-stage activations and attention weights strongly align with the proposed basis functions.
+
+### Strengths
+1. Realism of the theoretical setup: By retaining critical components of practical transformers (positional encoding, causal masking, residual streams) and using natural text, the paper avoids the over-simplifications that limit the generalizability of prior work.
+
+2. Mechanistic interpretability: The basis functions provide a causal explanation for semantic association (e.g., the value matrix combines context and bigram mappings to encode long-range semantics), rather than just correlational observations.
+
+3. Strong empirical validation: The experiments are comprehensive, testing the theory on both small controlled models (TinyStories) and large real-world LLMs (Pythia-1.4B), with quantitative (cosine similarity) and qualitative (token correlation examples, Figure 5) evidence.
+
+4. Foundational value for future work: The closed-form expressions and basis functions can serve as a starting point for further research (e.g., diagnosing bias in LLMs by analyzing deviations from the theoretical bigram/context mappings, or designing more interpretable architectures).
+
+### Weaknesses
+1. Limited analysis of later training stages: While the paper notes that theoretical features persist beyond early training (e.g., cosine similarity ≥0.7 after 100 epochs in TinyStories), it does not explore why or how weights drift from the leading terms. Understanding this drift (e.g., whether it corresponds to higher-level semantic learning) would strengthen the theory’s completeness.
+
+2. Multi-head attention and MLP layers are understudied: The Pythia experiment adapts the analysis to multi-head attention by averaging attention heads, but it does not explore how individual heads or MLP layers interact with the proposed basis functions. For example, do some heads specialize in bigram mappings while others focus on context?
+
+3. Lack of causal interventions: The empirical validation relies on correlational measures (cosine similarity, covariance), not causal tests (e.g., ablating the bigram mapping component of weights to see if next-token prediction degrades). Causal interventions would more strongly confirm that the basis functions are necessary for semantic associations.
+
+### Questions
+1. Drift in later training stages: You note that weights drift from leading terms as training progresses (Figure 6). Can you characterize this drift? For example, does it correspond to learning higher-level semantics (e.g., syntax, pragmatics) that build on the initial basis functions, or does it reflect overfitting to idiosyncrasies in the data?
+
+2. Multi-head attention specialization: In Pythia, you average attention heads to compute token correlations, but prior work shows heads specialize in different tasks. Do individual heads align with specific basis functions (e.g., some heads focus on bigram mappings, others on context)? If so, how does this specialization emerge?
+
+3. Causal validation: Your analysis uses correlational measures (cosine similarity) to link learned weights to theoretical terms. Have you tried causal interventions (e.g., modifying the bigram mapping component of the output matrix and measuring changes in next-token prediction accuracy for bigram-dependent pairs like "bird"-"flew")? Such tests would strengthen the claim that the basis functions are functional, not just correlational.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/AB3jM3iMaW.md b/human_reviews/AB3jM3iMaW.md
new file mode 100644
index 0000000000000000000000000000000000000000..d8cede4954bfcc1b5dd334d12ae7902eaf1f77f4
--- /dev/null
+++ b/human_reviews/AB3jM3iMaW.md
@@ -0,0 +1,166 @@
+## Human Reviewer 1
+
+### Summary
+The paper proposes an approach for future link prediction in temporal graphs (called link forecasting). It finetunes an LLM (Qwen3-4B) for this task via reinforcement learning. All textual data is removed from the graphs and replaced by IDs.
+
+### Strengths
+- Original idea of using LLMs for link forecasting
+- Strong results compared both to other LLMs and compared to TGNNs
+- Explanation traces are provided and evaluated in a user study
+- Paper is well-structured
+
+### Weaknesses
+- The motivation for using an LLM remains unclear (apart from some success in preliminary work)
+
+### Questions
+- What is the motivation of using an LLM if all textual data is removed?
+- Do you have a hypothesis why your approach works so well despite removing all textual data?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper constructs temporal graphs in natural language and finetunes LLMs with reinforcement learning on the dataset. The finetuned model outperforms larger LLMs under the proposed pMRR and LLM-as-a-Judge metrics.
+
+### Strengths
+The paper presents that the reasoning ability of LLMs on temporal graphs can be enhanced by RL training, which is not explored by previous works of LLM on temporal graphs, which mainly focus on evaluation and ICL. The full pipeline, from data construction to training and evaluation, is reasonable and easy to follow.
+
+### Weaknesses
+The main weakness is a lack of innovation and further insights. The idea that the graph reasoning ability of LLMs can be incentivized through reinforcement learning has been illustrated in previous work. Although the authors claim that previous works focus on static graphs while they target temporal graphs, they don't show what difference it will bring to the reasoning or further insights (e.g., what is special for temporal graphs but not static graphs). In the whole pipeline, the innovation is quite limited. For example, the algorithm is the well-established GRPO, and the LLM-as-Judge evaluation is also commonly used.
+
+### Questions
+1. The base models only include Qwen3-4B and Qwen3-0.6B. What's the performance of the model finetuned from a larger Qwen3-8B?
+
+2. What's the performance of the ReaL-TG models on OOD benchmarks, e.g., unseen temporal graph benchmarks?
+
+3. Does the training harm or enhance the general reasoning ability of base models, e.g., the math benchmarks?
+
+4. How does the RL training increase the reasoning of LLMs on temporal graphs? Can you show some intuitive examples?
+
+5. The reason for proposing pMRR is to evaluate the over-generation of LLMs. Can the recall in F1 play a similar role?
+
+6. Why don't you use the proposed metrics as rewards during RL training?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper introduces Real-TG, which employs reinforcement learning with verified rewards (LRVR) like GRPO to fine-tune an LLM for more effective explainable link forecasting on anonymized temporal graphs. It formulates the link forecasting as the QA tasks and designs a specific prompt to instruct LLMs to identify the destination node. The authors also propose a metric (i.e., pMRR) to evaluate the prediction capability of LLMs (as LLMs can provide discouraging over-generation). Extensive experiments show that Real-TG-4B achieves good results across different vanilla LLMs and traditional link forecasting methods.
+
+### Strengths
+* The idea of introducing LRVR to LLM-based temporal graph models is interesting.
+* The proposed fine-tuning paradigm, Real-TG, is simple and effective.
+* The paper is well-written and easy to follow.
+
+### Weaknesses
+* The novelty of the proposed Real-TG is limited and lacks technical innovation. In Real-TG, the QA formulation [1], the GRPO pipeline [2], the $\alpha$-temporal random walk [3], and the LLM-as-a-Judge evaluation [4] are introduced from existing works. All these mechanisms resemble existing works and do not introduce principled advances in LLM-based temporal graph learning or RLVR.
+* The motivation of the model component design is unclear.
+ * Why is RL chosen instead of SFT? In the literature on large reasoning models, RL is typically used to optimize preferences or human-aligned objectives; however, for tasks with a single correct answer, SFT may be more appropriate. The authors should clarify why RL is necessary and what concrete benefits it confers in this setting.
+ * Why adopt $\alpha$-temporal random walks rather than simpler k-hop neighborhoods?
+ * Why use F1 as the reward metric rather than other ranking/IR metrics (e.g., MRR)? In equation 1, do the authors compute this F1 over a single pair of samples, since F1 fundamentally requires aggregation over multiple samples? An illustrative example may help with a better understanding of the paper.
+* The GRPO procedure is known to be sensitive to hyperparameters. Does Real-TG also suffer from such instability?
+* Plots showing reward vs. training step would greatly strengthen confidence in the RL training procedure.
+* Why not conduct experiments in the recently proposed benchmark [5] and compare the models that also utilize LLMs for temporal graph learning [6]?
+
+[1] Are Large Language Models Good Temporal Graph Learners?
+
+[2] DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models
+
+[3] Zebra: When temporal graph neural networks meet temporal personalized pagerank
+
+[4] Judging Llm-as-a-judge with Mt-bench and Chatbot Arena
+
+[5] DTGB: A Comprehensive Benchmark for Dynamic Text-Attributed Graphs
+
+[6] Unifying Text Semantics and Graph Structures for Temporal Text-attributed Graphs with Large Language Models
+
+### Questions
+No
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper tackles link forecasting on temporal graphs, emphasizing explainable predictions using large language models that generalize to unseen graphs without retraining. It introduces ReaL-TG, a reinforcement learning framework that fine-tunes LLMs with Grouped Regularized Policy Optimization and an outcome-based F1 reward to encourage self-exploration of reasoning strategies from graph structures. Core contributions include the Temporal Context Graph Selection algorithm for relevant subgraph extraction, a QA formulation for the task, and a new evaluation protocol featuring penalized mean reciprocal rank alongside an LLM-as-a-Judge system assessing faithfulness, logical consistency, and answer-explanation alignment. Main results demonstrate that the fine-tuned ReaL-TG-4B model outperforms larger frontier LLMs and traditional temporal graph neural networks on prediction metrics and reasoning quality across seen and unseen datasets from the Temporal Graph Benchmark.
+
+### Strengths
+- The paper introduces ReaL-TG, a complete RL-based framework designed to fine-tune LLMs for explainable link forecasting on temporal graphs. This is a novel approach to a task where prior methods lacked explainability.
+- The experimental results are impressive. The fine-tuned 4B model (ReaL-TG-4B) significantly outperforms its base model (Qwen3-4B) and, notably, much larger frontier LLMs like Llama3.3-70B and GPT-5 mini on overall prediction accuracy.
+- The framework demonstrates excellent generalization. ReaL-TG-4B achieves the highest MRR and PMRR on the two "unseen" TGB datasets, outperforming all baselines.
+- The paper successfully demonstrates that ReaL-TG not only improves prediction accuracy but also reasoning quality.
+
+### Weaknesses
+- The paper provides an insightful observation of "reward hacking" in the smaller ReaL-TG-0.6B model, which "justifies its predictions by claiming '(uq, vq, tq) has already been seen'". This is a critical finding for outcome-based RL methods. Despite its importance, this phenomenon is not systematically measured. The paper provides no evidence or quantification to demonstrate it.
+- The approach injects graph context purely as text; while explainable, it may drop important structural cues vs. learned embeddings.
+- Relies solely on six TGB datasets, which may share similar characteristics like social or transaction networks, limiting generalization claims.
+- Training data sampled from only four datasets with 1,000 queries, potentially insufficient for diverse temporal patterns.
+- Unseen datasets (uci, enron) are smaller, with fewer involved nodes, possibly underrepresenting complex scenarios.
+
+### Questions
+- Your definition in Section 4 states PMRR penalizes over-generation, resulting in a lower score than MRR. However, in Table 2, several large baseline models (e.g., Llama3.3-70B, GPT-5 mini) show a PMRR score that is higher than their MRR score. Could you please confirm if the description of PMRR in Section 4 is correct, or explain the mechanism by which over-generation leads to a higher PMRR score.
+- Could you please briefly elaborate on the path that makes $(e_2, t_2)$ a 3-hop neighbor in the context of Figure 2?
+- Can you clarify how the termination probability $\alpha$ and the decay factor $\beta$ interact in the random walk?
+- Why was the F1 score chosen as the reward function? Did F1 prove uniquely robust to this hacking behavior?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/BDNctVKwuD.md b/human_reviews/BDNctVKwuD.md
new file mode 100644
index 0000000000000000000000000000000000000000..f4db77c9279cd8a040dd871eab2c3f92929433a2
--- /dev/null
+++ b/human_reviews/BDNctVKwuD.md
@@ -0,0 +1,140 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a interpretability framework to improve feature alignment in CNNs. The authors theoretically demonstrate that HiResCAM explanations are not unique because of the softmax activation, and adding a shift via a common matrix
+ can distort attention maps. To solve this, they propose ContrastiveCAMs, which remove this redundancy by producing shift-invariant, attention maps that more accurately highlight discriminative image regions. Experiments show that models depend on non-core, irrelevant regions, specially when regions occupy small portions of images.They then develop Core-Focused Cross-Entropy, a modified loss function that suppresses attention to non-core areas while also making target features more relevant. The method performed good across multiclass and binary classification tasks and some segmentation benchmarks.
+
+### Strengths
+- The work is theoretically grounded. They theoretically show that HighResCAM explanations are not uniquely determined because of arbitrary shifts via softmax invariance, and provide formal proofs.
+- The paper proposes a solution by connecting interpretability output with training objective to improve feature alignment. Such as actionable interpretability technique is impressive.
+
+### Weaknesses
+- This paper investigates CNNs, not ViTs. I think the whole field has shifted to ViTs long time ago. I am not saying CNNs are obsolete, but having ViT variants (along with CNN variants) are a must now. What about CLIP models?
+- The paper investigates one (out of many) variation of CAM (here, HighResCAM ), and HighResCAM is not even a published work. I am not sure whether this problem is worth investigating in the first place. What about other CAM methods? What about other explanation methods (saliency-based)?
+- The finding is not novel, in essence similar works have observed the same thing, see [R1]. This work is not even cited.
+- There are many ways of explanation-guided learning. See [R2]. The authors did not consider these works in their comparisons. Is their method better to [R1, R2 methods]? Does it work on other explainability methods?
+- There are no results on ImageNet. The authors report on Hard-ImageNet but not ImageNet. Does the method improve performance on the ImageNet?
+- The introduction lacks motivation. It lists some works and their importances, and then jumps directly to "In this work, we develop...".
+- The related work section provides some similar works but the most important part of that section is missing; the authors should clearly state the difference between the related works and their own work, how they tackle the problems and the limitations of those works, and why their method is better.
+
+
+[R1] Consistent Explanations by Contrastive Learning
+[R2] Studying How to Efficiently and Effectively Guide Models with Explanations
+
+### Questions
+I think this paper is not ready for ICLR due to the weaknesses mentioned. In particular, it investigates only CNNs, and a very special case (HighResCAM) of a very special case (CAM) of the wide variety of explainability methods. Furthermore, the paper lacks motivation, it has problems in how the related work is written, and there are many comparisons with key works missing. My decision will therefore be a reject.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper investigates the reliability of HiResCAM, a commonly used deep learning interpretability method that generates attention maps highlighting image regions important for a model’s predictions. The authors theoretically demonstrate that HiResCAMs are not uniquely determined and admit arbitrary, spurious
+
+To overcome this, the authors propose ContrastiveCAM, a new visualization technique that is invariant to the spurious shift and provides class-versus-class contrastive explanations, offering more precise insight into what differentiates one class from another.
+
+Using these improved explanations, they discover that networks frequently attend to irrelevant image regions. To correct this, they introduce Core-Focused Cross-Entropy, a modified loss function that encourages attention on core (label-relevant) image regions and suppresses attention elsewhere, thereby improving feature alignment between visual regions and class semantics.
+
+Experiments on Hard-ImageNet and Oxford-IIIT Pets show that ContrastiveCAM produces more faithful and robust attention maps, and that Core-Focused Cross-Entropy leads to better predictive performance derived from semantically meaningful regions.
+
+### Strengths
+The authors identify two main issues in existing methods. From a theoretical perspective, they reveal a limitation of HiResCAM, showing that its attention maps are not uniquely determined. To overcome this, they propose ContrastiveCAM, which eliminates this ambiguity. They also observe that networks often focus on irrelevant image regions, and to address this, they introduce Core-Focused Cross-Entropy, a loss function that encourages attention on label-relevant areas.
+
+Experiments conducted on three different datasets demonstrate the effectiveness of their approach, particularly the Core-Focused Cross-Entropy loss, in improving interpretability and performance.
+
+### Weaknesses
+The authors discuss the limitation of HiResCAM only from a theoretical perspective, without providing experimental evidence to validate their claim.
+
+Furthermore, they do not convincingly demonstrate that ContrastiveCAM outperforms other modern CAM-based methods. Their comparisons are limited to GradCAM, which is relatively outdated, while many recent and more advanced CAM variants could have been included for a more comprehensive evaluation. In addition, the paper lacks experiments directly comparing ContrastiveCAM and HiResCAM, making it difficult to assess the claimed improvements.
+
+Finally, although the authors claim to have improved feature alignment in convolutional networks, their experiments are conducted only on ResNet. Evaluating their approach on a broader range of convolutional backbones would provide stronger and more generalizable evidence for their conclusions.
+
+### Questions
+Number of examples used per dataset for quantitative results is unclear — needs clarification.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This work introduces an improvement over HiResCAM methodology through contrastive alignement. Experiments are conducted on Hard ImageNet. and Pets and Pascal VOC. It is mostly compated to GradCAM and HiResCAM. ResNet50 backbone is only used for validation.
+
+### Strengths
+The description of the work is clear. And the attribution-based explanations are important research field.
+
+### Weaknesses
+This work has a lot of issues that I am worried about:
+
+- first claim is that HiResCAM are popular. Unfortunately I could not find that even this method was published. Only an arxiv version from 2021. And even so, they are cited by 208 works on Google Scholar, and when we will compare it to other CAM methods such as GradCAM (over 30k) and GradCAM++ (over 4k).
+
+- Lack of baselines, GradCAM is a really outdated method, and recent attribution method are LeGrad [1], OMENN [2] or CheferLRP [3].
+
+- Lack of other backbones in experimentations, especially ViTs. Other work do have them.
+
+- Lack of contextualization, broader discussion about LRPs, other CAMs and other attribution-based methods such as B-Cos [4] are missing.
+
+- Visualizations of explanations are not convincing, and there is no experimentation to prove it is better.
+
+- There is no user study to showcase that users better perceive those explanations.
+
+- No XAI benchmarks such as FunnyBirds [5]
+
+[1] Bousselham, Walid, et al. "Legrad: An explainability method for vision transformers via feature formation sensitivity." Proceedings of the IEEE/CVF International Conference on Computer Vision. 2025.
+
+[2] WrĂłbel, Adam, MikoĹ Janusz, and Dawid Rymarczyk. "OMENN: One Matrix to Explain Neural Networks." arXiv preprint arXiv:2412.02399 (2024).
+
+[3] Chefer, Hila, Shir Gur, and Lior Wolf. "Transformer interpretability beyond attention visualization." Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 2021.
+
+[4] Böhle, Moritz, Mario Fritz, and Bernt Schiele. "B-cos networks: Alignment is all we need for interpretability." Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 2022.
+
+[5] Hesse, Robin, Simone Schaub-Meyer, and Stefan Roth. "Funnybirds: A synthetic vision dataset for a part-based analysis of explainable ai methods." Proceedings of the IEEE/CVF International Conference on Computer Vision. 2023.
+
+### Questions
+Seeing missing baselines, general not backed up by the literature statements and poor comparisons, I do not got into much methodological details as I do not that see this work can improved during rebuttal period enough to be ready for publishing.
+
+I put more details in the weaknesses section showcasing the limitations of the work, especially contextualization, validation of the method and strong statements.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/BzqkbJTsbq.md b/human_reviews/BzqkbJTsbq.md
new file mode 100644
index 0000000000000000000000000000000000000000..82199581e772cadc198236055c0718e192bd0b9b
--- /dev/null
+++ b/human_reviews/BzqkbJTsbq.md
@@ -0,0 +1,166 @@
+## Human Reviewer 1
+
+### Summary
+This paper redefines style transfer as a weak-label guidance problem and image super-resolution / deblurring as degraded-label guidance. It argues that these existing methods are typically tailored to specific tasks, lack generalization and transferability, and often rely solely on loss-based optimization while neglecting underlying domain priors. To address this limitation, the authors propose a unified framework that leverages data knowledge inherent to each task and process knowledge extracted from the reverse diffusion process to solve image restoration and style transfer tasks jointly. They claim that unifying these two tasks is inherently challenging because style transfer depends on abstract style information, whereas restoration tasks use strong, explicit conditioning. Furthermore, they critique loss-gradient-based guidance methods, emphasizing that loss values may not accurately reflect image fidelity and are vulnerable to error propagation. Their method interpolates between the noised label prediction and the generated image from the reverse diffusion process at each step, while simultaneously enforcing label information through a loss computed between the predicted $x_0$ and the target $y$
+
+### Strengths
+- This paper addresses an important and timely problem: unifying weak-label (style transfer) and degraded-label (image restoration) tasks under a single diffusion-guided framework.
+- The proposed approach, integrating data knowledge and process knowledge, is conceptually innovative and could provide new insights for handling tasks with imperfect or indirect supervision.
+
+### Weaknesses
+- The motivation for unifying two inherently distinct tasks, style transfer and image restoration, is not sufficiently substantiated. The authors (L99-L111) suggest potential knowledge transfer between the two, but no empirical evidence or references are provided. In fact, these tasks possess fundamentally different supervision properties: style transfer relies on weak, abstract cues, whereas restoration requires high-fidelity alignment with the reference. This discrepancy raises concerns about negative transfer when attempting to integrate both under a single framework. Including empirical evidence or prior works demonstrating positive transfer between these tasks would strengthen the argument.
+- The inclusion of task-specific components, such as the label-processing function $M$ and hyperparameters like $\eta_1$, appears to contradict the paper’s claim of a unified framework. If these elements must be individually tuned per task, the true level of unification remains ambiguous.
+- In L263, the authors briefly compare their approach with SDEdit, but the described mechanism, mixing the noised conditioning image during the diffusion process, closely resembles the method proposed in ILVR [a]. A proper citation and discussion of ILVR should therefore be included for completeness.
+
+Minor Weaknesses
+
+- The deblurring setup assumes a Gaussian blur kernel, which may be an overly restrictive assumption and limit general applicability.
+- The paper seems to inconsistently use \citet and \citep throughout; all citations should be revised for consistency according to the chosen bibliography style.
+
+[a] Choi, Jooyoung, et al. ILVR: Conditioning Method for Denoising Diffusion Probabilistic Models., CVPR 2021
+
+### Questions
+See weaknesses
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes DPG, which is a unified guideline framework for tasks with incomplete labels, covering both weak label settings (e.g., style transfer) and degraded label settings (e.g., super-resolution, denoising). The core idea is (1) to incorporate “data knowledge” by diffusing the (possibly processed) label itself and incorporating it into the early steps of the reverse diffusion process, and (2) to enforce “process knowledge” through a stepwise constraint, whereby each step of denoising improves the label alignment compared to the previous step. Experiments on style transfer and inverse problems show comparable qualitative and quantitative results.
+
+### Strengths
+- The proposed DFG can be used for stylization, SR, and de-noising, especially without changing the architecture. In addition, DFG can be easily applied to the existing reverse diffusion process.
+- The paper distinguishes between “what to inject" (signal derived from the label), “when to inject” (early steps), and “how to keep progress" (stepwise constraint). This modular presentation makes the pipeline easy to understand.
+
+### Weaknesses
+- The authors redefine stylization as “weak label guidance” and classic inverse problems (e.g., super-resolution, denoising) as “degraded label guidance,” which differs from established usage in the computer vision literature. Using the available measurement/observation $y$ as a guide during the reverse diffusion process is already common practice in existing algorithms for both stylization and inverse problems. Therefore, this work cannot be considered the first to "unify" these approaches; such a formulation risks confusing the readership rather than clarifying the contribution.
+- To capture the measurement/observation inforamtion, $z_{0|t}$ is refined using eq. (9). This objective function $\ell_1 (z_{0|t}, y)$ is already frequently used to improve the performance of stylization and inverse problems. This cannot be considered a novelty of the proposed DPG.
+- For process knowledge integration, $\alpha_\text{margin}$ would strongly influence the performance of tasks. Depending on other hyperparameters such as $T_1$, $\eta$, and $\gamma$, the quality of results may change. However, the authors do not provide any ablation studies. They just offer simple guidelines in the supplementary material. Based on the currently available information, the algorithm cannot be reproduced.
+- The qualitative comparisons presented in the paper cannot confirm that the proposed DPG clearly outperforms existing algorithms. Furthermore, the image quality is not sufficient to compare the algorithms.
+
+### Questions
+- For the data knowledge integration, why are two linear interpolations fundamentally required in eq. (7) - (i) mixing the latent ($z_t$ and $\hat{c}_t$) and (ii) mixing the predicted noise (${\epsilon}(z_t, \cdot)$ and $\epsilon(c_t, \cdot)$? In other words, what stability principle makes both convex combinations necessary together, rather than one of them (or another mechanism) being sufficient?
+- How high are the runtime and memory requirements of DFG compared to the standard reverse diffusion processes and existing algorithms?
+- The ablation studies in relation to the hyperparameters
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+DPG is a training-free guidance method for “imperfect-label” problems: both weak labels (like a style image) and degraded labels (like low-res or blurred inputs). It first applies a simple task-specific pre-process to the label (e.g., upsampling or Wiener deblur). In the early denoising steps only, DPG injects “data knowledge” by blending that noised label with the current latent and by mixing its predicted score with the model’s normal score, giving the sampler scale-matched structural hints without hard constraints. At each step, a task loss nudges the current clean prediction toward the label (e.g., VGG/CLIP losses for style; re-degradation consistency for SR/deblur). Across the whole trajectory, DPG adds “process knowledge” via a margin term that enforces step-to-step improvement in the task loss, which suppresses zig-zagging and error accumulation.
+
+### Strengths
+- Novelty on label integration: forward-diffusing the label and blending it for additional integration of the label seems interesting. While I am not fully convinced why this should work well, it seems novel.
+- Performance: compared to baselines, DPG seems to be superior on various tasks.
+
+### Weaknesses
+- Unfortunately, the paper format doesn't follow ICLR guidelines yet. The guidelines say as follows: ```Citations within the text should be based on the \texttt{natbib} package
+and include the authors' last names and year (with the ``et~al.'' construct
+for more than two authors). When the authors or the publication are
+included in the sentence, the citation should not be in parenthesis using \verb|\citet{}| (as
+in ``See \citet{Hinton06} for more information.''). Otherwise, the citation
+should be in parenthesis using \verb|\citep{}| (as in ``Deep learning shows promise to make progress
+towards AI~\citep{Bengio+chapter2007}.'').``` To follow this guideline, the first sentence of the introduction section should start with "In recent times, diffusion models (DMs) (Ho et......)". Unfollowing this ICLR format guideline makes it hard to read the paper.
+- DPG introduces many hyperparameters, because it should determine 1) mixing weights, 2) early-step window, 3) margin, and 4) inner step sizes. If this parameter should be changed according to tasks, the author's main claim that DPG is a generalizable framework for weak-label and degraded-label tasks should not hold, because this means not a generalizable framework but an adjustable framework according to tasks.
+- Justification depth: While intuitions are clear, the paper lacks a deeper analysis of line 250: "By adding noise and applying guidance, we let the model select the most relevant information for the task." My question is whether just mixing the noisy label is enough to change the model's behavior to select the most relevant information. In the rebuttal and discussion phase, I would like to discuss this with the author and revise the paper to correctly understand the reader. In current form, I am more towards that just mixing is not enough to enforce the model to choose relevant information only.
+
+### Questions
+- In Appendix, I found that the hyperparameters should be changed according to tasks. Is DPG sensitive to hyperparameter changes?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces DPG (Diffusion Process Guidance), a training-free framework for improving diffusion model guidance in imperfect-label tasks such as style transfer, super-resolution, and deblurring.
+DPG combines data knowledge, by injecting diffused representations of imperfect labels into early denoising steps, and process knowledge, by enforcing progressive consistency across timesteps.
+This unified approach refines diffusion trajectories without task-specific tuning, achieving better perceptual quality and fidelity across diverse restoration and translation tasks.
+
+### Strengths
+The paper presents a unified and training-free framework that creatively combines data- and process-level knowledge for diffusion guidance.
+The idea of injecting diffused label information and enforcing progressive alignment offers a novel and generalizable formulation across multiple imperfect-label tasks.
+Experiments are comprehensive and consistent, showing clear improvements in perceptual quality.
+The paper is well-written and easy to follow, with solid motivation and clear methodological structure.
+
+### Weaknesses
+1. **Clarity and originality of the “unified framework” claim.**
+ While the paper frames DPG as a unified, training-free guidance framework, several prior works have already explored similar directions. For example, *Manifold Preserving Guided Diffusion* (ICLR 2024) formulated a single training-free framework that covers super-resolution, deblurring, face-ID, CLIP, and style guidance—all without an explicit forward operator. Thus, the novelty of unification alone may be limited. The introduction dedicates considerable space to emphasizing potential advantages of such unification, but the paper would benefit from demonstrating concrete benefits (e.g., improved generalization across tasks or reduced hyperparameter tuning) rather than discussing them conceptually.
+
+2. **Task-specific dependency of the mapping function ( M ).**
+ Although the framework is described as general, it still requires defining a mapping function ( M ) to transform task-specific labels ( y ) into an image-like form. This step is not always straightforward and may vary considerably across tasks. In some inverse problems (e.g., phase retrieval or Fourier-domain tasks in *Diffusion Posterior Sampling*), such a mapping is not directly feasible, which somewhat limits the claimed generality of the approach.
+
+3. **Missing discussion and comparison with closely related work.**
+ The *Manifold Preserving Guided Diffusion* paper—arguably the most methodologically similar prior work—is not cited or discussed. That work also introduces an ( x_0 )-alignment loss with target information, conceptually close to Equation (9) here. Including a citation, a brief discussion, and possibly a quantitative comparison (e.g., in Fig. 4 or Table 1) would clarify the distinction between DPG and prior frameworks and make the contribution positioning clearer.
+
+4. **Need for deeper analysis of the core components.**
+ The main novelty appears to lie in the *Data Knowledge Integration (DKI)* and *Process Knowledge Integration (PKI)* modules, yet their effects are not analyzed in depth.
+ – For **DKI**, injecting label information during early denoising is an intuitive and appealing idea, particularly since early predictions are often blurry and unstable. However, the ablation table (Table 2) seems inconsistent—entries (b) and (c) report significantly lower PSNR than the “w/o D” or “w/o P” variants, which might be a reporting error.
+ – To help readers better appreciate DKI’s role, it would be valuable to visualize several denoising trajectories, comparing predicted ( x_0 ) with and without DKI. Such qualitative evidence would make the mechanism’s effect clearer and strengthen the empirical analysis.
+
+### Questions
+- Basically, all points mentioned in the Weaknesses section.
+- The role of ( $\alpha_{\text{data}}$ ) is intuitively clear—it controls how much information is drawn from the label—but the meaning of ( $\gamma_{\text{data}}$ ) is less so. It seems analogous to a CFG-style guidance term interpolating between predictions from label-mixed and original latents. Why is this additional guidance needed if prediction from the label-mixed latent alone is already available? What new information is obtained from extrapolating between the two predictions? Given that this doubles the computational cost, please justify the necessity of this step and, if possible, provide qualitative or quantitative results across several key tasks for different ( $\gamma_{\text{data}}$ ) values.
+
+If I have misunderstood this mechanism, I would welcome clarification. My rating could increase accordingly.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/CrCPeM5fRB.md b/human_reviews/CrCPeM5fRB.md
new file mode 100644
index 0000000000000000000000000000000000000000..2767635267fe672fc6b4089e27e309d2dbd860dd
--- /dev/null
+++ b/human_reviews/CrCPeM5fRB.md
@@ -0,0 +1,155 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces the Signal Dice Similarity Coefficient (SDSC), a structure-aware metric for time-series self-supervised learning. SDSC extends the Dice–Sørensen coefficient, widely used in image segmentation, to signed continuous signals by (1) gating overlaps with a (smoothed) Heaviside on sign agreement between prediction and target, and (2) accumulating pointwise intersections via a $\min(\|E\|,\|R\|)$ operation normalized to $[0,1]$. The paper further proposes a hybrid loss that combines SDSC with MSE, weighted by uncertainty-based coefficients, and evaluates both as reconstruction objectives within a SimMTM pretraining framework.
+
+### Strengths
+- **Conceptual originality:**: Extending Dice coefficient to continuous, signed time-series is intuitive yet non-trivial. The proposed formulation yields a bounded, symmetric, and interpretable metric within the range $[0,1]$.
+- **Design rationale**: Using $\min(\|E\|,\|R\|)$ with a Heaviside gating directly targets polarity issues and reduces pure amplitude bias, which are key limitations of conventional MSE/MAE.
+- **Efficiency and simplicity**: SDSC avoids explicit temporal alignment or complex dynamic programming, making it lightweight and easy to implement compared to SoftDTW or DILATE.
+- **Hybrid loss formulation**: The uncertainty-weighted combination of SDSC and MSE provides a balanced approach that couples structure-awareness with amplitude precision.
+
+### Weaknesses
+1. **Narrow definition of "structure"**: SDSC captures only pointwise magnitude overlap under sign gating, overlooking broader structural properties such as local waveform shape and phase alignment. Consequently, it lacks time-shift/warping tolerance—small temporal lags can significantly reduce the score, contradicting the intended “structure-aware” characterization.
+2. **Offset bias**: When both signals share the same polarity or a strong DC offset, $H(E\cdot R)\approx1$ holds broadly, leading to inflated similarity even when shapes differ.
+3. **Zero-crossing noise and stability**: Around near-zero amplitudes, the Heaviside gating becomes highly noise-sensitive, causing unstable or vanishing gradients. Although the authors acknowledge gradient vanishing and describe it as robustness, this more likely indicates blindness to misalignment rather than genuine robustness.
+4. **Evaluation mismatch**: If MSE is said to fail at capturing structure, the evaluation should include structure-aware metrics such as Pearson correlation, spectral coherence, or STFT/Mel-cosine similarity. Relying solely on MSE/MAE weakens the empirical claim of structural fidelity.
+5. **Limited baselines**: The work omits direct comparisons with established structure-aware objectives. Simply stating these are "computationally heavy" is insufficient. An explicit time-vs-accuracy trade-off or short-sequence comparison would strengthen the argument.
+6. **Gradient analysis limitations**: Reporting only gradient norms does not characterize optimization behavior. The analysis should also consider gradient direction alignment, variance, or loss-landscape smoothness to assess stability.
+
+### Questions
+1. Could the authors include experiments with timing shifts or mild time warping, and compare SDSC against MSE, SoftDTW, and DILATE?
+2. Beyond pointwise overlap, could you report additional structure-sensitive metrics to substantiate the "structure-aware" claim both at pretraining and downstream evaluation stages?
+3. Have you explored mean-removal preprocessing or frequency-domain SDSC to mitigate offset bias?
+4. Could you provide a practical guideline summarizing when SDSC, MSE, or the hybrid loss is preferred (i.e., amplitude-critical vs. structure-critical regimes)?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces the Signal Dice Similarity Coefficient (SDSC), a structure-aware metric for time series self-supervised representation learning that addresses limitations of distance-based objectives like MSE. SDSC extends the Dice Similarity Coefficient from image segmentation to continuous temporal signals by quantifying structural agreement through signed amplitude intersections.
+
+### Strengths
+1. The paper is relatively simple and easy to understand.
+
+2. Experiments span multiple tasks (forecasting, in-domain classification, cross-domain classification), settings (frozen encoders, fine-tuning), and datasets, demonstrating broad applicability and providing nuanced insights into when each approach works best.
+
+3. The paper acknowledges that SDSC models achieve higher structural alignment at the cost of increased MSE, and that dataset characteristics influence which approach works better, showing intellectual honesty.
+
+### Weaknesses
+1. The paper uses only SimMTM as the backbone "for architectural simplicity," which severely limits generalizability claims. Without validation on diverse architectures (Transformers, CNNs, RNNs, recent foundation models), it's unclear if SDSC benefits are architecture-specific or truly general.
+
+2. The paper only compares against MSE, PCC, and SI-SNR. Recent structure-aware losses for time series (e.g., shape-based losses, spectral losses, contrastive losses) are not included, making it difficult to assess whether SDSC represents state-of-the-art for structure-aware objectives.
+
+3. Despite strong motivation, the actual improvements are modest: hybrid loss achieves 0.4783 vs. 0.4852 MSE in forecasting (1.4% improvement), and Table 6 shows MSE sometimes outperforms SDSC in fine-tuning scenarios. The gains don't match the strength of the conceptual contribution.
+
+4. Computing SDSC requires element-wise min operations, Heaviside evaluations, and additional summations compared to MSE. No analysis of training time overhead or memory consumption is provided, which is critical for practical adoption.
+
+### Questions
+1. There seems to be an incorrect line break at the title.
+
+2. Why does SDSC underperform MSE in cross-domain settings (Tables 5, 6)? If SDSC provides better "semantic representations," shouldn't it generalize better across domains? What explains this contradiction?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes the Signal Dice Similarity Coefficient (SDSC), a novel, structure-aware metric for self-supervised learning (SSL) of time-series representations. Existing methods such as MSE is overly sensitive to signal amplitude and scale, while being insensitive to waveform structure, phase, and polarity. DTW and other metrics are also having their weakness. To overcome teh limitations, SDSC is adapted from the Dice Similarity Coefficient (DSC), a metric widely used for overlap in image segmentation. SDSC compares two signals at each time step. It calculates a score based on the minimum amplitude of the two signals, but only if both signals have the same sign (e.g., both are positive or both are negative). If the signs are different, that time step is heavily penalized (it contributes zero to the similarity score).Properties: This approach makes SDSC robust to amplitude scaling while being highly sensitive to polarity mismatches. The resulting metric is bounded between [0, 1] (making it interpretable) and is computationally efficient (linear $O(T)$ complexity), unlike other alignment-based metrics (like SoftDTW, which is $O(T^2)$). The author also uses a smooth sigmoid approximation to make the function differentiable. In experiments, they also propose to combines MSE and SDSC, to capture both structural and amplitude information.Experiments on forecasting and classification tasks show that pre-training with SDSC or the hybrid loss is competitive or superior to models pre-trained with MSE.
+
+### Strengths
+1. The proposed method is efficient, linear time complexity, much better than other methods like DTW, which performs similar structure-awareness measurement.
+2. The metric is bounded from 0 to 1, which provides better interpretability.
+3. The paper is clean written, with illustrative examples to show numbers using different metric, under different structure changes.
+
+### Weaknesses
+1. No clear definition of "structure", still related to alignment or warping.
+2. The backbone model is not widely tested. With more powerful models, we don't know if the advantage of SDSC still exists.
+3. The imrpovement on various tasks, are very marginal. For example, in the fine-tuned classification task, the SDSC approach is not showing better results in either in-domain or out-domain experiments.
+
+### Questions
+If switching to other transformer-based backbone model, would the proposed method performs consistenly better?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper addresses the limitations of conventional distance-based metrics (e.g., MSE) in time-series SSL by introducing a novel structure-aware metric, the Signal Dice Similarity Coefficient (SDSC). The method reframes the signal reconstruction problem as measuring the overlap of the areas under the respective curves. Through the introduction of a signed amplitude intersection term, it ensures that overlap is computed only when signal polarities align, thereby effectively addressing the noted deficiency of MSE in being insensitive to phase inversions.
+
+### Strengths
+1. Adapting the DSC from the segmentation domain to time-series signals is a novel perspective. Using the signed amplitude intersection as a proxy for waveform structure similarity is an interesting idea.
+2. The O(T) linear complexity of SDSC is computationally efficient, which is a practical advantage.
+3. The mathematical definition is intuitive, and the experimental design is well-structured.
+
+### Weaknesses
+1. A motivation for the paper is that SDSC serves as a lightweight alternative to O(T^2) metrics (e.g., SoftDTW, DILATE). However, a direct comparison against them is missing. Currently, we only know that SDSC is faster, but we do not know how much performance is lost (or gained) compared to SoftDTW.
+2. The α parameter in the Sigmoid function significantly influences the gradient shape. The paper lacks a sensitivity analysis on how α affects the performance of downstream tasks.
+3. The "alignment-free" description may be somewhat misleading. While SDSC does not perform explicit temporal warping like DTW, it does enforce strict temporal and polarity alignment through its point-wise comparison.
+
+### Questions
+I will reconsider my score during the rebuttal phase based on the authors' response to following issues.
+
+1. Could the authors include an experiment in the appendix that compares SDSC with SoftDTW (as a loss function) on a downstream task (e.g., forecasting), using at least one small-scale dataset?
+2. Regarding the hybrid loss in Equation (8), how is the uncertainty-based tuning strategy specifically implemented to determine the weights λsdsc and λmse? How does this adaptive strategy compare to using simple fixed weights (e.g., λsdsc = λmse = 0.5)?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/DB2KJKFX0d.md b/human_reviews/DB2KJKFX0d.md
new file mode 100644
index 0000000000000000000000000000000000000000..22edd220602a2385c57c0c6765cfdd504943adcc
--- /dev/null
+++ b/human_reviews/DB2KJKFX0d.md
@@ -0,0 +1,171 @@
+## Human Reviewer 1
+
+### Summary
+To address limited availability of 7T data, this paper proposes a novel method for enhancing resolution and SNR of 3T BOLD fMRI to approximate 7T data quality. It aligns both 3T and 7T data from different subjects and datasets into the same space with shared parameters. By using an unpaired Brain Disk Schrodinger Bridge (BDSB) diffusion model, the spatio-temporal resolution and SNR of 3T data could be enhanced. Experiments were performed on three public fMRI datasets and a synthetic dataset. The proposed method showed comparable results of SNR and the goodness-of-fit of the pRF in the enhanced 3T to 7T data quality.
+
+### Strengths
+1) The motivation of the paper is clear and straightforward. Given the scarcity of large-scale paired 3T-7T fMRI datasets, research for unpaired learning frameworks is necessary, and this paper handles this challenge.
+
+2) The method is validated on both real and synthetic datasets to demonstrate generalizability. Moreover, the results show that the proposed method outperforms GAN-based and diffusion-based approaches across 4 evaluation metrics, including $R^2$, which assesses neuroscientific interpretability.
+
+### Weaknesses
+1) The exact and detailed formula of the regularization terms (PatchNCE and BD-SSIM) is missing. Which distance metrics were used for the regularization losses? It would be helpful to add the formulations in the supplementary material.
+
+2) It is mentioned that the NCE regularization loss is designed to maintain consistency with the LQ inputs in order to preserve structural details. However, how can you guarantee that this term actually preserves ‘structural ‘ information? Are there any ablation studies regarding this term with qualitative analyses and/or brain regional comparisons that support this claim? In addition, if my understanding is correct, this term reduces the discrepancy between the LQ and generated data. In that case, it seems to potentially conflict with the role of $ L_{Adv}$, which enhances resolution (i.e., the main goal of this paper). How does the proposed method address this issue?
+
+3) The paper does not include qualitative comparisons and neuroscientific comparisons with baseline models.
+
+### Questions
+1) Given the small data size, how could you handle the overfitting issue in the experiments? Did authors adopt cross-validation and/or perform multiple trainings to validate the generalizability of the methods (including baselines)?
+
+2) How were the hyperparameters of baseline models tuned? Could you clarify the tuning strategy and selection criteria?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This work proposes BDSB, an Schrödinger Bridge application for 3T-to-7T cross-dataset fMRI enhancement. Experiments on synthetic dataset and real-world datasets demonstrated superior performance by BDSB over GANs and DDPM.
+
+### Strengths
+1. The paper is clear and well-organized. The way fMRI data fits into the Schrödinger Bridge framework has been clearly described, and readers can learn from it.
+
+2. Performance on synthetic and cross-dataset experiments has shown a promising boost over baselines. While on paired data, the improvement is marginal, BDSB can still hold top-2.
+
+### Weaknesses
+1. Notations need a double check, e.g., in Fig 3 caption, shouldn't the approximating distribution $\hat x_{1|t_i}$ be derived from the neural generator $q_\phi$ instead of the joint distribution $p$? Please correct me since I'm not an expert on diffusion models, but I also think it should be the approximated $\hat x_{1|t_j}$ in $p(x_{t_{j+1}}|x_{t_j},x_{1|t_j})$ in Fig 3.
+
+2. The first attempt of learning 3T-7T generation from unpaired data is desirable, but the real-world evaluation should be focused on paired data since the final purpose is generating ground truth 7T fMRI from 3T fMRI. In this regard, BDSB performs similarly to OTT-GAN for PSNR and even worse for SSIM.
+
+3. The contribution of a better fMRI enhancement via learning across datasets has not been evaluated. As mentioned above, there are no experiments of training with unpaired data and testing on paired data. The ability of learning across datasets makes BDSB more fundamental than existing models, and it should lead to a model scaled from multiple datasets. However, the BDSB is trained separately for unpaired and paired experiments.
+
+4. Technical innovation is limited. Why don't other optimal transport methods fit into the proposed framework?
+
+### Questions
+1. How's the performance of super-resolution methods on your data?
+
+2. How's cross-session fMRI prediction scientifically sound? There are various compounds affecting the BOLD signal aside from cognition and visual stimuli, such as scanner settings and test-retest variations [2]. How to ensure the model learning from SNR differences rather than other compounds?
+
+[1] Ding, Jiaqi, et al. "Machine Learning on Dynamic Functional Connectivity: Promise, Pitfalls, and Interpretations." arXiv preprint arXiv:2409.11377 (2024).
+
+### Soundness
+2
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes a method for enhancing 3T blood-oxygenation-level-dependent (BOLD) functional magnetic resonance imaging (fMRI) by leveraging an unpaired Brain disk Schrödinger bridge (BDSB) model. The authors map 3D brain surfaces into a shared parametric domain via conformal mapping and apply an unpaired BDSB diffusion model to approximate the higher resolution of 7T scans using 3T scans. The framework is evaluated across three public datasets, of which one is synthetic, another containing only 3T scans, and a paired 3T/7T dataset.
+
+Experiments indicate meaningful improvements on the synthetic data and Cross-Dataset Real, while performance is essentially in line with OTT-GAN for the paired TDM Real dataset.
+
+### Strengths
+Originality. The fMRI enhancement pipeline consisting of conformal parameterization, brain disk schrödinger bridge and resample & pRG analysis appears novel. The use and application of the Schrödinger Bridge for unpaired samples is also novel in this domain.
+
+Quality. The method is mathematically motivated and the experiments include relevant metrics (SSIM, PSNR, R^2). Evaluation across synthetic, cross-dataset, and paired data provides a reasonable spread of conditions.
+
+Significance. Enhancing 3T data using unpaired 7T examples is an important and practically relevant problem. The approach could, in principle, enable higher-quality analyses without costly high-field scans. Additionally, the method performs well on synthetic and cross-dataset real compared to the provided baselines.
+
+Clarity. The paper is clearly written and well-structured overall. Figures 1–3 effectively illustrate the architecture and training process.
+
+### Weaknesses
+- While the method is framed as unpaired learning, the implementation and experiments do not convincingly show that unpaired samples are leveraged for learning. A meaningful test would involve partial or full training on unpaired data and evaluation on paired data to quantify the benefit of the unpaired setup.
+- On the TDM Real (paired) dataset, BDSB performs similarly to OTT-GAN, contradicting the claim of superior performance “across all real and synthetic experiments.” This discrepancy should be discussed explicitly.
+- Frechet Inception Distance (FID) typically relies on an ImageNet-trained network and is not meaningful for fMRI-like data, whose statistics differ drastically from natural images.
+- Related methods are only briefly mentioned in the appendix; a dedicated section would improve context and clarify how baselines are chosen.
+- When the authors or the publication are not included in the sentence, the citation should be in parenthesis using \citep{}, as outlined in the formatting instructions.
+
+### Questions
+- What do the authors believe explains the discrepancy between performance gains on synthetic/Cross-Dataset Real data and the parity with OTT-GAN on TDM Real?
+- Why are results from fast-DDPM missing for the Cross-Dataset Real setting?
+- How did the authors decide which baselines to include and which not to include?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper presents a flow-based approach to synthesize 7T fMRI from the counterpart 3T data. The Schrodinger bridge technique is used to train the model based on the 2D disk of surface projection map. While the idea of leveraging ultra-high-field fMRI for improved spatial modeling is potentially valuable, the current paper lacks methodological rigor, critical validation experiments, and sufficient theoretical justification to establish technical credibility. Strengthening these aspects would substantially improve the impact and trustworthiness of the work.
+
+### Strengths
+The paper is technically ambitious (given a limited number of training samples and high dimensional data) and conceptually original, combining **geometric brain mapping, diffusion modeling, and validation** into a cohesive pipeline. These contributions make it a practical solution for enhancing fMRI resolution for neuroscience studies.
+
+### Weaknesses
+1) **Main Concerns**. The primary issue with this submission lies in its scientific rigor and validation design. The authors claim that BOLD signals obtained from 7T MRI can be effectively mapped to or synchronized with evolving time series from 3T scanners. However, this assumption is not convincingly supported. It remains highly questionable whether (1) temporal synchronization between 3T and 7T acquisitions can be achieved with sufficient precision, and (2) whether the spatial correspondence of voxel- or surface-level activations can be meaningfully aligned across different field strengths. From a machine learning standpoint, however, the 3T and 7T datasets should ideally be paired or co-registered at the subject level to enable cross-modality learning. Without a clear justification or evidence supporting this assumption, the technical soundness of the proposed framework is undermined.
+
+2) **Projection Method**. The use of 2D conformal mapping to reduce fMRI data complexity is conceptually interesting, yet it raises serious concerns about potential information loss during the projection from high-dimensional cortical surfaces to a 2D representation. This approach may oversimplify the spatial geometry of the brain and distort the topological structure of functional activations. The authors should consider or at least discuss alternative representations, such as spherical harmonics (see the well-established approach by Anderson et al., NeuroImage, 2010), which preserve surface geometry while enabling efficient spectral decomposition.
+
+3) **Replicability and Test-Retest Validation.** Given that this is a neuroimaging study, replicability testing is a crucial standard for evaluating robustness. The current manuscript lacks experiments on test–retest datasets, which are commonly used to assess the reliability of functional signals and model generalization. The authors should include such analyses or provide clear justification for their omission.
+
+4) **Temporal Resolution Limitation**. Finally, the authors should acknowledge the inherent limitation that the proposed method primarily enhances spatial resolution and signal-to-noise ratio (SNR), but does not address the true temporal resolution gap in fMRI. The fundamental challenge remains the coarse temporal sampling (on the order of 1 s) compared to neuronal timescales (milliseconds). The paper would be stronger if it explicitly discussed this limitation and clarified whether the proposed method could, in principle, be extended to improve temporal fidelity.
+
+5) **Limited novelties**. This work is a combination of existing components such as conformal mapping and Schrodinger bridge model.
+
+### Questions
+1. The paper projects the cortical surface into a 2D disk before applying the Schrödinger bridge model. How much geometric distortion is introduced by this mapping, and how might it affect spatial correspondence between the 3T and 7T fMRI data?
+2. Why was a 2D conformal mapping chosen instead of a spherical or spectral representation (e.g., spherical harmonics)? Would the latter preserve global topology more faithfully?
+3. How are the boundary conditions handled in the 2D disk representation, given that cortical manifolds are not naturally disk-like?
+4. The model learns a flow between 3T and 7T BOLD signals, but are these data temporally synchronized or spatially paired? Without strict pairing, how can the model distinguish physiological differences from scanner-induced variability?
+5. How does the model ensure that synthesized 7T fMRI signals retain biologically meaningful temporal and spectral properties (e.g., frequency content, signal-to-noise ratio)?
+6. Although an ablation study is presented (Table 3), it primarily focuses on different surface mapping strategies and regularization terms. Was any ablation performed to isolate the contribution of the Schrödinger bridge formulation itself—e.g., by comparing with a baseline model without the bridge constraint or with a standard flow-based mapping?
+7. The model is trained on a small dataset of paired 3T–7T scans. Can it generalize to other sites, scanners, or acquisition protocols?
+8. What is the computational cost of solving the Schrödinger bridge compared to simpler flow-based mappings?
+9. How would the approach scale to whole-brain volumetric data rather than surface-based 2D projections?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/EbSkBZQF9g.md b/human_reviews/EbSkBZQF9g.md
new file mode 100644
index 0000000000000000000000000000000000000000..45b069f43c94750a948d1399643f428eba53b5aa
--- /dev/null
+++ b/human_reviews/EbSkBZQF9g.md
@@ -0,0 +1,165 @@
+## Human Reviewer 1
+
+### Summary
+This paper applies Mechanistic Interpretability (MI) to examine why a single-layer transformer fails to grok the 0–1 knapsack problem. The analysis reveals that the model relies heavily on the capacity token and the MLP layer, while its embedding space is poorly structured and resembles random initialization. Based on these observations, the authors argue that transformers have fundamental difficulty with NP-complete problems due to combinatorial explosion. They further hypothesize that a transformer with klayers can only generalize tasks with time complexity up to O(n^k), suggesting that large language models may face inherent limitations for high-stakes computational decision-making.
+
+### Strengths
+-The paper addresses an underexplored research area by examining how Transformers generalize on NP-complete problems.
+
+### Weaknesses
+-The paper arrives at the broad conclusion that transformer-based models struggle to generalize on NP-complete problems, yet supports this claim using only a single case study (the 0–1 knapsack problem) and only with a single-layer transformer. This limits the strength of the conclusion.
+-The analysis is restricted to a synthetic dataset and a shallow model. To convincingly argue general limitations of Transformers on NP-complete tasks, the study should include additional NP-complete problems and architectural variants (e.g., deeper or pre-trained models).
+-While the paper includes many figures, the accompanying explanations are insufficient, making it difficult to interpret the key findings from the visualizations.
+-The work would benefit from a more formal theoretical examination of Transformer generalization in NP-complete settings, similar in spirit to prior analytical studies of model expressivity and computational limits [1, 2].
+-The authors state that state-of-the-art models were excluded due to computational constraints. However, validating a claim with such broad implications requires experimentation on more capable models; otherwise, the conclusions may not generalize beyond the minimal architecture tested.
+
+[1] Zaheer, M., Guruganesh, G., Dubey, K. A., Ainslie, J., Alberti, C., Ontanon, S., ... & Ahmed, A. (2020). Big bird: Transformers for longer sequences. Advances in neural information processing systems, 33, 17283-17297.
+[2] Peng, B., Narayanan, S., & Papadimitriou, C. (2024). On Limitations of the Transformer Architecture. First Conference on Language Modeling.
+
+### Questions
+-What is the rationale for choosing the 0–1 knapsack problem as the case study? There are numerous NP-complete problems (e.g., n-SAT, Traveling Salesman, Hamiltonian Cycle) that may exhibit different structural characteristics. Clarifying this choice would help contextualize the scope of the conclusions.
+-At which training stage(s) were the attention patterns visualized, and how do these patterns evolve over the course of training? Showing the progression could provide valuable insight into the model’s learning dynamics.
+-The paper states that probing analysis shows the model “perfectly stores up to half of the weights and prices,” but detailed results or visualizations of this probing are not provided. Could the authors include these results to substantiate the claim?
+-The hypothesis that a k-layer Transformer can only generalize tasks with time complexity up to O(n^k) is central to the paper, but the theoretical and empirical basis for this claim is not fully articulated. To make the hypothesis more testable and convincing, one possible experiment would be to vary model depth and examine generalization performance on a known polynomial-time task such as sorting—where a one-layer model would be expected to fail, while a two-layer model should succeed. This would provide direct support (or counter-evidence) linking model depth to computational complexity.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper investigates why a small, single-layer transformer fails to solve NPC problem. The authors first construct a dataset of four-item 0-1 knapsack problem. Using the TransformerLens library, the authors trained a one-layer transformer. Through mechanistic interpretability methods—such as attention visualization, singular value analysis, logit lens, probing, and activation patching—they discovered that the model overemphasizes the knapsack’s capacity token, encodes information weakly, and lacks structured internal representations. These findings suggest that transformers struggle with NPC problems.
+
+### Strengths
+The research topic is important. Most of the difficult reasoning questions in the real world are NP-problems, like the Puzzle of 24.
+
+The authors applied various mechanistic interpretability methods to interpret the model.
+
+### Weaknesses
+1. The paper may need to improve its presentation. For example, (1) explain the figures, (2) visualize the method and data, (3) make subsections, (4) split methodology and experiment.
+
+Besides, to improve the flow, a general idea is not to use "we use xxxxx and we find xxxx", or "xxx is xxx, we use it and find xxx". A more easy-to-follow flow is first introducing the motivation, or the overview sentence of the paragraph or the subsection.
+
+2. The author may need to add the discussion of related works and the discussion of the comparison with existing works. This paper is very relevant to LLM reasoning, LLM search/exploration.
+
+3. The author may want to reconsider the scope of this work. I acknowledge that computation is a common issue, but considering more diverse tasks of NPC problems, or considering small-scale LLMs (e.g., 300M, 2B), is reasonable. The claim in the paper is strong, but the evidence is weak.
+
+### Questions
+See weaknesses.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper studies whether a single-layer Transformer (via TransformerLens) can “grok” 0-1 knapsack when trained on an algorithmically generated dataset with 4 items per instance. The model is trained up to 100k epochs to predict the optimal total price given tokenized weights, prices, and capacity. It does not grok: train/test curves do not exhibit delayed generalization. The authors then run a suite of mechanistic interpretability probes, attention visualizations (capacity token receives most mass), logit lens (MLP dominates), linear probes (some weights/prices are recoverable; capacity poorly encoded), activation patching (capacity-focused neurons drive loss), and SVD/PCA on embeddings (spectra resemble random; unlike modular subtraction). They conclude that shallow Transformers struggle to form robust circuits for NP-complete tasks and hypothesize a depth-time-complexity link, i.e., k layers ≈ O(n^k ) algorithms.
+
+### Strengths
+1. Clean MI toolkit application (attention maps, logit lens, probes, activation patching, spectra).
+3. Transparent reporting that the model fails to grok and that capacity dominates attention.
+3. Honest limitations section and compute-aware motivation.
+
+### Weaknesses
+1. Fixed 4-item knapsack; no scaling across #items, model width/depth, or data size.
+2. No MLP/RNN/DeepSets or symbolic/DP baseline; no depth>1 ablations.
+3. Unclear train/test split; no out-of-distribution tests (e.g., new capacities, price/weight ranges).
+4. Predicting only the optimal value sidesteps combinatorial structure (subset selection); may bias learning signals.
+5. NP-complete generalization and O(n^k) depth hypothesis are unsupported by the presented evidence.
+6. SVD/PCA on embeddings is suggestive but not decisive; no quantitative eval of probe accuracy vs layer/position.
+
+### Questions
+1. Why predict only the optimal value instead of the optimal subset (or value + subset)? Does predicting the subset change the behavior of grokking?
+2. Report curves across items (4→6→8), depth (1→2→4), width, and data size. Where (if anywhere) does grokking emerge?
+3. Add DP (optimal), greedy heuristics, MLP/DeepSets, and a 2–4-layer Transformer to separate depth vs optimization effects.
+4. Specify train/test generation, show IID vs OOD generalization, and formal grokking metrics (e.g., Power et al.).
+5. Provide causal tracing for capacity vs price/weight pathways and quantify probe R^2 /accuracy by token & layer.
+6. Either theorize the O(n^k) connection or tone it down; a single 4-item, 1-layer experiment cannot support it.
+7. Try factored inputs (set encoders / permutation-invariant layers) to test if failures stem from sequence order, not task hardness.
+8. Compare classification over all feasible values vs regression vs program-of-thought target; report which helps.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper applies mechanistic interpretability to a single-layer transformer trained on a small 0-1 knapsack dataset, finding it fails to generalize. It analyzes internals via visualizations and techniques, hypothesizing transformers struggle with NP-complete problems and are limited by layer count in computational complexity. Contributions aim to highlight LLM limitations in planning tasks.
+
+### Strengths
+The paper explores mechanistic interpretability on an NP-complete toy problem, extending beyond simpler prior tasks. It uses established tools to probe model failures, raising relevant safety concerns for AI agents in complex domains.
+
+### Weaknesses
+The claims about broad transformer limitations may be somewhat overstated given the constrained single-layer setup and small scale; exploring multi-layer models or larger instances could strengthen them. The methodology would benefit from additional baselines, clearer grokking criteria, and more ablation experiments. Presentation could be improved by addressing typos, providing more details, and better integrating figures. To improve, the experiments would have to be much more extensive, and any claims would have to have stronger backing from empirical evidence.
+
+The mechanistic interpretability techniques are from previous literature, and don't offer any compelling evidence for the claims in the paper. It isn't strictly necessary for the paper to introduce new mechanistic interpretability techniques, but I'd recommend looking at [2] for an example of a stronger algorithm-oriented approach to interpretability.
+
+It may be helpful for the authors to review work on tool-use. For instance, an argument can be made that even if LLMs cannot learn algorithms robustly, they can call tools to solve sub-problems, e.g. a knapsack solver. I personally think this argument has some flaws, but I'd encourage the authors to look into tool-use to strengthen their paper and claims.
+
+The paper ignores work on transformer expressivity and algorithm learning, e.g. [1], which would make it clear that NP-complete algorithms shouldn't be able to be represented in a tiny transformer. Claims that transformers can learn simpler algorithms (abstract sentence 1, line 11), aren't really true [3], so it isn't necessary to jump to NP-complete problems. For example, transformers struggle to learn the parity algorithm effectively [2].
+
+[1] Merrill, W., Sabharwal, A., & Smith, N. A. (2022). Saturated transformers are constant-depth threshold circuits. Transactions of the Association for Computational Linguistics, 10, 843-856.
+
+[2] Shaw, P., Cohan, J., Eisenstein, J., Lee, K., Berant, J., & Toutanova, K. (2024). Alta: Compiler-based analysis of transformers. arXiv preprint arXiv:2410.18077.
+
+[3] Markeeva, L., McLeish, S., Ibarz, B., Bounsi, W., Kozlova, O., Vitvitskyi, A., ... & Veličković, P. (2024). The clrs-text algorithmic reasoning language benchmark. arXiv preprint arXiv:2406.04229.
+
+### Questions
+I will use this section for a comment: While I do not recommend publication of this paper, I do not want to discourage the authors. I believe that their original intended idea is important to study, and hope to provide them with constructive options to explore for a future paper. My main comment is that it may be more valuable to study simpler algorithms, and connect the failures in representing these algorithms to common AI-agent approaches, e.g. to back up their claims in the abstract (lines 18-20).
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/FEqZmGl36g.md b/human_reviews/FEqZmGl36g.md
new file mode 100644
index 0000000000000000000000000000000000000000..3f845175c95bc6e890eb7e01f6a82042d3b1a8ea
--- /dev/null
+++ b/human_reviews/FEqZmGl36g.md
@@ -0,0 +1,211 @@
+## Human Reviewer 1
+
+### Summary
+The authors propose ESS-Flow, a method to guide sampling from probability flow generative models without gradient-based guidance. Their method samples with MCMC along ellipsoids in the source space (Gaussian prior), and takes a step based on the potential /target property evaluated in the data space. They motivate their method with the limitations of gradient-based guidance and evaluate their guidance on protein and material design tasks.
+
+### Strengths
+- Guidance without gradients is a nice benefit of the proposed method
+- The method is motivated well theoretically and with prior work
+- The experiments suggest that ESS-Flow is able to effectively guide samples compared to gradient-based approaches
+
+### Weaknesses
+- Does guidance for certain properties improve the estimation of other properties/observables not used in guidance?
+- Given that one of the benefits of the proposed method is not relying on gradients, it would strengthen the paper to show guidance for discrete target properties.
+- The discussion of challenges about challenges with gradient-based guidance (Fig. 2) is interesting, and I think further discussion / experiments along these lines would further strengthen the paper. I wonder if there is a way to show something similar with more realistic data by artificially creating 2 disconnected modes (i.e. removing data in a transition region or something like that).
+- "Limits ESS-Flow’s effectiveness when the prior does not well inform the target distribution": while I understand that things like image inpainting might be challenging for the method, have the authors evaluated ESS-Flow on other image guidance tasks?
+- There are newer and more accurate models compared to something like CHGNet that might give more accurate metrics (MACE, eSEN, UMA, etc.)
+
+### Questions
+Please see above.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposed a plug-and-play controllable generation method for flow-based generative models, which is based on sampling the controlled prior distribution through elliptical sliced sampling (ESS), and then run the ODE to convert the prior samples to samples from the tilted target distribution. The method avoids the need to compute the Jacobian of the flow map $T _ \theta$, and does not require the tilt to be differentiable. The authors further proposed to use a coarse discretization of the flow ODE as a proposal for the transition kernel and reweight the samples with the evaluation of the tilt on the final samples to reduce the computational cost.
+
+### Strengths
+Unlike most existing controllable generation methods such as CFG and DPS that involve the computation of an extra term in the SDE (often requires approximation), the proposed method just treat the flow ODE as a black-box and only modifies the prior distribution, and instead of doing gradient-based optimization, it directly samples from the controlled prior distribution. This makes the method simple and concise, and I personally appreciate this idea.
+
+The paper also provided comparisons of the proposed method with existing controllable generation methods based on optimization. I'm not familiar in the domain of material design and protein structure prediction, but the experimental results look nice.
+
+### Weaknesses
+The authors provided limited background information about the ESS algorithm, which I believe most of the readers in the ML community should not be familiar with. We know that there are lots of zeroth-order sampling methods for sampling from $\pi(z)\propto p(z) g(T _ \theta(z))$, such as rejection sampling, the MH algorithm, and proximal sampler (https://proceedings.mlr.press/v134/lee21a.html). What's the insight behind ESS, and why is the Gaussian prior important for it to work? (Also I'm not quite in favor of the use of the abbreviation ESS in this paper, since it is also used to refer to "effective sample size" in the literature of Monte Carlo methods, which may cause some misunderstanding. But it's fine if you keep it.)
+
+For the experiments, I think it would be more convincing if the authors can also consider some image generation tasks, which are more familiar to most ML researchers, and can better demonstrate the effectiveness of the proposed method. Also, as the authors have introduced the multi-fidelity version of the proposed method through a coarse discretization of the flow ODE, it would be interesting to see some ablation studies on the choice of the discretization step size and its impact on the generation quality and computational cost.
+
+I'm happy to raise the score if these issues can be addressed during rebuttal.
+
+### Questions
+1. What's the typical number of rejections needed in one iteration of ESS in order to get an accepted sample?
+
+2. We know that diffusion model and flow matching allow one-step prediction of $\mathbb{E}[x _ 1|x _ t]$. For faster sampling, instead of still doing discretization of the flow ODE, do you think it is possible to replace the flow map $T _ \theta$ with a one or few step predictor in the proposed method? If a consistency model is available, we can even directly predict the final sample from the prior sample in one step, which may further reduce the computational cost.
+
+3. The main text of the paper assumes the flow model is trained for Euclidean data, but in the experiments it turns out that the whole framework can also be applied to manifold data as long as we have a flow-based generative model, which I believe is an advantage of the proposed method, and should be highlighted more in the paper. I'm not quite familiar with the literature of manifold, but is there anything that we need to pay attention to when applying the proposed method to manifold data? For example, do we need to modify the ESS algorithm in any way?
+
+4. In table 2 and 3, it would be better to highlight the best results in bold font for better readability.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper introduces ESS-Flow, a training-free and gradient-free guidance method for flow-based generative models. The key idea is to do Monte Carlo inference directly in the source space, where the prior is Gaussian, by sampling from a distribution of the form $\pi(z) \propto g(T_\theta(z))p(z)$. This makes the method applicable to quantized/materials settings and to non-differentiable observation or reward functions. The authors further propose a multi-fidelity variant where the authors sample using a coarse ODE discretization and reweight using a fine discretization to reduce computation. Experiments on materials and protein structure prediction show that ESS-Flow achieves nearly SOTA results on all metrics for materials and comparable performance on protein generation metrics.
+
+### Strengths
+1. The paper is clearly written, with a coherent structure and well-motivated.
+
+2. The proposed method is simple to implement and achieves strong results on the material generation task.
+
+### Weaknesses
+1. The paper lacks experiments on standard image-domain tasks (e.g. inpainting, deblurring), which are commonly used in related work such as D-Flow and PnP-Flow.
+
+
+2. While the empirical contribution is solid, the theoretical contribution is relatively modest.
+
+3. One of the main points of the contribution is having this apply to non-differentiable rewards/potentials yet there are no experiments demonstrating this capability.
+
+### Questions
+1. What are the quality metrics in Table 3 for the competing methods? It would be helpful to report the same set of metrics so we can compare ESS-Flow directly to the baselines.
+
+2. How does multi-fidelity ESS compare to standard ESS on the metrics reported in Table 2 and Table 4.
+
+3. What are the acceptance rates of the sampling?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The authors introduce ESS-Flow, a gradient-free method for controlled generation in the setting of generative modelling with flow matching models. The authors perfoming Bayesian inference in source space using Elliptical Slice Sampling, which enables conditional generating without requiring gradients. The authors demonstrate their approach on various applications ranging from materials to proteins.
+
+### Strengths
+[S1] The gradient-free nature of this approach is appealing. There have been other works for source space sampling such as , but this still required gradients, wheras this approach here circumvents this via the Jacobian cancellation and the ESS approach.
+
+[S2] One common with gradient-based optimisers in diffusion samplers are the multitude of often brittle hyperparameters like guidance scales or other schedulers; this approach here seems to be less reliant on these.
+
+[S3] Good motivation of the different components introduced with formal justifications.
+
+### Weaknesses
+[W1] The authors demonstratet that they can avoid the Jacobian computation, but ESS-Flow still requires many evals (>1000 MCMC steps) of the transport map, hurting the efficiency of the approach
+
+[W2] The authors openly describe the limitation of ESS-Flow in cases where the target is constrained on a lower-dim manifold, but claim that in scientific domains the target distribution is not overly collapsed. However, in many applications like in protein design the target distribution lies exactly on such a lower dim manifold with most of the target space being invalid sampels; some more explanation why the authors think that this is not the case in many scientific applciations would help here.
+
+[W3] In many scientific applications, people have circumvented the non-differentiability of categorical sequences via soft relaxations similar to the atom relaxation the authors use for their comparisons. In approaches like BindCraft (Pacesa et al, 2025 Nature), this works remarkably well, so the authors should potentially try to tune that baseline to see if it as strong as it can be.
+
+[W4] While some of the baselines in the protein structure prediction case of Figure 4 look unrealistic, ESS-Flow also seems to have biophysical implausibilities, and the ELBO of the model only partially captures these things. A more fundamental evaluation like counts of clashes could demonstrate how good the structures actually are; the RMSD values above 10 suggest that all baselines seem pretty far off.
+
+### Questions
+[Q1] The case studies all have quite low dimensionality, how does the approach scale to high dimensional problems?
+
+[Q2] Given the authors say their method does not work well with priors that poorly inform the target distribution, can this statement be made more exact? ie is there a quantity that one can look at to see if the approach will work or not?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+The paper introduces ESS-Flow, a training-free and gradient-free approach for controlled generation using pretrained diffusion or flow-based models. The method reframes inference in the Gaussian latent source space and applies elliptical slice sampling (ESS) instead of gradient-based updates, using a change of variables to apply updates in the data space. The main goal is to enable preference alignment when gradients are unavailable or unreliable, such as in cases involving quantized or simulator-based objectives.
+
+### Strengths
+- The paper introduces a new and practically useful application of elliptical slice sampling to flow- and diffusion-based generative models. While ESS itself is a known MCMC method, its use within the latent Gaussian space of pretrained flow-based models is novel and interesting.
+- The algorithm is designed such that jacobian determinants of transport maps don’t need to be computed, enabling a scalable and efficient algorithm.
+
+
+- The theory is sound, and the algorithm preserves theoretical guarantees from the original ESS method, making interpretability for downstream researchers easier.
+Reported results compared to baselines show a non-negligible improvement in matching a new target energy function.
+
+
+- Overall, the paper connects ideas from generative modeling, Bayesian inference, and MCMC in a coherent and insightful way. It is an interesting paper that I believe would bring a net positive to the research community, which would be strengthened by addressing the weaknesses below.
+
+### Weaknesses
+- While 0th-order methods can benefit greatly in settings with unreliable gradients, they can also face severe scaling issues in high-dimensional spaces. Having an experiment showing performance as problem dimension scales would help further inform future readers when they should use ESS-flow vs. a gradient-based method.
+
+
+- While results on the provided experiments show that the 0th order methods are outperforming the gradient-based methods, none of the experimental settings to my understanding actually fall under the non-differentiable setting that the paper proposes to address. It would help to either (a) include a relevant experiment setting where gradient information is truly intractable to retrieve, or (b) demonstrate that in the reported settings, the gradient structure is highly unideal for gradient-based methods, e.g. high Lipschitz constant (also, for line 290, maybe better to call them gradient-based rather than optimization-based, since there are many 0th order optimization algorithms).
+More statistical details on the experimental setup are needed, e.g. some std’s in table 2 are higher in magnitude than the mean.
+
+
+- There are some missing baselines/ablations (e.g. adjoint matching [Domingo-Enrich et al.], non-ESS-based source space MCMC) that would help clarify whether the main benefit comes from being gradient-free or from the specific ESS mechanism.
+
+### Questions
+- How does ESS-Flow scale with increasing latent dimension? Does the acceptance rate or effective sample size drop significantly in higher dimensions?
+
+
+- What is the runtime cost compared to the baselines?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/FF9QVQduAu.md b/human_reviews/FF9QVQduAu.md
new file mode 100644
index 0000000000000000000000000000000000000000..29924a6636cc9a141ceebd9e367bad22e1b53101
--- /dev/null
+++ b/human_reviews/FF9QVQduAu.md
@@ -0,0 +1,169 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces CrowdFM, a graph neural network-based "foundation model" for crowdsourced label aggregation, pretrained on synthetic data to enable retraining-free, cross-dataset generalization. The model is evaluated on 22 real-world datasets and shows strong empirical performance and efficiency. However, the main weakness of this paper is its failure to acknowledge and position itself with respect to highly relevant prior work—specifically, the hyper label model (Wu et al., ICLR 2023). The methodology, motivation, and even the technical design of CrowdFM are very similar to those of the hyper label model, with the only substantive difference being the application domain (crowdsourcing vs. programmatic weak supervision) and the technical details in training data generating and the graph neural network architecture design. The paper overstates its novelty and does not provide a meaningful discussion or comparison to this existing work. As a result, the contribution is incremental and the claims of being the "first" to propose such a foundation model are not justified.
+
+### Strengths
+- The paper addresses a real and important challenge in crowdsourced label aggregation: the need for scalable, retraining-free aggregation methods that generalize across datasets.
+- The paper provides a synthetic data generation process for training such models.
+- CrowdFM achieves fast inference times, comparable to simple methods like Majority Voting, while outperforming more complex dataset-specific models.
+
+### Weaknesses
+1. Lack of proper acknowledgement of closely related work. The most significant issue with this paper is its failure to properly acknowledge and position itself with respect to existing work that is nearly identical in methodology and motivation. In particular, the ICLR 2023 paper[1] that proposes a hyper label model for programmatic weak supervision that is, in essence, the same as the approach in this paper:
+ - Both solve the label aggregation problem.
+ - Both aim for cross-dataset generalization and retraining-free inference.
+ - Both papers propose a GNN-based model that is pretrained on synthetic data to learn a generalizable label aggregation function.
+ - Both use size-invariant initializations and GNN architectures to handle variable numbers of annotators (workers/LFs) and tasks.
+ - Both demonstrate that their model, once trained, can be applied to new datasets in a single forward pass, outperforming dataset-specific methods in both accuracy and efficiency.
+
+While the paper claims to be the "first foundation model for label aggregation," this is not accurate. The hyper label model[1] is a direct precedent, and the technical similarities are substantial. The only notable difference is the application domain: The hyper label model[1] focuses on programmatic weak supervision (labeling functions), while this paper focuses on crowdsourcing (human workers). However, the mathematical setup is essentially the same (a bipartite label matrix with noisy annotators) in these two domains.
+The lack of discussion, comparison, or even citation of this highly relevant prior work is a serious omission. This gives the misleading impression that the proposed approach is novel, when in fact it is a straightforward adaptation of an existing method to a closely related domain.
+
+2. The paper repeatedly claims to be the "first" to propose a foundation model for label aggregation, and to introduce a new paradigm. Given the existence of[1], these claims are overstated.
+
+3. Given the existence of the hyper label model approach[1], the main contribution of the paper seems to be modifications to the synthetic data generator and GNN architecture.
+
+[1] Wu et al., "Learning Hyper Label Model for Programmatic Weak Supervision" (ICLR 2023)
+
+### Questions
+1. Are the authors aware of the hyper label model[1]? Can the authors clarify the technical and conceptual differences between CrowdFM and the hyper label model, beyond the application domain? Please explicitly discuss this prior work in the related work section, and provide a detailed comparison (both conceptual and empirical) to clarify what is novel in CrowdFM.
+2. How does CrowdFM perform compared to the hyper label model?
+3. What new insights does CrowdFM provide for the crowdsourcing setting on top of what is discussed in[1].
+4. Is CrowdFM able to provide any theoretical guarantees as in[1].
+
+[1] Wu et al., "Learning Hyper Label Model for Programmatic Weak Supervision" (ICLR 2023)
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes CrowdFM, the first foundation model for crowdsourced label aggregation. It replaces traditional per-dataset parameter estimation with a pretrained bipartite graph neural network trained on a vast, domain-randomized synthetic dataset. By leveraging a size-invariant initialization and attention-based message passing, it learns universal principles of collective intelligence and generalizes to new, unseen datasets. Experiments on 22 real-world datasets show that CrowdFM matches or outperforms state-of-the-art methods in both accuracy and efficiency, while its learned representations also support worker assessment and task assignment.
+
+### Strengths
+1.The proposed CrowdFM is the first foundation model for label aggregation, enabling cross-dataset generalization without retraining and marking a key step toward universal label aggregation.
+
+2.CrowdFM further exhibits strong versatility, as its pretrained representations can be directly adapted to multiple downstream tasks such as worker assessment and task assignment without additional training.
+
+3.Extensive experiments on 22 real-world benchmarks demonstrate that the proposed single, fixed model consistently matches or surpasses dataset-specific methods in both accuracy and efficiency.
+
+### Weaknesses
+1.The paper lacks a systematic quantitative analysis of synthetic and real-world crowdsourced data. Although the authors validate generalization on real datasets, they do not analyze the distributional differences of key parameters (e.g., worker ability θ, task difficulty β, task guessing rate c) between synthetic and real data, making it difficult to assess how well the learned patterns reflect real human annotation behaviors. Besides, how to obtain these sampling ranges?
+
+2.Although the parameters in the synthetic data generator are randomly sampled, the paper lacks a sensitivity analysis of key parameters. Random sampling alone cannot fully verify the model’s robustness across different crowdsourcing conditions. It is recommended to include such an analysis to strengthen the credibility of CrowdFM’s generalization claims.
+
+3.With regard to the comparison results, statistical tests are needed in the comparison results. The detailed description about statistical tests for comparisons of multiple algorithms on multiple datasets can be found from the papers such as Statistical comparisons of classifiers over multiple data sets.
+
+4.The paper lacks ablation studies to verify the individual contributions of key components (e.g., attention-based aggregation, size-invariant initialization, and synthetic data diversity). Without such analysis, it is difficult to determine which design choices are most critical to the model’s performance gains.
+
+### Questions
+The same as the weaknesses above.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+Traditional methods (e.g., Dawid–Skene, GLAD, EBCC) typically adopt a dataset-specific modeling paradigm: they require training model parameters from scratch for each new dataset, resulting in poor generalization. Meanwhile, Majority Voting (MV), widely used in industry, requires no training but ignores differences in annotators' capabilities, leading to limited accuracy.
+To bridge this gap, the authors propose a universal aggregation paradigm: by pre-training a bipartite GNN on large-scale, domain-randomized synthetic datasets, the model learns transferable "collective intelligence" aggregation rules. During the inference phase, the model can be directly applied to any real crowdsourced dataset without fine-tuning or retraining.
+
+### Strengths
+1. Strong paradigm innovation: For the first time, the foundation model concept was introduced into crowdsourced label aggregation, breaking the dataset-specific paradigm that has persisted for decades.
+2. The problem definition has practical significance: Shifting the aggregation of crowdsourced labels from the "dataset-by-dataset modeling" paradigm to the "unified fundamental model" paradigm aligns with the urgent demand of the industrial sector for scalable and retraining-free systems.
+3. The experiments were thorough: 22 real datasets covered text, images, and audio, and included extreme scale/density scenarios, verifying the generalization ability.
+4. The accuracy rate and running time were reported, and it was pointed out that some methods failed due to insufficient memory
+
+### Weaknesses
+1. How can we ensure that the distribution of synthetic data is sufficient to cover the feature space of real crowdsourcing tasks? Is there any performance degradation under certain types of tasks (such as extremely unbalanced ones)?
+2. Can CrowdFM be regarded as the specialization of GraphFM in the field of crowdsourcing? Has the pre-training objective of the existing GFM been borrowed?
+3. The performance for extremely large-scale data (such as Senti and Fact) slightly decreases, but the reasons are not discussed.
+4. The absence of ablation experiments makes the contributions of each module unclear
+5. Although it includes recent works such as EBCC, GOVERN, TiReMGE, etc., some new methods for 2024-2025 are missing (such as Zhang et al., KFNN and IWBVT of NeurIPS 2024 are cited but not used as baselines);
+6. The superparameters such as the number of layers L and dimension d of GNN were not discussed in detail.
+7. The "Sim-to-Real Gap" between synthetic data and real data has not been fully quantified
+8. Has the model truly learned the "principle of collective intelligence", or has it merely fitted the statistical patterns of synthetic data? How to prove.
+
+### Questions
+Same as weaknesses
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper aims at building a foundation model for crowdsourced label aggregation that generalizes across heterogeneous datasets without dataset-specific training. It first generates a synthetic crowdsourced data generator to produce diverse synthetic datasets, and then trains a bipartite graph neural network which can be generalizable to other data and tasks. Experiments show the foundation model is efficient and achieve performance comparable to or superior to state-of-the-art aggregation methods.
+
+### Strengths
+1. Generating the synthetic data and then train a generalizable GNN model to approximate it is a smart idea to unify the data-specific crowdsourcing models. I think it is essentially a type of knowledge distillation, which distills the knowledge from the data generator to a GNN with less input features (e.g. task difficulty/worker ability, which are generally regarded as latent parameters in traditional probabilistic models).
+2. The method is sound, and the presentation is clear.
+3. Experiments show good accuracy with more efficiency.
+
+### Weaknesses
+1. The backbone model is relatively simple and not new, but the design is a good fit for crowdsourcing, e.g. the size-invariant initialization for worker/task emebddings. I do not see it as a weakness, but just not a novel contribution. I still like the whole framework of building synthetic data and train a simple domain-indepedent model as foundation models.
+
+2. The possible limitation of the model is it may lack the flexibility to adapt to the case when workers/tasks have their attributes, since these nodes are initialized with fixed pretrained embeddings.
+
+3. Another possible weakness is the limitation of the data generator. Although it is a quite general scheme, there might be other graphical models that it cannot cover; and also the prior distribution of the parameters might cause some bias for the pretrained foundation model.
+
+### Questions
+See weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/GE0b5aQAvm.md b/human_reviews/GE0b5aQAvm.md
new file mode 100644
index 0000000000000000000000000000000000000000..fec7f8d85ba7b7f23db778b8d174a7e0d8bd97af
--- /dev/null
+++ b/human_reviews/GE0b5aQAvm.md
@@ -0,0 +1,118 @@
+## Human Reviewer 1
+
+### Summary
+This paper studies the suboptimality of nonlinear and ensemble policies in continuous control problems. The authors formulate their analysis in the context of linear systems with quadratic costs and compare the performance of nonlinear neural policies and ensembles of neural policies against linear policies and linear ensembles. They define a nonlinearity measure quantifying the deviation of a function from being affine and show that, for linear-quadratic systems, any nonlinear (or non-affine) policy must be suboptimal relative to the optimal linear policy. Theorem 1 and Theorem 2 establish that nonlinear policies cannot be globally optimal, and Theorem 3 extends this argument to ensemble policies, suggesting that non-convex mixtures of policies are also suboptimal compared to convex-mixing policy ensembles. Empirical evaluations are conducted on synthetic linear control systems, comparing the performance of linear, nonlinear, and ensemble policies. The results show that neural policy ensembles perform worse than linear policies and ensembles.
+
+### Strengths
+- The paper tackles a clear and well-posed theoretical question: under what conditions are neural or nonlinear ensembles suboptimal compared to linear policies? This is question, I believe, is of theoretical interest.
+- The mathematical results are formally presented with explicit assumptions and definitions (e.g., the "nonlinearity measure" and the LQR cosntraints). The formalism appears internally consistent and logically valid given the assumptions.
+- The paper attempts to connect classical control theory insights (LQR optimality) with modern neural network and ensemble formulations, a potentially valuable contribution.
+
+### Weaknesses
+**Presentation**:
+
+- I found the paper extremely difficult to parse, both linguistically and conceptually. The writing is often ambiguous, and key terms are not defined well. For example, the opening statement of the abstract ("neural policy ensembles are sub-optimal with respect to linear policy ensembles") is already unclear and leaves the reader guessing what kind of optimality this is referring to.
+- The central theoretical claim almost seems self-referential given the assumptions. Since the problem setup is fully linear with quadratic costs, and the class of linear policies already contains the global optimum, it follows by construction that any non-linear function cannot be better. If I understood correctly, this result is highly unsurprising and, arguably, trivial within the stated framework of linear problems with quadratic costs.
+- The authors seem to assume that neural policies are nonlinear by construction and therefore suboptimal. However, this neglects the fact that, by the universal approximation theorem, a neural network with ReLU activations can represent a linear function exactly. In other words, a neural policy can approximate the optimal linear controller arbitrarily well. The suboptimality is in my view a statement about nonlinear functions in general, not necessarily about neural policies.
+- In the treatment of ensembles, the authors reference, for example, Burke et al. for non-convex mixing with neural networks, but these works consider state-dependent mixtures. In the author's notation, the weights $w_i$ seem to be static rather than state-dependent. As before, the authors exclude the probability simples from the support of non-convex mixing by construction.
+
+### Questions
+- What motivates the focus on linear dynamics and quadratic costs for the theoretical exposition? It seems clear that LQRs solve these optimally.
+- In Theorem 3, how are mixture weights $w_i$ defined as statis scalars or as state-dependent functions? The notation suggests static weights, but the text refers to neural mixing networks.
+- How does this result translate to systems that are not linear?
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper presents a theoretical study that argues that non-linear neural policy ensembles are sub-optimal and less stable compared to linear policy ensembles in Linear Quadratic Systems in optimal control. It also presents a theoretical result that shows non-convex policy mixing is sup-optimal to convex mixing of policies. The theoretical results are verified in a control environments which demonstrate that even well-tuned neural ensembles can underperform by 2 orders of magnitude compared to equivalent linear ensembles in Linear Quadratic Systems.
+
+
+**Recommendation:**\
+The content of this paper falls quite far outside my area of expertise, as I am an expert in neural ensembles in deep reinforcement learning, not in control systems. However, from my perspective, I recommend to reject this paper, as it seems to lack in the following areas: overly general claims and statements, and a general lack of clarity.
+
+### Strengths
+- The question of whether neural policy ensembles exhibit the same benefits as previously found for ensemble classifiers is very relevant.
+- The theoretical results are interesting.
+
+### Weaknesses
+- The paper overclaims its contributions. The abstract and introduction have no mention of the assumptions made in both the theoretical and empirical studies.
+ - For example, the abstract states: _"We develop a theoretical framework to formally prove that (non-linear) neural policy ensembles are sub-optimal with respect to linear policy ensembles."_ However, from different parts of the text I have pieced together that this results only holds for: a Lipschitz continuous transition function, deterministic polices, in a linear quadratic system, and doesn't hold for neural policies in general, but instead for policies with an additional assumption of a minimum level of non-stationarity of each individual ensemble member (neural networks are universal function approximators, so they can also learn linear policies). Furthermore, the result seems to only guarantee the existence of one state for which the non-linear neural ensemble is suboptimal, which might not be encountered by the controller from the given starting state, which would make it irrelevant for its performance.
+- The theoretical results are difficult to follow. The theorems are stated rather clinically, and are lacking in clear structure regarding assumptions, how they are proven, and what they imply.
+
+### Questions
+- The paper claims that (non-linear) neural policy ensembles are inherently suboptimal compared to the individual policies. How do you square this claim with the studies that show improved performance of policy ensembles compared to single policies in RL (some examples, [1,2,3,4])?
+- Line 39: _"In contrast, nonlinear policy ensembles face temporal coupling: the ensemble’s actions affect future states, creating feedback loops that may amplify rather than cancel errors. The temporal dependence breaks the mathematical foundation of ensemble methods."_
+ - Which part of the results or experiments in this paper explain or verify this intuition?
+- Section 3.3: There seems to be a one-to-one correspondence implied between neural ensembles and non-convex mixing. Why could a neural network not produce a convex mixing function?
+
+
+**References:**\
+[1] SUNRISE: A Simple Unified Framework for Ensemble Learning in Deep Reinforcement Learning. (Lee et al. 2021)\
+[2] Swarm Behavior Cloning. (Nüsslein et al. 2024)\
+[3] Why Generalization in RL is Difficult: Epistemic POMDPs and Implicit Partial Observability. (Ghosh et al. 2021)\
+[4] How Ensembles of Distilled Policies Improve Generalisation in Reinforcement Learning. (Weltevrede et al. 2025)
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper studies the ensembling of policies where each sub-policy is solving a different LQR problem. The authors provide several results that highlight the fact that ensembling of non-linear policies might be sub-optimal and unstable. Specifically, the authors show that given a set of tasks (defined by different reward functions), ensembling non-linear controllers learned on each task is worse than ensembling the best linear controllers for each task, that the resulting ensemble of non-linear controller might be unstable even when each individual controller is stable and that a non-convex averaging of the linear controllers is always worse than the convex averaging of linear controller with the same weight as the weight averaging the reward functions. The authors then provide a set of experiments that illustrate each of their theoretical findings.
+
+### Strengths
+The paper might provide interesting theoretical results on ensembling of non-linear policies for LQR problems.
+
+### Weaknesses
+- There is a clear mismatch between the claims and the theoretical results. The introduction and related work cite deep RL methods using ensembling of policies (notably the work of Yang et al. 2022) in a completely different way than what the theoretical results consider. Introduction mentions that their theory would explain why ensembling of neural policies is doomed to be sub-optimal because of temporal coupling and non i.i.d setting compared to standard classification but the theoretical results show none of that. Instead all the theory is built around ensembling non-linear policies that are solving distinct control problems and then averaging them with no further learning. However, taking a quick look at the paper of Yang et al. 2022, there are large difference in the setting, as in the latter work every sub-policy is solving the same task, and the ensemble policy is also optimized using what they call an ensemble aware loss. Can the author clarify the relation between their theoretical results and the setting of Yang et al. 2022, or any other deep RL setting using ensembles of neural policies?
+
+- Theorem statements, assumptions and proofs lack clarity. In the main theorem, it is not clear how the non-linear policies are obtained. The optimal policy is linear for each LQR sub-problem, but by the assumption in line 140, the neural policies are forced to be non-linear and thus these policies are sub-optimal by design. It is then not surprising then that the ensembling of these policies is also sub-optimal. Studying problems where linear policies are optimal and making the assumption that neural policies cannot be optimal is in my opinion not a setting reflective of practical applications that use neural policies. Moreover, the proof could also gain some clarity: where do equation 21 and 22 come from? What even is $R$ in these equations, do you perhaps mean $R_{\text{ens}}$? Is $\lambda_{\min}$ the smallest eigenvalue? For the proof of Theorem 3, could you please provide a reference to the claim that $K_\lambda$ is optimal? As it does not seem trivial to me from the equations since there doesn't seem to be a linear relation between gain matrices and cost matrices. Thank you.
+
+### Questions
+Please see the questions in the weakness section.
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+2
\ No newline at end of file
diff --git a/human_reviews/H1s6SBhzlg.md b/human_reviews/H1s6SBhzlg.md
new file mode 100644
index 0000000000000000000000000000000000000000..ff2db2cfd97cee65696dd993e26cb3486bf1b85f
--- /dev/null
+++ b/human_reviews/H1s6SBhzlg.md
@@ -0,0 +1,178 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes two methods—Optimal Weight (OW) and Inverse Surprisingly Popular (ISP)—to improve aggregation of answers from multiple LLMs beyond simple majority voting. OW leverages first-order information (model accuracies) and is provably Bayesian-optimal when accuracies are known. ISP uses second-order information (prediction correlations) without requiring ground-truth labels and outperforms both majority voting and the classic Surprisingly Popular method.
+
+I have some concerns about the paper at this stage, so my evaluation may be biased towards the negative. If the author can address these issues in the rebuttal stage, I will consider raising my score.
+
+### Strengths
+1. The concepts proposed are novel.
+
+2. Achieved good performance on multiple datasets
+
+### Weaknesses
+1. Related work is an important part of the paper and should not be put in the appendix.
+
+2. Why is the LLM's output unaffected by the order of the options? Is there any literature or experiment demonstrating this? Since different letters have different statistical probabilities, the LLM should have different preferences for different letters.
+
+3. Why didn't the authors conduct experiments on widely used mathematical and common sense reasoning datasets, such as GSM 8K? This might be more helpful in verifying the effectiveness of the proposed method.
+
+4. I'm sorry that I can't find any relevant literature, but in my impression, optimal weight aggregation should not be the first one proposed in this paper. It has been proposed in other works before.
+
+### Questions
+1. Are the concepts of first-order information and second-order information first defined in this article?
+
+2. How to obtain the expected accuracy?
+
+3. The sizes of the several models selected in the experiment are obviously unbalanced. GPT-4o is much larger than the other models. Will this affect the experimental results?
+
+### Soundness
+3
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper investigates how to aggregate answers from multiple Large Language Model (LLM) agents to overcome the limitations of standard Majority Voting (MV). The authors note that MV ignores heterogeneity and correlation among models. To address this, the paper proposes two new algorithms that leverage higher-order information, namely Optimal Weight (OW) and Inverse Surprising Popularity (ISP). Since OW only need unknown true accuracies, the authors further propose two practical unsupervised methods (OW-L and OW-I). The experimental section validates these methods on synthetic datasets, UltraFeedback, MMLU and ARMMAN.
+
+### Strengths
+How to effectively aggregate the response from several LLMs is important tasks. This paper goes beyond simple heuristics, formally modeling the problem from an information-theoretic perspective is interesting.
+
+### Weaknesses
+1. The paper describes MoE as "only one expert gets a non-zero weight", which is too simplification. Modern MoE combines outputs from multiple experts via weighted averaging. The authors should more accurately describe the distinction from their work (e.g., aggregating final answers vs. internal representations).
+2. The authors should explain why in Table 3, the 'Single Best' model on the MMLU dataset outperforms the proposed aggregation methods.
+3. The proposed method optimizes the aggregator on several large datasets. But does it generalize effectively to other, unseen datasets?
+Questions: Please refer to weakness.
+
+### Questions
+Theorem 3 shows that the dataset size (M) needs to be large to reduce the error. However, considering that N LLMs are required, is the cost of this algorithm still prohibitively high?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper studies the response aggregation problem of multi-agent large language models (LLMs), arguing that simple majority voting ignores the heterogeneity and correlation between models. The authors propose two new algorithms: (1) Optimal Weight, which uses first-order information, i.e., the accuracy of each LLM, for Bayesian optimal weighted aggregation; and (2) Inverse Surprising Popularity, which uses second-order information, i.e., the correlation between the answers provided by each agent, to improve the traditional surprising popularity method. Theoretical analysis proves the Bayesian optimality of OW and the advantage of ISP over MV. Experiments validate the methods on synthetic data, UltraFeedback, MMLU, and ARMMAN datasets, showing an improvement of 0.5-2 percentage points compared to MV. However, the problem studied in this paper suffers from insufficient importance, and the practical value of the methods is quite limited.
+
+### Strengths
+S1. The core theoretical results of the paper, including the Bayesian optimality of OW (Theorem 1) and the expected advantage of ISP over MV (Theorem 2), are mathematically rigorous.
+
+S2. The authors found that the traditional surprising popularity method performed worse than simple MV in LLM scenarios. The authors' explanation makes sense: SP is designed to correct systematic biases in human judgment, but LLM has less systematic bias, so SP can only take advantage of a smaller margin of error.
+
+S3. The experimental design of this paper is comprehensive, including three levels: (1) synthetic data that fully conforms to the theoretical assumptions to verify the theoretical predictions; (2) standard LLM benchmarks to verify practicality; and (3) real-world medical and health applications (ARMMAN) to demonstrate potential social value. The authors also used eight models from four families including GPT, Qwen, Llama, and Phi to form 16 combinations that cover models of different scales and capabilities.
+
+S4. Appendix B.2’s relaxation of the conditional independence assumption is a positive attempt.
+
+### Weaknesses
+W1. The fundamental problem is that the research question itself is not important enough, and its practical value is limited. Specifically, the paper devotes a large portion to studying how to optimally aggregate votes from multiple LLMs, but this problem has very limited importance in the current LLM application ecosystem.
+
+First, the closed-set classification (K fixed options) that the paper focuses on is only a small part of LLM applications; the more mainstream applications are open-ended generation, multi-turn dialogue, and complex reasoning, and the paper's method cannot be extended to these scenarios.
+
+Second, the improvement shown in experiments is extremely small (0.5-2 percentage points), not worth increasing the system complexity.
+
+Third, in practice, there are often simpler and more effective solutions like directly use the strongest single model (Table 3 shows that a single model is sometimes better than ensemble), or invest in training a better model, rather than ensemble multiple weak models.
+
+Fourth, the core issue in multi-agent LLM reasoning is how to design an effective debate protocol and how to enable models to truly exchange and integrate information and the final voting is actually the most trivial part. The paper is essentially optimizing a marginal problem.
+
+W2. The OW algorithm is a beautiful theoretical contribution, proving its Bayesian optimality. However, this method relies on knowing the accuracy of each LLM, and in the unsupervised aggregation scenario considered in the paper, obtaining these accuracies requires a large amount of labeled data. Since it is unsupervised, how do we obtain this data?
+
+W3. Theorem 2 shows that the advantage of ISP decays at a rate of 1/K, meaning that for tasks with many options or open-ended functions, ISP offers virtually no advantage. The paper acknowledges this limitation in its conclusion but does not propose a solution. This may further restricts the applicability of the method.
+
+W4. The paper does not adequately discuss the limitations and applicability of the method.
+
+### Questions
+Q1. The paper focuses on the final aggregation step, but is this really the most important bottleneck in multi-agent LLM reasoning?
+
+Q2. Table 3 shows that the single strongest model achieves 91.02% on MMLU, while the ensemble only achieves 90.37%. This seems to suggest that the value of ensemble is questionable. Could you provide a cost-benefit analysis comparing `ensemble of 4 intermediate models` vs. `using only one strongest model` vs. `using the budget of ensemble to train/fine-tune a better single model`?
+
+Q3. How can these methods be extended to open-ended tasks?
+
+Q4. What are the theoretical guarantees of the OW-L and OW-I methods?
+
+Q5. ISP requires estimating O(N²K²) conditional probabilities, which becomes a bottleneck when N and K are large. How can this be scaled?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This study addresses the fundamental challenge of **aggregating responses from multiple Large Language Models (LLMs)** to produce a single, reliable collective decision, aiming to significantly improve upon simple **majority voting (MV)** or reliance on a single LLM.
+
+
+The paper proposes two key aggregation schemes:
+- The **Optimal Weight (OW)** algorithm generates the most accurate collective decision by assigning a **vote weight ($\omega_i$)** to each LLM $i$ based on its **known expected accuracy** ($x_i$).
+- A practical limitation of OW is that the true expected accuracies ($x_i$) are often **unavailable in real-world scenarios**. To overcome this, the study introduces the **Inverse Surprising Popularity (ISP)** algorithm. ISP bypasses the need for ground-truth labels by leveraging **predictions correlations** among LLMs to infer the correct prediction. ISP functions as an aggregation method in its own right and, critically, provides a mechanism to **estimate the optimal weights needed for OW** in label-free settings.
+
+
+The algorithms were validated across simulated datasets, LLM benchmarks (UltraFeedback, MMLU), and a real-world healthcare dataset (ARMMAN). Both **OW and ISP consistently outperformed MV**. Ultimately, the best results were achieved by a heuristic combination of both OW and ISP approaches, which demonstrated **strictly higher accuracy than the single best individual LLM** on several real-world tasks.
+
+### Strengths
+- The design of the ISP aggregation scheme proposed by the study offers a practical, cost-effective solution to multi-agent LLM aggregation schemes because it relies only on correlations between LLM predictions. This capability makes ISP and related heuristics (OW-L, OW-I) directly applicable to unsupervised, real-world scenarios like automated data annotation.
+
+### Weaknesses
+- One of the assumptions of this study relies on the idea that we can model the difficulty of a prompt question given to an LLM using **α** (question difficulty) and **βᵢ** (model ability). However, these quantities are inherently **subjective** and cannot be reliably measured. This raises concerns about the realism and validity of the assumptions on which this work is based.
+
+- The study’s **comparative evaluation** is also limited, as it primarily benchmarks the proposed algorithms against **MV**, a relatively simple baseline. More advanced multi-agent reasoning strategies such as the ones described in the related work section (see Appendix A.1) were not included in the comparison, constraining the empirical scope of the findings.
+
+- Additionally, the paper **does not discuss statistical significance** or provide detailed information about its experimental setup. Key aspects such as, variance, and number of seeds used are not reported, making it difficult to assess the robustness and reproducibility of the results. Including these details would strengthen the credibility of the findings and provide clearer insight into the reliability of the proposed methods.
+
+### Questions
+- Why do OW‑L and OW‑I show nearly identical performance in the experiments (Tables 3–6)? Specifically, is there a correlation between the objective optimized in OW‑L and the metrics underpinning ISP, which OW‑I use to produce the weights?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/HA8vzzT6Ax.md b/human_reviews/HA8vzzT6Ax.md
new file mode 100644
index 0000000000000000000000000000000000000000..98a7b48ea1ade3b812d064b0b86175aafc18b43b
--- /dev/null
+++ b/human_reviews/HA8vzzT6Ax.md
@@ -0,0 +1,288 @@
+## Human Reviewer 1
+
+### Summary
+This paper revisits the trade-off between watermark strength and speculative sampling efficiency in large language models (LLMs). The authors argue that the incompatibility stems from the use of independent random sources: watermarking modifies token sampling using pseudorandomness, while speculative sampling introduces additional stochasticity through draft-token acceptance. This mismatch weakens watermark detectability and limits inference efficiency. To resolve this, the paper proposes a unified pseudorandom framework that decomposes random sources into three independent components: \(ζ_D\) (for the draft model), \(ζ_T\) (for the target model), and \(ζ_R\) (for acceptance decisions)
+
+### Strengths
+- The paper provides a clear theoretical explanation for why speculative sampling and watermarking interfere with each other—namely, their reliance on separate random sources.
+- The proposed pseudorandom acceptance mechanism is simple yet elegant, turning the generation process into a deterministic function of pseudorandom variables.
+- Theoretical analysis (Pareto frontier characterization) and empirical evidence consistently demonstrate that the proposed design breaks the previously assumed trade-off between watermark strength and efficiency.
+- The work unifies two practically important but previously conflicting mechanisms, offering a potential path toward efficient and traceable LLM inference
+
+### Weaknesses
+1. The experimental evaluation only considers two unbiased watermarking schemes (Gumbel-max and SynthID). The analysis would be more convincing if extended to other representative watermarking frameworks, such as KGW or reweight-based methods [1,2].
+
+2. The proposed method requires applying watermarking to both the draft and target models during speculative sampling. The paper does not analyze whether this dual watermarking might affect text quality or fluency.
+
+[1] Hu, Zhengmian, Lichang Chen, Xidong Wu, Yihan Wu, Hongyang Zhang, and Heng Huang. *Unbiased watermark for large language models.* arXiv preprint arXiv:2310.10669 (2023).
+[2] Wu, Y., Hu, Z., Guo, J., Zhang, H., & Huang, H. *A resilient and accessible distribution-preserving watermark for large language models.* arXiv preprint arXiv:2310.07710 (2023).
+
+### Questions
+1. Could the authors discuss whether the pseudorandom control framework can be generalized to biased or reweighted watermark schemes?
+
+2. Considering that speculative sampling is primarily designed to accelerate inference, the paper should report additional runtime measurements comparing (a) standard speculative sampling, (b) speculative sampling with watermarking, and (c) the proposed method, to confirm that efficiency gains are retained.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper revisits the trade-off between watermark strength and speculative sampling efficiency in large language models. It formally quantifies watermark strength using KL divergence and derives a theoretical upper bound equal to the entropy of the base model. To overcome the claimed inevitable trade-off from prior work, the authors propose a pseudorandom acceptance mechanism that makes the entire sampling process a deterministic function of pseudorandom seeds. They further introduce new detection methods (Ars-$\tau$ and Bayes-MLP) leveraging this mechanism, and demonstrate through experiments that the approach improves detection performance without reducing decoding throughput.
+
+### Strengths
+The paper provides a theoretical framework connecting watermark strength and speculative-sampling efficiency. The proposed pseudorandom-acceptance mechanism is theoretically appealing, showing that the trade-off can be alleviated under certain conditions.
+
+### Weaknesses
+1. The proof that watermark strength can reach the upper bound $WS = H(P)$ (Theorem 3.2) assumes that each $P_\zeta$ is a completely deterministic distribution, where every generated token is fixed once the pseudorandom seed is given. However, even SynthID’s tournament sampling still has randomness after top-$k$ and $2^m$ rounds, so $P_\zeta$ isn’t truly deterministic. This means the bound is more of a theoretical ideal than something achievable in real LLM decoding. The paper should make this distinction clearer and discuss how far practical schemes are from that ideal. For example, how much does it improve over different m (the number of layers used in SynthID)?
+
+2. The claim of achieving both the best sampling efficiency ($SSE = 1 - \mathrm{TV}(Q, P)$) and the highest watermark strength ($WS = H(P)$) relies on several strong assumptions, such as perfectly unbiased decoders, fully deterministic generation, and independent pseudorandom seeds. If any of these assumptions don’t hold, the trade-off comes back. So should the result really be interpreted as showing what’s possible under idealized conditions, not as a general solution that always works?
+
+### Questions
+see weaknesses
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper revisits the trade-off between watermarking and speculative sampling. It (i) quantifies watermark strength as the expected KL divergence, showing this metric controls the asymptotic p‑value decay rate of the optimal detector (ii) formalizes the strength–efficiency Pareto frontier (iii) proposes pseudorandom acceptance by introducing an extra seed $\zeta_R$ so the accept/reject step is itself a deterministic function of pseudorandomness. Empirically, the method matches standard speculative sampling in AATPS while improving TPR@FPR=1% for detection compared with previous methods that preserve AATPS.
+
+### Strengths
+1. New perspective (not detection‑first, measure strength via KL).
+The paper propose to cleanly separates watermark strength from detector performance, grounding the former in an information‑theoretic quantity (expected KL) with a clear sample‑complexity interpretation (Theorem 3.1) and a tight entropy upper bound (Theorem 3.2). This presents a principled framework for further analysis.
+
+2. Evidence of better trade‑offs in practice.
+AATPS closely tracks the standard baseline, while detection improves compared with previous methods that preserve AATPS.
+
+3. Clear writing and organization.
+The paper is easy to follow, with crisp statements, clear algorithm, and figures that directly support claims.
+
+### Weaknesses
+### Whether the “trade‑off” truly disappears (terminology/interpretation).
+
+Theorem 4.1. builds on redefining strength as expected KL. This metrics makes some new proposed analysis possible. However, the paper itself clarifies that watermark strength ≠ detection efficiency (Remark 3.1): two schemes with comparable watermark strength may still differ in detection efficiency.
+
+Regarding specific methods, mixture of multiple pseudorandom sources will hurt detection efficiency, as more pseudorandom sources means more ambiguity at detection time. (Hu & Huang, 2024) uses one pseudorandom seed. (Dathathri et al., 2024) uses two seeds (draft + target), with multi-round tournaments there may be effectively more. This paper uses three seeds, further compounding interference among signals at detection time. Concretely, for any observed token the detector does not know whether it came from (i) an accepted draft token, (ii) a rejected token replaced from the residual, or (iii) the “extra” token when all draft tokens were accepted. This uncertainty necessarily makes practical detection weaker than the paper’s “WS” metric.
+
+In Experiment section of this paper, the claim is also “improved detectability,” not matching with non-accelerated watermarking.
+
+Therefore, the “trade‑off” still exists. The paper pushes the practical frontier but does not remove it, the headline “BREAK THE TRADE-OFF” is overstated. A more faithful summary is that the method steadily approaches a better trade-off.
+
+### Minors:
+
+The paper, for simplicity, treats positions as independent. A stricter analysis should avoid this assumption, and some results can hold without independence.
+
+Seed reuse is not discussed. Re-applying the same pseudorandom seed should be skipped (e.g., as in prior “context code history”) to maintain unbiasedness.
+
+### Questions
+I would encourage authors to also report ANLPPT, as with AATPS for efficiency, to quantify the detectability gap relative to a non-speculative watermarked baseline.
+How large is the remaining gap in detectable watermark signal strength?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+## Summary
+This paper tackles a practical tension in LLM serving: **unbiased text watermarking** (for provenance) versus **speculative sampling** (for speed). Prior work framed this as a binary impossibility: you can either preserve the watermarked distribution or preserve the acceptance rate, not both. The authors (i) introduce a **quantitative notion of watermark strength** — the expected KL divergence $E_\zeta[D_{KL}(P_\zeta || P)]$ — and prove it is the **exact detection rate** (via Chernoff–Stein); (ii) cast watermark–efficiency trade-offs as a **Pareto optimization** and empirically map the curve for several watermark classes (Gumbel-max, SynthID, linear mixtures, prior classes); and (iii) propose a simple fix — **pseudorandomizing the accept/reject coin** in speculative sampling — so the whole decode becomes a deterministic function of seeds, achieving **maximum sampling efficiency** $1 - TV(Q,P)$ and **maximum watermark strength** $H(P)$ simultaneously. They also give practical detectors for speculative pipelines (Ars-$\tau$ / Ars-Prior and Bayes-MLP / Bayes-Prior).
+
+Production stacks already depend on speculative sampling; having a *measurable* frontier and a concrete recipe to sit on that frontier is valuable.
+
+## Main claims / contributions
+1. **Strength as information:** Define watermark strength as $E_\zeta[D_{KL}(P_\zeta || P)]$ and prove it controls the optimal detector’s p-value decay (through the per-token log-likelihood ratio).
+2. **Tight frontier & optima:** For unbiased schemes, strength is upper-bounded by $H(P)$; speculative acceptance is upper-bounded by $1 - TV(Q,P)$. Gumbel-max and SynthID (as $m \to \infty$) are strength-optimal; the proposed **seeded acceptance** achieves *both* bounds simultaneously.
+3. **Operational trade-offs & detectors:** A constrained program (Eq. 10) traces the **Pareto curve** $L(r)$. The paper designs detectors that account for draft/target paths; when the accept coin is known (Ars-$\tau$, Bayes-MLP), detection is stronger than prior averaging approaches (Ars-Prior, Bayes-Prior).
+
+### Strengths
+## Strengths
+- **Conceptual clarity:** Moving from a binary notion to a continuous, information-theoretic strength is the right abstraction. It cleanly explains earlier "impossibility" statements and yields a usable frontier.
+- **Tight theory that lines up with practice:** The Chernoff–Stein interpretation makes sample-complexity predictions directly actionable; the entropy and TV bounds give interpretable ceilings.
+- **Simple, impactful algorithmic tweak:** Seeding the accept coin is minimal and compatible with production speculative pipelines.
+- **Detector design under speculative sampling:** The draft/target path issue is real; the two Ars and two Bayes variants are a neat, pragmatic treatment.
+- **Figures are helpful:** The trade-off plots communicate the Pareto picture at a glance; markers (WS/SE maintained, optimum) guide interpretation.
+
+### Weaknesses
+## Weaknesses / limitations
+- **Oracle knowledge vs deployment reality:** Many results assume access to the base distribution $P_t$ (or accurate logits) and, for the strongest detectors, the **accept coin**. External forensics often lacks both; estimation error can materially affect strength and false positives.
+- **Model/scale realism:** Simulated $(Q,P)$ pairs and small-vocab settings may not capture calibration quirks, long-tail tokens, or beam-blocking in large models.
+- **Robustness / attack model:** The paper doesn’t stress-test adversaries who (i) alter spacing/punctuation, (ii) paraphrase with another model, or (iii) run ensemble-style removal — how quickly does the effective KL collapse?
+- **Broader behavioral impacts not discussed:** Recent studies suggest watermarking can alter model behavior beyond detectability or quality trade-offs. *Downstream Trade-offs of a Family of Text Watermarks* (Ajith et al., EMNLP 2024) reports 10–20% drops in downstream task accuracy even for “unbiased” schemes like KGW, while *WaterJudge* (Molenda et al., NAACL 2024) quantifies a detectability–quality trade-off across watermark strengths. *Watermarking Degrades Alignment in Language Models* (Verma et al., ICLR 2025) further shows that watermarking can shift alignment properties such as truthfulness, safety, and helpfulness, mitigated partly by an external reward model. The paper would be stronger with a targeted discussion of how speculative sampling with watermarking affects alignment-relevant metrics (e.g., reward scores) and a short discussion citing these works to contextualize potential side effects.
+- **Downstream behavior:** Stronger coupling can interact with alignment/quality. Recent work reports reward/quality/alignment degradations under watermarking; the paper doesn’t quantify the proposed method’s effect on reward score or human preference.
+- **Reporting details:** Some derivations (e.g., Eq. 10) are explained tersely; detector training details and calibration of $\tau$ / $p$ could be easier to reproduce.
+
+## Actionable suggestions
+1. **Adversarial/transform robustness:** Evaluate detectability after common edits (paraphrase via another model, synonym swaps, punctuation/whitespace jitter, mild re-ordering). Report the induced drop in effective strength and how close it is to theoretical predictions.
+2. **Latency & throughput accounting:** Since the goal is "fast **and** provable," include an end-to-end latency/throughput table under seeded acceptance (overhead of PRNG, acceptance calibration, detector extraction) to confirm the practical speedup survives.
+3. **Downstream effects audit:** Report reward-model scores or human preference deltas for seeded-accept decoding vs baseline speculative and vs classic watermarks. Even a small ablation will reassure readers that “max strength” doesn’t quietly harm alignment/quality.
+4. **Clarity & reproducibility:** Expand the derivation around Eq. 10 in the main text (one boxed paragraph). Right now it jumps out of the blue without providing much background.
+
+The narrative is coherent and the prior binary impossibility is treated respectfully. I appreciated the clean placement of this work relative to Hu & Huang and SynthID, as well as the detector connection to Bayesian scoring networks. I would like to see clearer statements about assumptions (knowledge of $P_t$, seed/coin access) up front.
+
+
+## Writing and Presentation
+Generally clear but somewhat difficult to follow; figures carry their weight. The "what to believe after reading" is crisp: *use KL as strength, plot the Pareto, seed the accept coin to sit on the frontier.* A bit more exposition around the constrained program and detector calibration would help readers who don’t already know speculative internals.
+
+## Nits / small issues
+- Define “accept coin” once in the intro or prelims to avoid hunting later.
+- Around the entropy upper bound, one sentence explaining $WS = H(P) - E[H(P_\zeta)]$ would help a beginner.
+- Minor typographical cleanups: consistent capitalization of "SynthID," spacing around $TV(\cdot,\cdot)$, and equation referencing.
+
+### Questions
+See above
+
+### Soundness
+3
+
+### Presentation
+1
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+This paper considers watermarking when speculative sampling is used. Their results seem modular, allowing for improved watermarking with speculative sampling by improving standard watermarking schemes and applying them to both the draft and target models. Making this optimal seems to require an interesting trick that (pseudo)randomizes acceptance. They appear to understand all the key points, like that this will not introduce new distortions if the watermarks for the two models are independent.
+
+### Strengths
+The paper has several strong results. The basic observation, that one can overcome the limitation of Hu et al. by allowing for pseudorandom draft-token acceptance, is very nice and important. Watermarking under speculative sampling is an extremely important technical issue for deploying watermarks in real-world LLMs.
+
+I haven't read the paper carefully, but it seems to make real progress on an important practical question.
+
+### Weaknesses
+I don't know of any.
+
+### Questions
+Is Google's watermark really a deterministic function of pseudorandom numbers? I thought that tournament sampling doesn't satisfy this property at all: Doesn't it work by first sampling a few tokens, and then choosing deterministically between them? In which case, there's still a bunch of entropy left on the table in the initial sampling process.
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 6
+
+### Summary
+This paper studies the trade-off between watermarking and speculative decoding. A relatively recent work had made a 'no-free lunch' observation, which shows that improving the watermark is at the cost of weakening the speculative decoding (acceptance rate), and vice versa. This paper challenges this observation by integrating the watermarking's pseduorandom mechanism into the speculative decoding mechanism. The paper studies the speculative-decoding and watermarking tradeoff and the resulting curves, proposes a method to 'break' these curves and presents some experiments, demonstrating the proposed method on the Gumbel and SynthID watermarks.
+
+### Strengths
+Overall, this is a solid and creative work. Here are some of its strengths:
+
+1. The paper is clearly written. Even though I have significant prior knowledge about both watermarking and speculative decoding I believe this paper will not be too hard to follow for a newcomer to these fields.
+
+2. The idea is novel and seemingly powerful. Furthermore, the authors address the combination of two important subjects in the AI community - trustworthiness and efficiency.
+
+3. The analysis is very interesting and creative! Reading this paper was really delightful.
+
+### Weaknesses
+### Major:
+
+- **Clarity on SynthID:** The paper uses SynthId as a case-study in this work, as it is an 'unbiased watermark'. However, SynthID is a relatively large class of watermarks that follow the tournament sampling mechanism. The general SynthID watermark is not even unbiased (when N>2). Unfortunately, the authors do not provide sufficient information to understand which specific case of SynthID is proposed in this work. I also believe that such information should be added for the sake of clarity.
+
+- **Missing related work:** The content of this paper misses several related works on 'unbiased' watermarks for better context, which can also be considered for the analysis and experiments. The first [1] considers a similar hypothesis test to the one that is considered int his work, however through the Bayesian setting. This work is highly relevant due to its analysis in the 'token-level', as considered in this work. Furthermore, the results of [1] are stated in terms of the total variation distance, which may lead to easier integration with the speculative-decoding analysis that is done in this work. Beyond that work, there are highly related work that is missing for context - [2] provides a general formulation in terms of score and watermark transform optimization, proposing methods that outperform the considered watermarks in this work. [3] studies optimality
+
+- **Experiments section should be extended.** I would expect this section to consider more experiments, through more datasets (testing across specific tasks/domains) and testing more aspects of watermarking (robustness?). The current collection is quite narrow. Furthermore, I would expect a quantification of the watermark strength through p-values and quantification of the bias (through either textual quality or cross entropy/relative perplexity).
+
+### Minor:
+- The title of section 3 "COMPLETE THE TRADE-OFF DIAGRAM" is not clear.
+
+[1] Tsur, D., Long, C. X., Verdun, C. M., Hsu, H., Permuter, H., & Calmon, F. P. (2025). Optimized Couplings for Watermarking Large Language Models. arXiv preprint arXiv:2505.08878.
+
+[2] Tsur, D., Long, C. X., Verdun, C. M., Vithana, S., Hsu, H., Chen, C. F., ... & Calmon, F. HeavyWater and SimplexWater: Distortion-free LLM Watermarks for Low-Entropy Distributions. In The Thirty-ninth Annual Conference on Neural Information Processing Systems.
+
+[3] He, Haiyun, et al. "Universally optimal watermarking schemes for llms: from theory to practice." (2024).
+
+### Questions
+Bellow are both questions and comments:
+
+- **Connection to (Hu & Huang 24) and the hypothesis test:** The difference from the results in (Hu & Huang 24). which is explained in Remark 3.1 is unclear to me. First, the comparison itself is a bit odd. The referred paper discusses asymptotic results of the hypothesis test, while this work (while not stating clearly) is a token-level mechanism. The notion of a sequence is not addressed at any stage of this work. Second, Both works quantify the watermarks strength (detection) through the KL between distributions. This is an immediate results from the error exponent of the hypothesis test.
+
+- Following the previous comment, as the authors consider the 'token-level' hypothesis test, the use of the KL divergence to quantify the distributional divergence seems a little odd. In the hypothesis testing context, and as noted in this paper, KL divergence emerges in an asymptotic analysis (Through the error exponent of the type-2 error in the equivalent independence the between the 'i.i.d.' tokens and the psuedorandom process). The setting that manifests the KL divergence doesn't seem to fit strongly in the proposed operational setting of this work. I would appreciate the authors' thoughts on that. I believe that the mentioned related works [1,2] might be highly impactful to address this issue.
+
+- The expected KL divergence in eqn (7) is a popular quantity in information theory termed 'conditional KL divergence' - I would use that standard notation.
+
+- I believe that the watermark transformation can be regarded as a transition kernel similarly to the speculative decoding mechanism. Is there a reason to not address is as one in this work?
+
+- Do the results of this work extend to the unbiased case? I would believe that the tilting mechanism in [2, Section 2] might come in handy as a formulation of 'removing bias'.
+
+- Is the proposed method applicable to a general new watermark or does a new solution should be tailored to each new watermark?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/Hf7jMztvve.md b/human_reviews/Hf7jMztvve.md
new file mode 100644
index 0000000000000000000000000000000000000000..c8d08f7cc56f936e5ad576dd55a58aac660ed90d
--- /dev/null
+++ b/human_reviews/Hf7jMztvve.md
@@ -0,0 +1,135 @@
+## Human Reviewer 1
+
+### Summary
+This paper investigates whether large language models can engage in strategic deception and whether current interpretability tools (especially SAE features) can detect it. The authors design game-like tests to elicit deceptive behavior and analyze SAE activations during these scenarios. They claim that the deception features identified by SAE fail to activate when lying occurs, suggesting current interpretability methods are blind to such behavior. The work positions itself as an early attempt to probe “hidden deception” in LLMs.
+
+### Strengths
+1. **Creative experimental design**: The “Secret Agenda” and “Insider Trading” setups show some originality in trying to operationalize deception through game-like tasks.
+2. **Broad model coverage**: The study evaluates a large number of models (around 38), providing some breadth and comparative perspective across different architectures and providers.
+
+### Weaknesses
+I find the main weaknesses of this paper to be (1) its poor situating within existing literature and (2) major issues in clarity, rigor, and methodological grounding.
+
+First, the paper is poorly situated in related work. It makes strong claims about deception and interpretability without referencing key prior studies in truthfulness, mechanistic interpretability, or SAE analysis, leaving its novelty unclear.
+
+Second, the organization and clarity are weak. The introduction is too short, figures are oversized, and many technical details—such as how features are selected or how “feature fine-tuning” is done—are missing or unclear (e.g., “when tuned to -1 nor when tuned to +1” is never properly explained).
+
+Third, the authors misinterpret and underestimate current interpretability methods. Claiming that SAE “deception features” failed to activate does not justify dismissing the SAE framework; this reasoning overlooks the distributed and compositional nature of such representations.
+
+Fourth, the paper criticizes existing evaluation methods without evidence. In line 100, the authors state that current evaluations are “unreliable, hard to replicate, and unrealistic,” yet they never specify which methods these are or provide comparisons to support the claim.
+
+Finally, the format and presentation are below standard. The text is brief relative to the figures, captions are vague, and the layout feels unbalanced and unfinished.
+
+### Questions
+Please refer to weaknesses
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper presents a reproducible testbed for eliciting deceptive behavior in LLMs based on a game that requires the player to lie to succeed. It demonstrates that this elicits deceptive behavior in 38 tested models. It explores the effectiveness of auto-labeled SAE features for detecting strategic deception in the new deception test bed. It claims that auto-labeled SAE features are limited in their ability to detect or suppress deception as demonstrated by small latents in "deception" related features and continued instances of deception despite suppressing those features. Lastly, it presents a method for clustering SAE latents using PCA+t-SNE to demonstrate domain-dependent effectiveness of SAE feature interpretability.
+
+Mandatory disclosure of LLM usage by the reviewer: This review was formatted using LLMs to structure the text into paragraphs and numbered lists.
+
+### Strengths
+1. The paper addresses an important topic of strategic deception using a new binary testbed.
+
+2. It demonstrates that deception can be elicited in across 38 different models.
+
+3. The results are reproducible and experimental setup is well documented.
+
+4. The effectiveness of SAEs at detecting strategic deception is put into question and backed up by experiment.
+
+### Weaknesses
+1. In section 4, the paper claims that Secret Agenda game aims to generate "high stakes deception", however given that the problem is framed as a game does not feel high stakes as in Agentic Misalignment (arXiv:2510.05179) where the agent reported that it was fully aware that its actions will cause harm to a human being.
+
+2. The game framing may limit generalizability in two ways: (1) models may be following game rules rather than exhibiting deception that would occur in deployment, and (2) the artificial stakes may not activate the same neural mechanisms as real-world deception. While the authors acknowledge this is a "controlled deception laboratory", the connect between game-based deception and deployment risks needs stronger justification.
+
+3. It would drive the point home if the Secret Agenda test bed could elicit deception in case deception is clearly harmful, though I admit that deception of any kind is evidence enough - it would be trivial for a third party to cause the model to deceive.
+
+4. Performing section 7 scatter plot for Secret Agent SAE latents seems like a natural step that could shed light on the proposed feature search methodology.
+
+5. Along the same lines I would be very curious to see how raising or lowering the states changes models behavior and the SAE activations. Will SAE features become more sensitive in a "real" scenario? Will the model avoid deception knowing that it will cause harm?
+
+### Questions
+1. In section 7.3, by "contrasting results" do you mean the difference between Secret Agenda vs Insider Trading or something else? If so, why was the "top discriminative features" not and PCA+t-SNE scatter plot analysis not applied to Secret Agenda SAE latents?
+
+2. The authors acknowledge under limitations that game scenarios might not generalize to all deception types. There are clearly tradeoffs here that make it difficult to pin down and also gets at the heart of the problem. If the scenario is a game entirely different features may activate for "in-game deception" compared to "real world deception". Could you understand whether what (if any) SAE features activate highly for "in-game deception"?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper outlines an investigation of strategic deception in LLMs using two developed testbeds – Secret Agenda and Insider Trading Compliance. The former testbed is based on its namesake, a social deduction game with the LLM set as the Dictator, wherein the games are set up such that lying is the easiest path for the model to win. Experiments in this “controlled deception laboratory” show that LLMs consistently resort to deception (Figure 1). More troublingly, the models achieve this deception without activating features that are expected to be linked to deception. On the other hand, the Insider Trading Compliance testbed exhibited activation of deception-linked autolabelled features; the models continued to engage in insider trading almost half the time.
+
+Put together, these results illustrate the serious challenge and risk posed by LLMs strategically lying to maximize their stated objectives. Moreover, the disconnect between autolabelled deception-related features and the activations observed in the Secret Agenda tests limit the utility of tuning these features to limit strategic lying by the LLMs.
+
+### Strengths
+The paper sheds light on an important challenge, especially when generalizing LLMs to other domains. Honesty of models when providing responses is paramount to build trust for users and a necessity for their adoption in domains with high compliance standards. Consequently, testing methodologies to audit models for deception and testing the efficacy of corrective measures is an important contribution.
+
+In particular, the result illustrated in Figure 1 is the most striking because it shows that all the tested models strategically resort to deception most of the time. Granted that Secret Agenda puts the models is adversarial situations where deception is the easiest path to victory, but it is desired and possibly a must, that LLMs do not lie even in such settings. While the result in Figure 3 is not as striking, the models electing to engage in insider trading nearly half the time is also a worrisome and significant result.
+
+Finally, the conclusion that the pertinence of autolabelled SAE deception-relevant features for model deception is likely setting-dependent is noteworthy as (a) it suggests that the utility of these features and deception mitigation strategies predicated on these features could be severely limited in some scenarios and (b) indicates that feature-based interventions and interpretations are more instructive with structured data.
+
+### Weaknesses
+While I appreciate the wider point and results conveyed by this paper, the writing of the paper leaves a lot to be desired. It is overfull with jargon and, missing references and explanations; this necessitates that the reader either be very familiar with this area or read multiple references so that he/she may understand the paper and the results contained therein.
+
+An example of this are the repeated references to SAEs and features labeled by SAE but its full form (Sparse Autoencoder) is only stated on Page 5. Moreover, there is no explicit discussion of SAE-based labelling of features and its uses for interpretability. Another example of the lack of details are the various game contexts in Section 5.3, with little explanation for the game contexts and explanations for the authors’ selection of these contexts in their tests.
+
+### Questions
+**Questions:**
+
+1. What do the authors mean on line 59 when they aver that their “operationalization remains agnostic to assumed beliefs”?
+2. On line 260, it is stated that refusal responses comprise the majority of outputs. This appears to contradict the results in Figure 3, and more broadly contrasts with the results of the Secret Agenda tests.
+
+**Suggestions:**
+
+1. In the conclusion, the authors state that “identity-feature interventions often degraded outputs into repetitive, incoherent loops.” This is the first mention of any such result in any part of the main paper, and hence does not follow from any of the preceding discussion. The previous discussion of this result should be moved into the main paper or this should be removed from the conclusion to ensure coherence of the manuscript.
+2. Please justify any design choices made in the proposed test beds.
+
+### Soundness
+4
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/IvG90aRAL0.md b/human_reviews/IvG90aRAL0.md
new file mode 100644
index 0000000000000000000000000000000000000000..55dd9c1811bb7a45e82aab3d56b46f810b97d2d5
--- /dev/null
+++ b/human_reviews/IvG90aRAL0.md
@@ -0,0 +1,193 @@
+## Human Reviewer 1
+
+### Summary
+This paper provides a quantum version of the Frank-Wolfe algorithm for constrained convex optimization. Compared to prior work (Chen & de Wolf, 2023) which deals with regression with l1 and l2 norm constraints, the authors tackles the convex optimization in a more general setting, proposing methods for optimization on a smooth convex function with l1 norm constraints, a simplex constraint or a latent group norm constraint, as well as matrix nuclear norm constraints. Their algorithm can provide quadratic speedups in terms of the dimension of the domain.
+
+### Strengths
+1. The paper addresses an interesting problem in quantum optimization and generalizes results to a much larger set of convex optimization problems, extending the applicability of such algorithms from regression to other potential fields such as signal processing (sparsity constraints via l1 norm), game theory (zero sum games with simplex) and SDPs (nuclear norm optimization).
+2. Proofs and assumptions are clearly documented, with different scenarios of gradient obtainment for the vector case discussed in detail.
+
+### Weaknesses
+1. Cost of additional qubits and gates not provided for Theorem 6 in Table I.
+2. Applications of this paper can be more clearly articulated, i.e. what's been listed in strengths 1.
+3. Assumption for gradient obtainment in the matrix case seems a bit strong, as the gradient has to be low rank _and_ accessible in a KP tree.
+
+### Questions
+1. Given that some previous quantum algorithms that tackle the problem of convex optimization rely on the multiplicative weight update method eg. quantum LP and SDP solvers, I am curious as to how the quantum Frank-Wolfe method proposed in this methods compares to these methods and what potential advantages/disadvantages exist for the quantum Frank-Wolfe method.
+2. Why is a different assumption for gradients used for the matrix case different from the vector case? Is the gradient estimation algorithm not applicable to matrix cases?
+3. I think the strength of gradient assumption in the matrix case may be stronger than the membership and separation oracles in ariXiv:1809.00643 as you could obtain such oracles when you have both function and gradient access. How would the algorithm perform this weaker set of assumptions is provided instead of the gradient assumption?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This work presents a framework for Quantum Frank–Wolfe (QFW) algorithms, extending classical projection-free convex optimization to the quantum setting. The authors design quantum analogues of the Frank–Wolfe method for both vector-domain (e.g., $\ell_1$-ball, simplex constraints) and matrix-domain problems (e.g., trace-norm constraints). By leveraging quantum primitives such as Dürr–Høyer maximum finding, Jordan’s quantum gradient estimation, and quantum singular value estimation (QTSVE), they show their algorithms achieve a $\sqrt{d}$ improvement in dimensional dependence while maintaining the classical convergence rate of $O(1/\varepsilon)$.
+
+### Strengths
+1. The manuscript presents proofs and complexity analysis, which seem reasonable.
+
+2. The proposed quantum framework attempts to address a range of convex optimization problems in both vector and matrix domains, including $\ell_1$ norm and trace norm (nuclear norm) constraints.
+
+3. The manuscript presents a theoretical exploration of quantum algorithms in the context of convex optimization problems.
+
+### Weaknesses
+1. The lack of simulations and qubit estimates for the core matrix algorithms (QPM/QTSVE) makes it challenging to assess the practical feasibility and actual performance of the proposed quantum speedups.
+
+2. The algorithm requires strong quantum oracle access (e.g., normalized row states and function value oracles), which are currently not feasible on NISQ devices.
+
+3. The algorithmic components (quantum maximum finding, SVD estimation, gradient estimation) are not new.
+
+4. The use of $\tilde{O}$ notation hides constants that could have a significant impact on the practical runtime and performance of the algorithm.
+
+### Questions
+1. The QFW algorithm is designed for convex optimization, do you think its techniques could be adapted to solve non-convex problems like BQP, or provide useful insights for tackling such NP-hard problems?
+
+2. How does the quantum acceleration of the Frank-Wolfe algorithm for sparse convex optimization compare with the optimization methods for bi-quadratic programming over unit spheres (as discussed in [1]) in terms of computational efficiency and the ability to handle high-dimensional optimization problems?
+
+
+
+
+[1]. Li, S., et al., Tighter bound estimation for efficient biquadratic optimization over unit spheres, Journal of Global Optimization, 2024.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper studies how quantum computing can accelerate projection-free optimization methods, particularly the Frank–Wolfe (FW) algorithm, which avoids costly projection steps by solving linear subproblems. For example, they studied for $\ell_1$-norm and simplex constraints for vector optimization problems, and nuclear norm constraints for matrix variables.
+
+### Strengths
+- Originality: the authors study quantum acceleration for projection-free convex optimization for several classes of optimization problems. They propose some ways to achieve quantum acceleration under the FW framework, like quantum gradient estimation, singular value extraction, et.c.
+
+- Quality: They gave theoretical analysis of their methods, proving a worst case guarantee.
+
+- Clarity: The writing of the paper is good. Their problem formulations, algorithms and theoretical results are presented in a structured way.
+
+- Significance: Projection free methods for optimization is widely used and important in machine learning. Their results show the possibility of quantum speedups in this aspect.
+
+### Weaknesses
+The paper’s algorithmic advances rely heavily on existing quantum subroutines—such as quantum maximum finding, gradient estimation, and singular value extraction—raising questions about how much novelty lies beyond combining these tools within the Frank–Wolfe framework. The authors could better articulate what new technical challenges are overcome or what insights are unique to the projection-free setting. For example, what is the novelty of this work on vector variable problems compared with Chen & de Wolf (2023)?
+
+Moreover, the analysis would benefit from a clearer discussion of applicability and limitations. The claimed speedups depend on assumptions like low-rank gradients and favorable spectral gaps; in dense or ill-conditioned cases, the advantage may vanish. Explicitly characterizing these regimes and their practical implications would strengthen the paper’s significance.
+
+### Questions
+- Clarification on Novelty and Technical Contributions: Beyond integrating known quantum primitives, what are the key new technical insights or analyses specific to the projection-free (Frank–Wolfe) setting? For example, are there difficulties in ensuring convergence or oracle compatibility that required new ideas?
+
+- Regime of Quantum Advantage: The quantum speedups depend on parameters like the rank, singular value gap, and Lipschitz constants. Could you provide a more explicit characterization of the parameter regimes where your algorithms achieve practical advantage over classical FW? Also, are there examples (synthetic or theoretical) where these advantages disappear or become marginal?
+
+- Clarification of the Matrix-Case Analysis: In the matrix domain, your algorithms assume precomputed gradients. Would including gradient computation change the overall asymptotic complexity or speedup factor? The analysis relies on rank and spectral gap assumptions—can you discuss robustness when these assumptions are only approximately satisfied?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper investigates projection-free optimization for sparse convex problems. It proposes two quantum algorithms—handling vector and matrix domains respectively—that achieve improved complexities by reducing the dependence on the dimension d.
+
+### Strengths
+The paper is well-written, featuring a clear presentation of the methods, the obtained complexity results, and comparisons with prior works.
+
+### Weaknesses
+My primary concern pertains to the paper's motivation. I find the core motivation insufficiently justified. The manuscript does not adequately establish a compelling need for specialized quantum algorithms for this particular class of problems. From my perspective, the proposed method appears somewhat ad-hoc, lacking both a clear demonstration of practical application and the provision of new, general insights for the field of quantum algorithm design.
+
+### Questions
+1. What is the motiveitaion of this paper? Why do we need to solve this type of problem?
+2. Why do we need to accelerate Frank-Wolfe algorithms? Is it possible to design special algorithm for these sparse learning problems?
+3. Recent advanves in non-convex optimization often solves sparse (low-rank) problem by reformulating the problem by a quadatratic parametrization problem? Why do you work on this way?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+The paper is focused on convex optimization with convex constraints in high dimensional settings. The authors propose a quantum approach for achieving quadratic speedup, in terms of the problem dimensionality, by using quantum computing to solve the subproblems in Frank-Wolfe optimization algorithm.
+
+### Strengths
+The paper provides an original approach towards solving constraint optimization problems. The significance of the result is diminished, as noted in weaknesses, but deficiencies in complexity analysis of the method and its assumptions. The paper is clearly written, although the assumptions should be more prominently analysed.
+
+### Weaknesses
+The main weakness involves unrealistic assumptions that affect the complexity of the full algorithm. For example, step 7 in Alg. 2 involves preparing, in each Frank-Wolfe iteration, a state
+$\sum_{i=0}^{d-1}|i>|x^{(t)}>|0>$, with $|x>$ defined in Assumption 3 to be $|x> = |x_1>|x_2>…|x_d>$. The state is over $d+2$ qubits. Similar qubit $O(d)$ qubit requirement is present in the rest of scenarios considered in the paper. This linear qubit requirement severely limits the applicability of the method for the stated goal of addressing high dimensional (high $d$) optimization problems.
+
+Preparing a $d$-dimensional arbitrary qubit state is hard in general, yet the impact of this step on the complexity of the whole method is not discussed.
+
+Some terminology could be revised, e.g. authors mention “sparsity-constrained problems” in the introduction, but actually address L1 norm and not L0 norm constraints.
+
+### Questions
+Are there any specific properties of $|x^{(t)}>$ over the iterations that would make state preparation efficient?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/JEYWpFGzvn.md b/human_reviews/JEYWpFGzvn.md
new file mode 100644
index 0000000000000000000000000000000000000000..eacb806b8385bbb3d481a82d9a1440e8eaa12c82
--- /dev/null
+++ b/human_reviews/JEYWpFGzvn.md
@@ -0,0 +1,110 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes an adaptive visual tokenizer that allocates a more optimal compressed sequence length than existing methods based on information theoretic principles. This paper demonstrates that prior works’ training methods are often suboptimal, imputing bias that makes the adaptive compressions lower-quality despite their adaptability. It further claims that the optimal design for the compressed token length should be proportional to the negative log likelihood of the input, and thus uses the learned ELBO to modulate the input compression factor. The proposed router uses this principle to more optimally allocate tokens for compression, and the top K tokens are selected based on their log likelihood. The results demonstrate that InfoTok achieves better performance at the same compression rates as comparable methods.
+
+### Strengths
+1) This paper provides some much-needed theoretical grounding to the adaptive tokenizer space, and attempts to pin down what `optimal’ adaptive compression should look like.
+
+2) Experiments are very comprehensive and clearly demonstrate that InfoTok achieves better reconstruction at the same compression rate compared to other adaptive tokenizers.
+
+3) While the results are incremental on their own, the entire paper is well structured and motivated, and properly places all the contributions in context, making the result valuable for the community.
+
+4) While the claims in the theorems are initially hard to parse, they are empirically supported by experiments that make the intuition clearer.
+
+### Weaknesses
+1) Key definitions are not well highlighted in the text, and the mathematical sections are poorly written and hard to follow. Since definitions are missing from the theorems, the explanation is rather hard to follow. For example, the entropy H is not clearly defined, \mathbb{D} not defined. Similarly r(N | x) not defined in Alg 1 input. While I may have missed these definitions, I would suggest not burying them in the text and making key components clear and easier for readers to refer to.
+
+2) It would be helpful if there were some visual results demonstrating the differences in InfoTok's reconstruction at different token lengths for the same image, so we could see what inputs are determined to need lower ones and which are determined to need higher ones. The reconstructions shown in Figure 2 are not particularly compelling - the compression results are considerably worse than Cosmos-DV.
+
+3) There are no video samples provided in the supplementary material or project page which makes qualitative analysis of the results challenging.
+
+### Questions
+I don't have any strong suggestions, but would appreciate responses to my above critiques and would like to see them addressed in the next version of the paper.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes InfoTok, an adaptive discrete tokenizer that leverages an information-theoretic formulation to allocate token budgets based on the data's compressibility. The method introduces a principled way to determine token lengths using a normalized ELBO-based router and achieves strong empirical performance with a conceptually simple approach.
+
+### Strengths
+* The paper is well structured, and the mathematical formulation is precise.
+* It achieves competitive or superior performance using a lightweight and interpretable mechanism.
+* The authors provide rigorous justifications connecting ELBO with optimal token length, and the derivation is insightful.
+* The ELBO-based routing and token selection reuse existing encoder-decoder structures and introduce minimal inference cost, which is appealing in practical deployments.
+
+### Weaknesses
+* Is the per-token ELBO computed purely based on the encoder-decoder’s end-to-end reconstruction path? Must this be explicitly introduced during training, or can the method be plugged into any VAE-style model without changes? Specifically, can non-VAE tokenizers be adapted to this framework?
+* If N_max is small or the compression ratio is extremely low (e.g., β< 0.1), what are the observed effects on stability and convergence? Would the KL term dominate or explode in such settings, and does it impact model converging or generalization?
+* The method is designed for videos. Would it generalize to other structured data types such as audio and 3D point clouds? Do different modalities affect the ELBO-based router's assumptions or effectiveness?
+
+### Questions
+Please refer to the weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+In this paper, an algorithm called InfoTok is proposed for adaptive video tokenization. The proposed algorithm determines the token length based on ELBO for near optimal compression. For compression, InfoTok utilizes the ELBO based token selection. Thus, it can be integrated on the top of existing tokenizer architectures. Also, the proofs for the mathematical theorems are provided. The experimental results show that the proposed algorithm outperforms the existing methods.
+
+### Strengths
+- This paper clearly describes the proposed algorithm and is easy to follow.
+- This paper provides the proofs for the theorems.
+- The proposed algorithm achieves good performance on various benchmark tests.
+
+### Weaknesses
+- It would be helpful if the paper included a discussion of the limitations of the proposed approach.
+- Since the method seems general enough to be applied to images, it would be helpful to explain the rationale for limiting the experiments to videos.
+- typo
+ - L184: an more accurate -> a more accurate
+
+### Questions
+Though I have carefully reviewed the paper including the appendix, I did not observe any major drawbacks and I believe the proposed algorithm makes a meaningful contribution to adaptive video tokenization. Please see my minor concerns in the weakness section.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/LD6B7AvkZq.md b/human_reviews/LD6B7AvkZq.md
new file mode 100644
index 0000000000000000000000000000000000000000..e711ff611982c6199f7662e85b98f5893e314e0d
--- /dev/null
+++ b/human_reviews/LD6B7AvkZq.md
@@ -0,0 +1,194 @@
+## Human Reviewer 1
+
+### Summary
+This paper investigates how Transformer-based autoregressive models learn languages generated by Probabilistic Context-Free Grammars (PCFGs). The authors provide a theoretical framework showing that the Kullback-Leibler (KL) divergence loss decomposes across the PCFG's subgrammar structure. Empirically, using small Transformer models, they demonstrate that models reduce loss across all subgrammars in parallel, rather than mastering simple structures first. Their experiments also reveal that these models perform poorly on deeply recursive structures and that pretraining on subgrammars can improve the final loss for these smaller models.
+
+### Strengths
+1. The paper provides an elegant theoretical derivation (Theorem 4.6) that helps explain why Transformers perform poorly on deeply nested grammatical structures . The recursive formula for KL divergence based on expected recurrence is a strong conceptual contribution.
+
+2. The experiments show that Transformer models reduce loss across all subgrammars simultaneously, which contrasts with the developmental stages observed in human language acquisition.
+
+3. The work includes a clear set of experiments on small models demonstrating that subgrammar pretraining can improve final performance , offering a practical insight for training on structured data.
+
+### Weaknesses
+1. The key "understands composition" assumption, which forms the basis for Corollary 4.5 and Theorem 4.6, is very strong. The paper does not provide sufficient empirical validation to determine to what extent this assumption holds for practical, trained models, which limits the applicability of these specific theorems.
+
+2. The experiments on Large Language Models (LLMs) are limited to anecdotal tests on "ChatGPT-5-Instant". This experiment may conflates two different tasks: calculating the result of an arithmetic expression and modeling the grammar of that expression. The task of calculating a result is not equivalent to the task of generating an expression from a grammar, especially from a model training perspective. Therefore, the difficulty an already-trained model shows in calculating a deeply recursive arithmetic expression is not direct evidence that a Transformer-based model would struggle to be trained on a deeply recursive PCFG (the paper's primary claim).
+
+3. The comparison in Section 5 between pretrained models and those trained from scratch seems unfair. Pretraining on a subgrammar essentially gives the model a strong hint, or an "inductive bias," about the PCFG's correct structure. The baseline model, however, gets no such hints and must discover this hidden structure all on its own. Therefore, the finding that pretraining improves the final loss for smaller models might primarily demonstrate the benefit of curriculum learning and injecting this strong structural prior.
+
+### Questions
+1. There appears to be two minor typo in the derivation in Section 4.2 (lines 211-213, page 4). In the second line of the equation.
+
+The correct expansion of - log Q_\theta(\alpha a\beta) should be [ - log Q_\theta(\alpha ...) - log Q_\theta(a|\alpha) - log Q_\theta(\beta|\alpha a)]
+
+The current text incorrectly uses positive signs for the second and third components. Additionally, the conditioning context for the final term appears as \beta|a\alpha, which seems to be a notational typo for the correct \beta|\alpha a.
+
+In the third term of the equation on line 214, the probability $P(a)$ should likely be written as $P_A(a)$.
+
+2. ChatGPT-5-Instant and ChatGPT-5-Thinking seems not formal name of these two models.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The work analyses the language models’ learnability of PCFGs. They introduce a subrammar-based framework for probing an architectures learnability. A subgrammar decomposed KL is derived. The authors find that the loss decreases in parallel over the subgrammars. The work also considers the impact of pre-training and depth of the grammars.
+
+### Strengths
+The idea of studying the learnability of sub-grammars is sound and interesting. And using formal languages is a, by now, common approach to study learnability. Using hierarchical subgrammars is a natural, and the decomposition of the KL is as expected.
+
+The pedagogical approach of the paper, laying out standard definitions and derivations is welcome. And giving "worked examples” of e.g. the KL decomposition at the bottom of page 4.
+
+The three kinds of analysis are nice (albeit a bit shallow individually)
+
+### Weaknesses
+The work overstates the novelty of using CFGs to probe language models' learnability, e.g. in the introduction “this work initiates the theoretical and empirical study of training dynamics over CFGs” but this is repeated in many places. See for instance Sennhauser and Berwick 2018 (Evaluating the Ability of LSTMs to Learn Context-Free Grammars), or Allen-Zhu et al 2023 (How Language Models Learn Context-Free Grammars).
+
+Another drawback is that the grammars are tiny, and the model sizes not ablated with grooving grammars. I understand a framework is being suggested, but to justify the framework it would be good to do some kind of scaling. It doesn't have to be for very large models, or CFGs with thousands of rules. But sampling grammars (and averaging over them) and doing so for grammar sizes of e.g. 10,100,200,400,800 rules would indicate whether the findings are due to the simplicity of the languages or not. Especially in a section titled “How Language Models Learn”
+
+In line 301 you say you train on several synthetic CFGs on transformers, but the settings are missing or not referenced. I.e. architecture and training parameters, grammars sizes.
+
+In line 379 you make a claim about an effect that diminishes as models size and complexity increase but it seems to be backed by a single example.
+
+The ChatGPT-5-Instant experiment is unclear, what is the setup? It is also missing a citation or description.
+
+I recommend the authors fix the overly bold claims and smoothen the writing a bit, consider the related literature a bit better and strengthening the empirical study when revising their work. Ensuring full reproducibility is also important, make sure hyperparameters and configurations are reported and referenced.
+
+Minor:
+In the introduction you state that training an LLM for studying its training dynamics is unfeasible. Even so, there is plenty of room to study their learnability without reaching SOTA and no reason to believe the findings don't apply to the top models.
+
+You could condense the standard definitions (kl, entropy, mle etc) a bit as prose, but im ok with the definition environment.
+
+Please use numbers by equations (the equation or align environments), it’s hard to refer to them otherwise.
+
+### Questions
+In the activation space analysis you show that pretraining on in-domain data helps. How would you take this further, i.e. do you see some options for using more complex/gradual curricula?
+
+The deeper recursion experiment is interesting, do you see a way to connect it to the curricula approach?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper aims to study how transformers learn context-free grammars as a step toward a theory of language modelling. The authors claim that transformer training on context-free grammars can be understood by decomposing the cross-entropy loss into contributions from subgrammars. Under the assumption that a language model "understands composition", the authors derive a decomposition of the loss that elucidates the role of subgrammars and their recursive occurrence. This is an interesting and timely direction, but the contribution is unclear to me. Due to this lack of clarity, it's impossible for me to properly judge this contribution unless some of my doubts are addressed first (see below).
+
+### Strengths
+This is an ambitious and relevant topic, and I do believe that studying how language models acquire simplified formal languages is the path towards a predictive theory of large language models.
+
+### Weaknesses
+### Relation to previous literature
+
+First, the claim that the authors' work "initiates the study of the learning dynamics of transformers trained on PCFGs" is wrong. There are at least two groups contributing in this direction: https://arxiv.org/abs/2406.00048 (see also https://journals.aps.org/prx/abstract/10.1103/PhysRevX.14.031001?__cf_chl_rt_tk=UOc8KN3VOXQLYip1DgN1hgH_sgm85mQO4KFwHUmz38A-1761924271-1.0.1.1-05csO._aVplfQKTVpNHOiSYCZ.oTz8qXQePSbQqMnLE, https://arxiv.org/abs/2505.07070, ) and https://arxiv.org/abs/2305.13673v4 (one iteration https://openreview.net/forum?id=qnbLGV9oFL also shares a portion of the title with the present submission). These contributions should be acknowledged and their relation to the present paper discussed.
+
+---
+
+### Clarification of the exact contribution
+
+If I understand correctly, the main technical contribution is the proposed loss decomposition. What is the intended consequence of this result? For instance, the authors claim that the decomposition implies that the model learns all subgrammars in parallel. However, a decomposition of the population loss can only constrain the location of the final optimum, not the dynamics of optimisation. In particular, it has no direct implications for convergence rates, sample complexities, or learning order. What additional assumptions would be required to justify the claim of “parallel learning”?
+
+---
+
+### Technical claims
+
+1. **Inconsistent notation (pp. 4–5).** Symbols change mid-derivation (e.g., (P(\alpha\dots)) vs (P(\alpha\mid\varepsilon))), and in *Definition 4.2* the dependence of the summand on (a) is unclear. Please fix the notation globally and clarify how (a) enters the RHS of Def. 4.2/
+
+2. **Application of Definition 4.2.** When (A) is a fixed string (as in (D_{\mathrm{KL}}(P\Vert Q)_{\alpha})), I cannot reproduce the final equation on p. 4. An explicit worked example would help verify the derivation.
+
+3. **KL decomposition of Theorem 4.3. from Definition 4.2.** Please show the full derivation of the KL decomposition.
+
+4. **“Understanding compositionality.”** This assumption is too vague. Does it hold before, during, or after training, and what measurable property defines it?
+
+6. **Implications of Theorem 4.6.** Specify whether the result concerns the population optimum or predicts learning dynamics (rates, ordering, or sample complexity). If the latter, state the additional assumptions required for “parallel learning.”
+
+---
+
+### Empirical validation
+
+The empirical section does not clearly test the theoretical claims. If the main statement is that the overall loss equals the sum of the losses over subgrammars, this should be explicitly validated in a figure, rather than requiring the reader to infer it by visually summing multiple curves. Moreover, the role of Figure 2 is unclear relative to Figure 1---what new information does it convey? Finally, the dependence on the recursion number (R, or rather its expected value), is never systematically explored or quantified.
+
+### Questions
+See weaknesses section.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper investigates how transformers learn probabilistic context-free grammars (PCFGs). It first derives several theoretical properties describing how the KL divergence of PCFGs decomposes over subgrammars. Using this framework, the authors show that transformers learn all grammatical components in parallel, unlike humans who acquire syntax hierarchically. Experiments with small transformers confirm these findings and demonstrate that pretraining on subgrammars improves performance and yields more structured internal representations, though the benefit decreases for larger models. Finally, the study shows that models can manage long but shallow dependencies yet struggle with deeply recursive syntax, a limitation also observed in large language models.
+
+### Strengths
+It is important to understand how transformers learn CFGs. Although previous work (Allen-Zhu et. al. 2023) has studied in detail of the mechanism on how transformers implement CFGs, the dynamic analysis remains blank. The paper studies this important problem. They reveal an interesting phenomenon that transformers lean all subgrammars simultaneously.
+
+### Weaknesses
+Although the topic is important, the results feel incomplete and lack depth.
+
+1. The theoretical part at the beginning is quite trivial and unnecessary for understanding the dynamics. The first main result only appears at the end of page 6, making the presentation hard to follow.
+
+2. Regarding how transformers implement CFGs, Allen-Zhu et al. (2023) have already provided detailed and insightful analysis that largely covers the results here. The paper does not clearly explain its own contribution beyond that work.
+
+3. The only genuinely new finding seems to be that transformers learn all subgrammars simultaneously, but the analysis is shallow. I would like to see more detailed investigations and ablations to uncover the mechanisms behind this behavior.
+
+### Questions
+None.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/NIvqiJ8R4J.md b/human_reviews/NIvqiJ8R4J.md
new file mode 100644
index 0000000000000000000000000000000000000000..1657c3f73a18528392fa9b7a7979ca55de59312f
--- /dev/null
+++ b/human_reviews/NIvqiJ8R4J.md
@@ -0,0 +1,213 @@
+## Human Reviewer 1
+
+### Summary
+This work presents an adaptive tutoring framework consisting of two stages, integrating collaborative cognitive diagnosis with dynamic instructional adaptation. The first stage aims to model the student’s cognitive state through collaborative cognitive diagnosis. The teacher utilizes a successor-first method to efficiently generate diagnostic questions, ensuring their accuracy through an expert-assistant-verifier pipeline. In the second stage, based on the estimated cognitive state, the teacher uses slow-thinking-based methods to select teaching strategies from a strategy pool to guide the student in solving problems.
+
+### Strengths
+1. The entire framework is meaningfully designed and the authors present the prompt design clearly.
+
+2. The authors present a systematic evaluation by comparing with baselines in cognitive diagnosis and adaptive tutoring, with ablation studies in different modules and backbones.
+
+3. Several case studies and deeper analysis regarding the effectiveness of this framework in specific education scenarios.
+
+4. The related work presents necessary background for readers to understand the context.
+
+### Weaknesses
+1. Unclear model design rationale. It is unclear what the unique strength of this proposed model is and why it should be, compared with prior models. The introduction and related work sections briefly stated that prior work can not do something, but the detailed research gap and how this work addressed such gap are unclear.
+
+2. The current framework is meaningful, but there is no fundamental breakthrough or unique insights in algorithms or model side. It is more like a manually crafted application system in education with prompt-engineering.
+
+3. Dataset Scale. There is only one dataset with only 184 questions.
+
+4. The main experiment used simulated students for evaluation, which does not seem to be convincing. It is also unclear how many simulated students were generated, the differences among the simulated students, and rationales for such design. Without such details about student settings in the experiment, it is hard to evaluate the rigor and effectiveness of this work.
+
+5. Lack of statistical tests (such as t tests) for most tables to show the significance.
+
+6. Main Experiment: The experimental measurements may not really support the claimed contribution in line 107: "stimulating critical thinking". Which metrics measure how the tutoring system improves the critical thinking of students in either simulation or real student study?
+
+7. Real Student Experiment:
+
+The real student experiment is unclear and does not look like a formal study. Is it a between-subject design or within-subject design or a mixed study design?
+
+For this statement: "one of six tutoring methods is randomly selected (with equal probability) to tutor the student", does it mean that each student only receives one tutoring method (between-subject design) or each student receives different tutoring method for different questions? If so, how do you control so many human factors like different students in different questions with different tutoring methods? If one question is delivered to different students in different tutoring methods, how do you know the result difference is due to student subject difference or due to the tutoring method difference?
+
+Participant scale and limited samples: So many human factors usually need larger-scale user study rather than N = 67. The authors can report the power via power analysis to show the statistical significance with the current participant number. Moreover, for this statement "The student who selected the most questions chose 12, while the student who selected the
+fewest chose 2", does it mean that each student only tested 12 questions at most? This limited sample size is probably not convincing to show its effectiveness.
+
+
+Study design and metrics: Another concern is that the current study design and metrics may not really support the claim of enhancing tutoring performance. Most metrics are subjective (e.g., Appropriateness, Sentiment, Inspiration) and do not provide a very objective measurement. The success rate may be better quantified and more convincing, but Pelican's success rate (87%) is lower than simple step-wise methods (87.3%).
+
+
+Minor Issues:
+
+There are some typos.
+
+### Questions
+Please check my concerns and questions in Weaknesses section.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes an adaptive tutoring framework called PELICAN, which is designed to address the limitations of existing LLMs in personalized education. It achieves student-centered teaching through a two-stage process: collaborative cognitive diagnosis and dynamic instructional adaptation. Specifically, it first organizes knowledge points into a hierarchical dependency structure and then conduct CD to get student's cognitive state. Then, the teaching strategies are dynamically selected from "fast thinking" and "slow thinking" modes based on the diagnostic results. Experiments conducted on GAOKAO bench demonstrate the effectiveness of the proposed framework.
+
+### Strengths
+1. The proposed 2-stage personalize education framework is well-defined and reasonable, and the introduction of dual system in stage-2 is convincing and fitting the problem well.
+2. The experiments on GAOKAO Bench is comprehensive, effectively demonstrates the superiority of the proposed PELICAN.
+3. The writing and structure of this paper are clear and easy to understand.
+
+### Weaknesses
+1. In my understanding, the construction of knowledge tree may heavily relies on manual work, which may hurts the scalability of the proposed framework. For example, scaling to full K12 education or vocational education would lead to a sharp increase in manual costs.
+2. The evaluation limits to only 1 benchmark (GAOKAO Bench), it will be more convincing if authors validate PELICAN framework on more benchmarks.
+
+### Questions
+See weaknesses.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The authors introduce PELICAN: a way to personalize education utilizing both LLMs and cognitive diagnosing. The LLM utilizes cognitive diagnosis to identify appropriate responses tailored to the student's cognitive level and understanding. Each problem has different knowledge components that the student must master and these are organized into a hierarchical structure. Based on this knowledge state, the adaptive tutoring will select an appropriate response to solve problem p with the student via dialogue. If the number of dialogue rounds with a student exceeds a threshold M, it is assumed that they are facing persistent cognitive obstacles, and slow-thinking is enabled to focus on smaller subproblems. The authors tested their method on the public Gaokao dataset, as well as a real-world study involving high schoolers.
+
+### Strengths
+The paper is well-motivated, with a clear introduction, and is overall easy to follow. I also think the figures are well-made and help aid the explanation of the ideas and methodologies. The appendix is thorough.
+
+### Weaknesses
+Overall, the paper lacks deep substance and novelty. It is more of an applied research paper, but it lacks statistical rigor (e.g., ANOVA tests, effect sizes, p-values). It could become more interesting and impactful with greater care and attention to detail for deeper results, analysis, and presentation, etc. However, I also don't find it to be a great fit for ICLR and don't think the audience of ICLR would be interested in this topic. This paper appears to be more closely aligned with AI applications in education venues, such as AIED, EDM, and EAAI, among others, once it has been improved. I have little to specifically point to in a critique of it, other than that it is a limited-scope paper that utilizes GPT models for teaching. This also raises concerns about the future reproducibility of the reported results. It is very time-specific and niche.
+
+Abstract:
+* Have LLMs really generated attention in education because of their extensive knowledge base and reasoning capabilities?
+* Extra space between "at" and "here" for code reference.
+
+Introduction:
+* Change "I Don't understand" to "I don't understand" in Figure 1
+* Add spacing: "OK,I get it!" between "OK," and "I" in Figure 1
+* First two paragraphs need citations to support their various claims
+* Parentheses around citations are needed. In-text citation references are likely not the style for ICLR.
+* Line 80: random word "Planning." appears
+* Figure 3: Why does "Explanation" lead to "Explanation" in the slow-thinking? Why does "Decomposition" have a crown?
+* Line 148: random word "Planning." appears
+
+3.2: "introduce a successor-first strategy, in which the teacher prioritizes assessing leaf nodes or nodes whose successors have already been evaluated," I thought line 175 said "a student can only master a child node after mastering its parent"?
+
+3.3: "dual system theory" citation? lines 215, 246
+
+Line 264: Is this what you are proposing? Simulated teaching tree? Or is that something that already exists in the literature?
+
+Line 270: Does m = |S| (i.e., the length of the strategy pool)? If not, why?
+
+Section 3: The formulas seem overly high-level to the point of being complete black boxes with no reproducibility
+
+Section 4: Reporting overhead in cost of dollars? Maybe should use something more concrete, like token usage.
+
+Section 4: Why not cite baseline methods?
+
+How are suitability, logicality, informativeness, reliability, and overall quality calculated in the results?
+
+The real-world experiment sounds limited. What is the average and standard deviation for the problems that the students voluntarily selected to be tutored? And what was the distribution like amongst the 6 conditions? Why no ANOVA test results?
+
+Line 1314 in Appendix L.4.: "FIANL" should be "FINAL"
+
+### Questions
+* Have LLMs really generated attention in education because of their extensive knowledge base and reasoning capabilities?
+
+* Figure 3: Why does "Explanation" lead to "Explanation" in the slow-thinking? Why does "Decomposition" have a crown?
+
+3.2: "introduce a successor-first strategy, in which the teacher prioritizes assessing leaf nodes or nodes whose successors have already been evaluated," I thought line 175 said "a student can only master a child node after mastering its parent"?
+
+3.3: "dual system theory" citation? lines 215, 246
+
+Line 264: Is this what you are proposing? Simulated teaching tree? Or is that something that already exists in the literature?
+
+Line 270: Does m = |S| (i.e., the length of the strategy pool)? If not, why?
+
+Section 4: Why not cite baseline methods?
+
+How are suitability, logicality, informativeness, reliability, and overall quality calculated in the results?
+
+The real-world experiment sounds limited. What is the average and standard deviation for the problems that the students voluntarily selected to be tutored? And what was the distribution like amongst the 6 conditions? Why no ANOVA test results?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The authors introduce PELICAN, a large language model–based tutoring framework to deliver personalized education. It is designed to give adaptive feedback to students. It has two primary components: cognitive diagnosis and adaptive tutoring. The cognitive diagnosis uses a hierarchy of concept knowledge graph and uses an expert–assistant–verifier to generate diagnostic questions. Adaptive tutoring creates explanations and strategies based on the diagnosed cognitive state. It uses a dual-system strategy: fast and slow thinking to tailor based on the necessity of student. By extensive experiments across synthetic and real students, the authors show that PELICAN can be highly effective for LLM-driven personalized tutoring that mirrors human pedagogical behavior.
+
+### Strengths
+The primary strength of the paper lies in the clarity of its presentation. The authors take an intuitive idea to adapt LLMs to humans and show such system can work in practice. The two major components in PELICAN have been clearly written and motivated. The authors explain the importance of each and every component in the training pipeline. For example, the cognitive modeling component uses a hierarchical knowledge tree, with a well-defined curriculum that traverses from the leaf to the root. In order to ensure robust question quality during diagnosis, Expert–Assistant–Verifier Pipeline. Finally, the authors explain the importance of both short and fast thinking in adaptive tutoring and how they are decided based on the diagnosed cognitive state. By clearly showing improvements on both synthetic and real world students, the authors show the efficacy of their proposed tutoring sysem.
+
+### Weaknesses
+As such, I don't have many concerns with the paper. Please find some of my questions regarding the experiment setup.
+
+a) How fine-grained are the knowledge concepts in the hierarchy? Furthermore, does the system allow more granularity in the concepts, depending on the student?
+
+b) The expert-assistant-verifier pipeline depends on the accuracy of the two LLMs involved. Do the authors conduct ablations on what fraction of the diagnostic questions are noisy? And how much is the performance of PELICAN affected by the noise?
+
+
+Furthermore, the authors should discuss on the diversity of the students involved in the human study. More than just performing well, did the students also report favorable experiences when interacting with LLMs? For example, a hyperparameter that can be controlled is M, which controls the number of times the LLM switches from fast to slow thinking. Is M decided based on whether the student progresses in the problem?
+
+### Questions
+Please see above for my questions.
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/NlHHlqP1zk.md b/human_reviews/NlHHlqP1zk.md
new file mode 100644
index 0000000000000000000000000000000000000000..219f9fbb5f553cff7595b46ae9383a0c7a1ad6d5
--- /dev/null
+++ b/human_reviews/NlHHlqP1zk.md
@@ -0,0 +1,139 @@
+## Human Reviewer 1
+
+### Summary
+This paper evaluates the capabilities of (multimodal) LLMs to produce fine-grained concept annotations. Prior work either relied on human evaluations or used downstream performance as a proxy. The key idea of this paper is that if annotations are sufficient, a LLM should be able to infer the correct class from the annotation alone (Definition 3.1).
+
+The authors investigated concept annotations of (multimodal) LLMs through several stages of annotation refinements (l. 234-240). A so-called fast mode, where the model directly predicts the class from the input image (like in standard object recognition). In the so-called slow mode, the model progressively predicts concept annotations from coarse (e.g., background or superclass) to fine-grained levels (e.g., visual attributes such as the shape or color of bird’s wing).
+
+The experiments show that (multimodal) LLMs generally fail to produce concept annotations that are sufficiently accurate or informative to enable correct class inference from them.
+
+### Strengths
+* S1: The finding that using more fine-grained annotations (slow mode) hurts the correct class inference for fine-grained data like CUB is surprising and interesting.
+
+* S2: The concept annotation sufficiency definition is quite interesting. It captures well what we want concept annotations to look like.
+
+### Weaknesses
+* W1: A core issue with the evaluation framework is that a LLM is used to infer the class. There’s no guarantee that this LLM is good in inferring the correct class from the annotations.
+
+* W2: The claim that “strong performance in downstream tasks may not correlate with adequate conceptual supervision” (l. 462/463) is too strong. Also, I’d like to note that these models often weigh the concepts or only use a subset of them on a per-instance basis. Thus, the conclusion seems not warranted. It’d be more meaningful to take, say, the top-5 concepts per image and try to see if models can infer the correct class.
+
+* W3: The finding that (multimodal) LLMs work not that well to capture fine-grained details is well-known. The paper doesn’t provide a novel insight regarding this point.
+
+* W4: The paper’s writing could overall be improved for clarity.
+
+### Comments
+
+* C1: The explanation of “utility-as-proxy assumption” is very unclear and would be good to refine for better clarity.
+
+* C2: Comparing the 0-shot classification performance to the concept annotation is likely not that fair. Because, for example, these models might have seen the dataset, so the fast-mode numbers might be therefore a too optimistic estimate. However, I understand that this might be hard to control for the authors and, thus, only listed it here as a comment.
+
+### Questions
+* Q1: Limiting the number of classes to four plus the correct class seems very constraining. Why did the authors choose this setting?
+
+* Q2: How would concept annotators that also include distinguishing similar classes compare? The prompts (Appendix B) don’t focus on this aspect and therefore the models might yield annotations that can be confused with other classes.
+
+* Q3: Regarding Fig. 3: What makes post-hoc textual annotations so much stronger than visual-grounded annotations?
+
+* Q4: How do models compare on ImageNet in Tab. 3?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper investigates whether large language models (LLMs) and vision-language models (VLMs) can serve as reliable automated annotators for concept-based explainable AI (XAI) systems.
+The work introduces the Fast and Slow Effect (FSE) framework, which evaluates the sufficiency of concept-class annotations without human supervision.
+FSE models the annotation process as a continuum from a fast (opaque, intuitive) mode to a slow (explicit, conceptual reasoning) mode, and introduces a new metric, the Class Representation Index (CRI), to quantify whether generated concepts adequately represent the target class.
+Through experiments on fine-grained and general vision datasets (e.g., CUB-200, Cars-196, CIFAR-100), the authors find that current LLM-generated annotations are often insufficient, particularly in fine-grained classification.
+Surprisingly, “slow” conceptual reasoning frequently underperforms the “fast” intuitive mode, suggesting that models possess implicit visual knowledge they struggle to express explicitly.
+The paper also critiques the “utility-as-proxy” assumption, that higher downstream accuracy implies better annotation quality, showing this correlation breaks down under FSE analysis.
+
+### Strengths
+- The FSE framework is an original and well-motivated contribution that systematically examines annotation sufficiency, filling a notable gap in XAI evaluation methods.
+
+- The paper offers a convincing empirical analysis revealing a consistent gap between intuitive inference and explicit conceptual reasoning, raising important questions about the interpretability of LLM-driven explanations.
+
+- The paper is well-organized, clearly written, and transparent about procedures, datasets, and metrics, which enhances reproducibility and conceptual clarity.
+
+### Weaknesses
+- The definition of sufficiency is somewhat circular and lacks grounding in formal interpretability theory. It might mistake a good result for true understanding.
+
+- The five-stage annotation process (Background, Superclass, Salient, Detailed, Auxiliary) may heavily influence results. The robustness of findings to prompt variations or alternative hierarchies is unexplored.
+
+- Although the paper critiques “utility-as-proxy,” its proposed CRI metric is still accuracy-based, measuring recoverability of class labels rather than interpretive richness or human-understandable sufficiency.
+
+- The current research strictly limits its focus to image data. Therefore, its effectiveness is uncertain for other forms, such as text, tabular data, time series, or mixed-media reasoning.
+
+### Questions
+- How can CRI or FSE be extended to capture human interpretability, not just internal consistency?
+
+- Would the same phenomena occur in text-only domains (e.g., sentiment analysis explanations) or multimodal reasoning tasks beyond classification?
+
+- Can fine-tuning LLMs explicitly for conceptual disentanglement improve slow-mode sufficiency, or is this limitation architectural?
+
+- Is there empirical evidence that higher CRI correlates with human trust or usability of explanations? Without this, the framework’s practical XAI relevance remains uncertain.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper investigates the problem of explainable AI in deep learning, whether large language models (LLMs) and vision-language models (VLMs) can generate reliable concept-based annotations. While previous studies have shown that LLMs can produce plausible annotations, the semantic adequacy of these annotations is unclear. To address this, the paper introduces the Fast and Slow Effect (FSE) framework, an autonomous self-evaluation methodology. FSE transitions annotation from a fast mode to a slow mode and evaluates each stage using a Class Representation Index (CRI) metric, which measures how well accumulated concepts represent their target classes. Experiments conducted on various visual classification datasets demonstrate that current annotations generated by LLMs lack sufficiently conceptual depth and need more effective and transparent strategies.
+
+### Strengths
+1. The paper is well written, and its motivation is clear.
+2. This paper proposes a new explanatory framework that can automatically evaluate annotation sufficiency without human intervention.
+3. The paper conducts experiments on fine-grained and common datasets with various model families and further re-examines the utility-as-proxy evaluation.
+
+### Weaknesses
+1. The paper initially discusses annotations for both LLMs and VLMs; however, the proposed methodology and experiments focus only on the explanation of vision tasks with VLMs, without evaluating textual explanation tasks or reporting results for LLMs.
+2. The reliability of the concept-chain gathering process and the CRI metric as accurate measures of “semantic sufficiency” remains unclear, as they have not been rigorously validated through human evaluation.
+
+### Questions
+1. How sensitive is the prompt design to different vision tasks? The current five-stage refinement process is evaluated only on general-domain datasets. How well does this template perform in generating visual concepts for more specialized domains, such as medical imaging?
+2. The concept generation process follows a hierarchical structure, for example, from background to detailed features. How does the order or number of steps in this concept chain influence the final results?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/OAXECnLxuk.md b/human_reviews/OAXECnLxuk.md
new file mode 100644
index 0000000000000000000000000000000000000000..db9e0d53fcb74e4bb4889b5221168fcf1ec987c3
--- /dev/null
+++ b/human_reviews/OAXECnLxuk.md
@@ -0,0 +1,153 @@
+## Human Reviewer 1
+
+### Summary
+This work introduces a new MLLM for synthesizing scientific figures as TikZ graphics programs conditioned on raster images. To facilitate this, the authors introduce a highly curated dataset of 30k TikZ images. Compared to related work, this dataset might seem small, but the automated curation process yields higher-quality training examples that lead to better downstream performance. The authors also introduce a new set of task-specific reward functions that can further improve the model via GRPO. Their final model outperforms both proprietary and open-weight baselines on a wide range of automated metrics.
+
+### Strengths
+* The central contribution of the work is the dataset and its curation pipeline. Through manual analysis, the authors identify shortcomings of existing datasets and improve their training examples through automated methods. These findings will be useful for future work (such as injecting comments as an "inline" reasoning trace).
+* Likewise, the defined reward functions seem effective and scalable and will be useful for future work.
+* In general, the paper is well-written and easy to follow.
+
+### Weaknesses
+* The comparison between DaVinci and DeTikZify is not entirely fair, as DaVinci is based on a stronger base model. This means that conclusions about the effectiveness of the data curation strategy (l.375f) could also be due to this difference.
+* Even though the dataset is a central contribution, its creation is not entirely clear. For example, in l.154, the authors mention that they originally collect 360k TikZ snippets. It is not clear at which step these examples are filtered down to only 30k examples.
+* While the findings are interesting, there are few technical novelties presented.
+
+### Questions
+* In l.61, Belouadi et al. use the MCTS algorithm primarily to find outputs with higher perceptual similarity, not to improve the compile success rate.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper addresses the timely topic of diagram-to-code generation by proposing a two-stage learning method: a supervised fine-tuning (SFT) "cold start" followed by GRPO post-training. It also explores two overlooked features, code ordering and descriptive comments. However, the paper's key findings lack support from rigorous experimental data, leading to ungrounded claims about the technical method's efficacy. Moreover, the dataset construction and evaluation methodology present a potential risk of bias, indicating that the work requires further improvement before its conclusions can be considered reliable.
+
+### Strengths
+S1. The proposed two-stage learning approach with SFT + GRPO is a timely fit for the field.
+
+S2. This work draws attention to the often-overlooked features of code ordering and descriptive comments in diagram-to-code generation.
+
+S3. The paper is well written, and the methodology is solid.
+
+### Weaknesses
+W1. The main concern lies in the data construction process, which contains only 30k samples, whereas previous work (DATIkZ v1: 117k, v2: 360k, v3: 456k) used much larger datasets. Though the authors provide more details in Appendix C, key information is still missing. In line 795, they refer to 225k samples, but after stratified sampling by token length, only 58k remain (line 978), and it is unclear how the final 30k samples (line 149) were selected. Moreover, stratified sampling by token length may introduce bias, making the proposed dataset focus more on the long-tail data of the original dataset.
+
+W2. We encourage the authors to provide a concise and clear description of the data construction process in the main content, showing how 366,075 (line 764) valid pairs were reduced to the final TikZ-30k dataset. It is also necessary to provide comprehensive statistical analyses of the dataset at each step to ensure that no bias is introduced.
+
+W3. Bias in the evaluation method is another critical weakness. In line 338, the authors mention sampling 542 instances from 456,000 instances in DATIkZ v3. This small-scale test set cannot provide statistically convincing results, and the unclear sampling method raises concerns about potential distortion. Moreover, the authors should include evaluation metrics consistent with previous studies for better performance comparison.
+
+W4. The reviewer is curious about the “error-free precise feedback” (line 076); however, the authors only introduce it as “a method” (line 263) without experimental support or technical details.
+
+W5. Format/typos:
+- In Figure 1, the Tikz code is changing from “yellow” to “red” while the text is describing “from green to light red” in the top right part.
+- In Table 1, did not bold the best score for SigLIP
+
+### Questions
+See weaknesses
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This work addresses the problem of parsing raster-based scientific figures into TikZ code. The authors introduce TikZ30K, a high-quality dataset constructed through extensive preprocessing using large language models (LLMs) and vision-language models (VLMs). The data curation pipeline includes low-quality data removal via VLMs, code reordering via LLMs, and comment injection to enhance planning capabilities. A Qwen2.5-VL multimodal LLM is fine-tuned using a two-step training pipeline consisting of supervised fine-tuning (SFT) followed by reinforcement learning (RL). The authors design novel reward functions evaluating textual information, geometric elements, image fidelity, and rendering success rate. The trained model is evaluated on a range of proprietary and open-source MLLMs, demonstrating that the SFT+RL approach outperforms baselines such as GPT-5 on automatic metrics.
+
+### Strengths
+- The data preprocessing pipeline is novel and intuitive. The use of VLMs for labeling and filtering, LLMs for code reordering, and comment injection for planning is well-motivated. Ablation studies confirm that reordering improves performance.
+- The reward design is comprehensive, capturing textual, geometric, and rendering aspects. The inclusion of ablations on different reward settings is appreciated.
+- The analysis provides interesting insights, particularly regarding reasoning vs. non-reasoning behavior and the observation that code similarity decreases while performance improves after RL. Evaluation includes both proprietary and open-source MLLMs.
+
+### Weaknesses
+- It would be helpful to include a code efficiency metric, such as average token or character length, to better understand the complexity and verbosity of the generated TikZ code.
+- There is no information about the data timeframe or sourcing, which raises potential concerns about data contamination or leakage.
+- The lack of human evaluation is a major limitation. Relying solely on automatic metrics makes it difficult to assess the real-world quality and fidelity of generated figures. Even a small-scale human evaluation would substantially increase the credibility of the results and help correlate human judgments with automatic metrics.
+
+### Questions
+- What is the exact difference between Reorder30K and TikZ30K? Is it simply the inclusion of comments introduced during data curation?
+- For DaTikZ-V3, is the preprocessing pipeline the same as TikZ30K? Also, is TikZ30K a subset of DaTikZ-V3, or was it sourced independently? Clarifying the dataset relationships and data collection process in the main paper would improve transparency.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper presents a two-stage learning framework for diagram generation using TikZ, consisting of supervised fine-tuning (SFT) followed by reinforcement learning (RL).
+In the first stage, the authors investigate the effects of drawing order and comment placement, aspects that have not been thoroughly examined in previous studies.
+In the second stage, they introduce a composite reward function in the RL phase that incorporates multiple factors, including image quality, code correctness, and structural consistency, and demonstrate its effectiveness through experimental results.
+
+### Strengths
+- The authors analyze previously overlooked properties of the data itself—specifically, the order in which data are generated and the use of comments within the code—and demonstrate their positive effects.
+- They further propose a method for defining the RL reward that incorporates text alignment, bounding-box consistency, and element matching directly extracted from the vector images.
+
+### Weaknesses
+- Although a new dataset has been constructed, there is no description of its license information, making the details of the dataset’s licensing unclear.
+- The evaluation relies solely on automatic metrics, and no human evaluation is conducted. Since the proposed automatic metrics partially overlap with the reward function used in RL, verifying through human evaluation whether the improvement is genuinely meaningful—or merely a result of metric hacking—would greatly enhance the credibility and reliability of the results.
+
+### Questions
+- In Section E.3 of the paper, which describes the training details, it is mentioned that the ViT and MLP projector are frozen during the SFT stage but unfrozen during the GRPO stage. Did you experiment with both configurations—freezing and unfreezing—in the GRPO stage, and find that unfreezing these components led to better performance?
+- Will the model, code, and dataset be released to the public?
+- The dataset is referred to as TikZ30K, but according to Appendix C.4, there are 58,000 training samples. Were the data further filtered during the optimization or post-verification steps? Does this mean that the final dataset actually consists of 30,000 samples?
+- The code augmentation process does not seem trivial for an LLM. The paper mentions that the procedure was repeated when rendering failed or when the rendered image was dissimilar to the original. On average, how many attempts were required per sample to obtain a valid code conversion? Moreover, were all samples successfully converted into valid code, or were some data filtered out due to unsuccessful conversions?
+- Could you please clarify which specific tools or libraries were used to extract the elements from the PDF files when computing the geometric similarity reward?
+- In the computation of the geometric similarity reward, I assume that matching the corresponding elements is not a trivial task. Could you please elaborate on how reliable the matching results are when inspected by humans? In other words, to what extent does the proposed algorithm produce visually or semantically reasonable correspondences between elements?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/OPFE1zPYbU.md b/human_reviews/OPFE1zPYbU.md
new file mode 100644
index 0000000000000000000000000000000000000000..22d36a3a539989b64630090df8c69a0d1c14d012
--- /dev/null
+++ b/human_reviews/OPFE1zPYbU.md
@@ -0,0 +1,195 @@
+## Human Reviewer 1
+
+### Summary
+The paper analyzes the diffusion and flow matching models and argues that the learning objective suffers from sparsity in higher dimensions.
+
+### Strengths
+I think that the problem of analyzing diffusion/flow models' objective is an important one.
+
+### Weaknesses
+The papers has the following strong weaknesses:
+1. **Lack of proper positioning/context in the literature**. The authors make a very strong and false claim in the introduction that they "present the first rigorous analysis of the diffusion model objective in high-dimensional sparse scenario". This problem is a known one and an active area of research. See for example [1] and references therein. The authors do not acknowledge, cite or compare with the existing literature on the topic. Furthermore, a large portion of the proofs (e.g. appendix A) are known results and the authors do not explicitly say that, potentially misleading readers that these are new results. Similarly, the entire discussion in section 2 about the similarities between diffusion and flow matching is well known, and nicely explained e.g. in the blog post: https://diffusionflow.github.io/. The authors should be more explicit that all of this is already known and properly cite related works.
+2. **The paper lacks mathematical rigour**. A lot of statements are vague and sometimes I genuinely did not know what the authors were trying to convey. For example
+ 1. what does 'variance is relatively fixed' mean?
+ 2. The notation is also confusing. What does E
+ 3. What does "Furthermore, due to limited sampling during training, each $p(x0|xt = Xt)$ cannot be sufficiently sampled, so the actual degradation ratio should be higher than the statistics show" mean?
+ 4. What does "In high dimensions, each $p(x0|xt = Xt)$ should be complex" mean?
+ 5. "It easily predicts non-submerged frequencies (likely copying them)." What are non-submerged frequencies?
+ 6. "Since the model compensates for the submerged frequencies, it can also be regarded as an information enhancement operator." - I don't understand what this sentence means.
+ 7. "Based on the principle of train-test matching". What is the principle of train-test matching?
+ 8. The entire section 4.1 lacks mathematical rigour. I_good and I_bad should be explicitly defined.
+ 9. "The linear combination of independent noise is still noise"
+3. **There is no contribution**. Finally, the paper presents no contribution. They argue that the model objective is suboptimal. What they propose instead is "Self guidance", which in principle sounds similar to "Autoguidance" [2] (which is not cited) and "natural inference", but the authors provide no details on how it actually works. The entire section 4.2 is tough to understand. Figure 5 makes it more confusing rather than clarifying. Instead of rigorously defining what the authors propose with equations, they provide a list of bullet points that summarize the "core ideas". Finally, the authors do not provide any empirical results with their new framework, and how they compare with known sampling frameworks.
+
+Some more details:
+
+1. The proofs in appendix A:
+ 1. Are imprecise - f_\theta is not defined. I assume that it's a function from R^D to R^D. But there are typos with missing norms, i.e. f_\theta^2 is undefined when f is not one-dimensional
+ 2. All these results are well known are derived multiple times in various works. The authors don't mention this anywhere, and might mislead someone into thinking that these are novel results
+2. The discussion about flow matching in lines 138-152 is not correct in general. A flow matching model can be defined with various probability paths (and in particular, the prior distribution need not be Gaussian). It should be mentioned here explicitly that the authors only mean this simplified case (which is equivalent to a diffusion model with a certain noise schedule)
+3. Line 231. The reason for flow matching showing different statistics is that it uses a different noise schedule than VP. In other words, the "time" $t$ means different levels of noise for both models.
+4. "When weighted sum degradation occurs, it is equivalent to using a single sample as an estimator of the mean, which typically have large error". I have two issues with this statement
+ 1. it is not true. The authors define degradation as the probability distribution over training data having an entry > 0.9. This is not equivalent to a dirac delta.
+ 2. Secondly, we do the same thing with VAEs - we learn the model by only using a single sample, and it works fine in practice.
+5. "If we cannot provide an accurate fitting target, we argue that the model is unlikely to learn the ideal target accurately"
+ 1. The question is: do we want to lean the ideal target? The ideal target will never generate any unseen data, because of the form of Eq14. So it is not really desirable to try to learn the ideal target.
+ 2. Therefore, in practive, diffusion models certainly do not learn the ideal target, and it's good, because they are able to generate unseen examples. An interesting question is why that happens.
+6. Figure 5 is very difficult to parse. Some undefined symbols appear: a_t, b_t, c_t, y_t, \hat{a}_t.
+
+---
+References:
+
+[1] Lukoianov et al. "Locality in Image Diffusion Models Emerges from Data Statistics" (NeurIPS 2025)
+
+[2] Karras et al. "Guiding a Diffusion Model with a Bad Version of Itself" (NeurIPS 2024)
+
+### Questions
+1. In tables 1 and 2, for time=600, it seems like the "degradation" is much more pronounced than "degradation to x0". This is not intuitive to me. Are you saying that after adding some amount of noise I am much more likely to be closer to a different training example than the one I started with, and the weighted sum is still degenerate?
+2. "When training a model to predict X0 from noise-mixed samples, the model prioritizes frequencies based on their SNR"
+ 1. Is this claim proven anywhere in the paper?
+3. "This frequency-dependent process is confirmed during inference: early steps (large t) generate contours, while later steps (small t) add details."
+ 1. I think this is indeed considered general knowledge in the field, but I don't see the authors providing evidence of this claim, nor citing any works that demonstrate this
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This article posits that diffusion models are fundamentally limited in their ability to learn high-dimensional distributions with sparsity. To address this, the authors introduce a natural inference process that serves to unify existing methodologies.
+
+### Strengths
+- **Significance**: This article concerns the problem of diffusion models where the data distribution is sparse in high dimension, which could be a critical problem in the real-world applications.
+
+### Weaknesses
+- **Soundness**:
+ - Unknown facts: The authors demonstrate that in high-dimensional sparse scenarios, machine learning models can not effectively learn complex hidden probability distributions and their essential statistical quantities, but they do not show the references or provide other evidence.
+ - Equation (15) is unclear, since the expectation is taken over $x_{t}$ rather than $x_{0}$.
+ - Figure 1 seems to be incorrect, since $x_{t}$ can be at positions near other data points other than $x_{0}$.
+- **Completeness**:
+ - Lack of experiments in the major text.
+ - Lack of a related work section that contains the relevent references of this study.
+- **Reresentation**:
+ - Redundancy: (1) In Sec. 1, the descriptions of assumptions made for diffusion models, flow-matching models; (2) the proofs for the equivalence of score-matching objective and denoising score matching objective in Sec. A.1 is not necessary, since it is well-known and not made by the authors.
+ - Formatting Distractions: The overuse of emphasized text (e.g., excessive bolding or italics) biases the reader's attention and disrupts the flow of the narrative.
+ - Inproper figures: (1) Figure 5 is overly cluttered with mathematical symbols and equations that are not essential to its point and are not adequately explained in the caption or main text.; (2) all figure captions are missing a period at the end.
+ - In Sec. 3.1, the text reads "Eq. equation (1)" instead of the standard "Eq. (1)". This formatting error should be corrected throughout the manuscript.
+
+### Questions
+- How can this study be applied in the real-world applications?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper presents an analysis of diffusion models training objectives and its degradation to learning from a single sample in a low signa-to-noise regime. The paper also proposes a framework to unifies existing inference methods.
+
+### Strengths
+The paper proposed an interesting perspective to understand the training dynamics of diffusion models; in particular, how different frequences are picked up during different time and how the model's learning objective gradually shifts to focusing on a single sample as the signal to noise ratio increases. There are some empirical evidence in Table 1 that supports the authors' claim.
+
+### Weaknesses
+- The paper's language is very vague and the analysis not rigorous. A major claim in the paper is that diffusion models "cannot effectively learn the essential statistical quantities of the underlying data distribution, including the posterior, score, and velocity field", there are not rigorous mathematical arguments that support this claim. In fact prior work (e.g. [1]) have characterized the convergence properties of diffusion models. How would the proposed statement fit in this existing literatures on diffusion model theory?
+
+- Many "supporting" arguments are not original and not surprising. For example, the "weighted sum degradation" behavior is expected: as the likelihood signal gets stronger, the posterior concentrates on the most consistent sample.
+
+- The purpose of Section 4 on A UNIFIED INFERENCE FRAMEWORK -NATURAL INFERENCE is unclear. It appears more like an interpretation of existing inference methods. It is not clear what new insights are drawn, or whether there are new inference methods that can be proposed and improve upon the existing ones.
+
+
+References
+[1] Chen, Sitan, et al. "Sampling is as easy as learning the score: theory for diffusion models with minimal data assumptions." arXiv preprint arXiv:2209.11215 (2022).
+
+### Questions
+See Weaknesses section.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper challenges the conventional probabilistic interpretation of diffusion models. The authors argue that, in high-dimensional and sparse data regimes, the objective of diffusion models “degrades” — instead of learning statistical quantities (posterior, score, velocity field), the model merely learns to predict the original clean sample $x_0$ from its noisy counterpart $x_t$.
+
+The paper presents both analytical reasoning and empirical statistics to support this claim. Specifically:
+
+* The authors analyze the posterior $p(x_0|x_t)$ and show that, in high-dimensional spaces, its mean (normally a weighted sum over all samples) collapses to a single dominant sample — the so-called **Weighted Sum Degradation** phenomenon.
+* Empirical measurements on ImageNet-256 and ImageNet-512 show nearly 100% degradation for small $t$ ($t < 600$).
+* Building on this, they propose a “Natural Inference Framework” that unifies multiple sampling algorithms (DDPM, DDIM, DPM-Solver, DEIS, etc.) as simple autoregressive signal combinations without invoking probabilistic concepts.
+
+The authors claim this provides a new, intuitive, and non-statistical understanding of diffusion model training and inference.
+
+### Strengths
+* The new perspective is interesting
+
+* The proposed “Natural Inference” formulation offers an intuitive, signal-processing-style view of sampling.
+
+### Weaknesses
+* The **main claim is overstated and unsupported**: posterior concentration does not invalidate the probabilistic formulation of diffusion models.
+* The “Natural Inference Framework” is **only a re-expression** of known samplers in linear form, offering no new theory, algorithm, or empirical advantage.
+* No experimental evidence demonstrates that this perspective improves understanding or performance.
+* The argument conflates numerical concentration with conceptual failure of probabilistic mode
+
+### Questions
+* In Section 3.1, $p(x_0)$ is represented using an empirical distribution over training samples. This is not a common practice in diffusion literature. Could you clarify whether there are existing works that also adopt such an empirical formulation as the basis for theoretical derivation?
+
+* While many deterministic formulations of diffusion models exist, they generally do **not** reject the probabilistic foundation. What is the motivation or added value of explicitly denying the probabilistic perspective?
+
+* I agree that in modern machine learning there are cases where probabilistic reasoning can be dropped—for example, linear regression can be derived either from a Gaussian noise assumption or purely geometrically from minimizing MSE. However, methodological proposals should ideally be grounded in **simple and principled intuition**. The probabilistic formulation of diffusion models has such a foundation through *score matching*. Does your proposed “Natural Diffusion” framework have an equally simple and principled starting point?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/OUQ8kLRK3m.md b/human_reviews/OUQ8kLRK3m.md
new file mode 100644
index 0000000000000000000000000000000000000000..695f6e6398c0aaf7a53b4c7746990c26c413e10f
--- /dev/null
+++ b/human_reviews/OUQ8kLRK3m.md
@@ -0,0 +1,171 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes DRE-Bench, a cognitive-level benchmark for abstract reasoning, showing that while reasoning-focused LLMs outperform general ones, all models still fail on higher-level sequential and conceptual tasks, revealing a significant gap from human fluid intelligence.
+
+### Strengths
+**Cognitive alignment:** Tasks are designed based on the psychological cognitive hierarchy (attribute, spatial, sequential, and conceptual) to structuredly evaluate the abstract reasoning ability of LLMs. This structured assessment is reasonable and meaningful.
+
+**Dynamic robustness:** Generating diverse tasks by varying parameters to avoid data leakage while revealing the stability and generalization ability of the model under different levels of complexity, which is novel.
+
+### Weaknesses
+This paper only uses the all-right/all-wrong grid matching criterion, ignoring cases where some reasoning is correct or intermediate steps are reasonable, limiting the fine-grained analysis of model capabilities.
+
+### Questions
+1. see weaknesses
+
+2. In your experiments with supplementary visual information, you found that text-only input outperformed both single-image and multi-image formats. I'm curious: what happens if you combine visual input with Chain of Thought (CoT) cues? Would there be a performance boost?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces DRE-Bench, a dynamic reasoning evaluation benchmark designed to assess the fluid intelligence of LLMs. The benchmark consists of 36 abstract reasoning tasks organized across four cognitive levels, with each task featuring multiple dynamic variants. The authors evaluate a range of LLMs, including general-purpose models and reasoning-specialized models. Experimental results reveal that while most LLMs perform well in low-level cognitive tasks, they struggle with high-level cognitive tasks, exhibiting limited generalization capabilities.
+
+### Strengths
+Proposes an abstract reasoning framework based on cognitive levels.
+Designs verifiable code generators and solvers to ensure data quality and scalability.
+
+### Weaknesses
+Inadequate Human Experiment Design:
+Alignment with human cognition is the core advantage of this Benchmark. However, the handling of this critical aspect is very weak in this paper. Although a human comparison experiment is provided, there is a lack of detailed age distribution and significance testing. Additionally, there is no explanation of how participants were motivated to complete the questionnaire seriously or how invalid responses were excluded. For the complex task of designing cognitive test questionnaires, the paper seems to lack rigor; neither the main text nor the supplementary materials provide detailed explanations of how the questionnaire design excludes potential influencing factors. This leads to the conclusion "validates the justification of our 4-level framework" appearing unreliable. This point is particularly important because if the foundation of the human experiment is unreliable, the entire Benchmark's cognitive alignment will be questioned, thereby affecting its validity as a Benchmark.
+
+Lack of Detailed Analysis of Model Failure Modes: Specifically, error types in high-level cognitive tasks are not thoroughly explored, failing to reveal the specific reasons for model failures in complex tasks.
+
+Key Findings Lack Depth: The paper emphasizes five key findings, but these findings do not demonstrate particularly outstanding innovation or in-depth analysis, appearing rather superficial.
+
+Insufficient Analysis of Visual Information Impact: This is one of the key challenges in human and LLM testing. However, the analysis of how visual information affects model performance is overly simplistic, providing results for only two visualization formats and lacking deeper exploration.
+
+### Questions
+Why were only 20 annotators selected as the sample for the human comparison experiment? This number appears particularly insufficient given the multitude of potential influencing factors in this experiment. Since this is a questionnaire-based test, recruiting more participants would not have been an expensive or labor-intensive task, yet it could have significantly improved the reliability and statistical robustness of the results.
+
+Is there sufficient statistical significance to support the conclusions?
+How was the seriousness of participants and the validity of the questionnaire ensured? Were any incentives or quality control measures implemented?
+Were potential cognitive biases or other influencing factors considered during the questionnaire design process? How were these interferences excluded to ensure the reliability of the experimental results?
+What are the specific failure modes of the models in high-level cognitive tasks? Are there certain types of errors that repeatedly occur?
+
+### Soundness
+1
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper introduces a large-scale abstract reasoning benchmark structured along a four-level cognitive hierarchy (Attribute, Spatial, Sequential, and Conceptual). The framework is designed to evaluate Large Language Models (LLMs) on tasks of increasing cognitive complexity and to assess whether current models exhibit good fluid intelligence. Through systematically generated tasks and extensive experiments, the authors find that model accuracy declines with higher cognitive levels, especially for physics-related conceptual reasoning. Reasoning-optimized models (e.g., OpenAI-o1, DeepSeek-R1) outperform general-purpose LLMs, and the performance gap widens as task complexity increases.
+
+### Strengths
+- It is an interesting finding that the models achieve higher and more consistent accuracy in vertical (up/down) directions than in horizontal (left/right) ones in Move. Similarly, in symmetry tasks, performance is better for horizontal symmetry than for vertical symmetry
+- The authors implement a verifiable, scalable data engine capable of generating diverse reasoning tasks with controllable complexity—an important methodological contribution that ensures reproducibility and adaptability.
+- The results highlight key cognitive distinctions: (a) model accuracy degrades sharply at higher cognitive levels, (b) inference-time scaling contributes mainly to lower-level reasoning, and (c) visual input may not aid abstract reasoning. These insights deepen our understanding of the limits of current LLM cognition.
+
+### Weaknesses
+- Several aspects of the experimental design and presentation require clarification and stronger consistency.
+ the selection of models across figures lacks transparency and methodological coherence. For example, Figure 5 does not specify why those particular four models were chosen, Figure 6 focuses solely on DeepSeek-R1 without justification, and Figure 7 switches to yet another subset of models while testing only two tasks.
+
+Such inconsistent model selection makes it difficult to assess whether observed relationships are generalizable. A more systematic comparison across models, task types, and difficulty levels would provide stronger evidence for the claimed trends. Table 2 also introduces new models without explanation
+
+- question design and ground-truth validity raise concerns. In Figure 8, certain problems might have multiple correct solutions (e.g., the Level-3 task where the path could start from one red square to the upper blue square not only the bottom one), yet only one is labeled as correct. Additionally, the prompt mislabels the target as a “red dot” instead of a “red square.”
+
+ In the Level-4 example, two obstacle types exist, but the prompt fails to specify that only the blue obstacle is reflective, potentially confusing both human and model respondents. These ambiguities undermine the reliability of the evaluation.
+
+- discrepancies between text and data should be addressed.
+- Line 340 claims that human accuracy decreases with task level, but Table 1 shows relatively stable human performance across Levels 1–3, except for a few specific tasks (e.g., sorting). Interestingly, these same tasks are also where models perform poorly. This suggests that further validation is needed to ensure the generated items reflect increasing cognitive difficulty rather than artifacts of task design.
+
+### Questions
+- What criteria guided the selection of models in Figures 5–7 and Table 2? Were these choices based on availability, performance tiers, or specific architectural features?
+- Why was DeepSeek-R1 uniquely highlighted in Figure 6?
+- How many tasks and difficulty levels were used to derive the inference-time–accuracy relationship, and do these results hold across other models or scales?
+- In Figure 8, how were ground truths defined for multi-path problems, and were alternative valid solutions considered during evaluation?
+- How were ambiguous or mislabeled prompts (e.g., “red dot” vs. “red square,” unspecified reflective obstacles) handled in scoring and analysis?
+- Given that human performance appears stable across the first three levels, how to justify the statement that accuracy “generally decreases” with increasing cognitive level?
+
+Suggestions:
+
+- Unify model selection and reporting. clearly specify which models are used in each experiment and maintain consistency across figures. If subsets differ, explain the rationale.
+
+- Broaden the inference-time analysis. test multiple models across several tasks and difficulty levels to confirm that observed correlations are not model-specific.
+
+- Validate and disambiguate tasks. review prompts and ground truths to ensure each question has a unique, well-defined solution and that instructions are precise.
+
+- Re-evaluate human baselines. conduct additional validation to verify that increasing task complexity indeed reflects higher cognitive difficulty, rather than inconsistencies in dataset generation.
+
+- Clarify inconsistencies between text and data.
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This work introduces DRE-Bench, a benchmark designed to evaluate dynamic reasoning through a hierarchical cognitive framework including 36 reasoning tasks. It frames fluid intelligence as the ability to generalize beyond memorized knowledge and reason, and designs rule-based code generators and solvers for each task. Empirical evaluations across different LLMs show that while models perform well on lower-level reasoning, they struggle with higher cognitive levels, indicating a gap from true fluid intelligence.
+
+### Strengths
+1. The task design is well aligned with cognitive psychology, clearly reflecting different types of reasoning and the varying levels of intelligence required for each task.
+
+2. The proposed benchmark is a valuable contribution to the evaluation community, offering diverse and controllable challenging tasks.
+
+3. The paper provides a thorough evaluation and analysis across multiple LLMs, shwoing how accuracy and stability vary with task complexity and cognitive level.
+
+### Weaknesses
+While the paper proposes a cognitively inspired hierarchy of reasoning tasks, it does not measure the time humans take to solve them. Given the small-scale human evaluation and potential variance, reporting the average solving time per task would better substantiate the claimed cognitive alignment and reveal the true difficulty gradient.
+
+### Questions
+In Table 1, why does o3-mini perform significantly better than other models on the Level-4-Mechanics tasks, achieving 31.75% accuracy while most other models show near-zero performance?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/Q5SSA6IonA.md b/human_reviews/Q5SSA6IonA.md
new file mode 100644
index 0000000000000000000000000000000000000000..f444a68086c567f26e62ac0988ff7d652087876e
--- /dev/null
+++ b/human_reviews/Q5SSA6IonA.md
@@ -0,0 +1,151 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes Vision Filter (ViF), a novel vision backbone that replaces Transformer self-attention with a Fourier Neural Filter (FNF). Built upon the Fourier Neural Operator (FNO), FNF introduces adaptive modulation and selective activation to dynamically couple spatial and frequency-domain representations, addressing FNO’s limitations in modeling high-frequency local details. Experiments on classification, detection, and segmentation show that ViF achieves competitive or superior performance to Swin Transformer, ConvNeXt, and VMamba while maintaining quasi-linear complexity.
+
+### Strengths
+1. The paper provides a clear theoretical motivation.
+2. The introduced adaptive modulation and selective activation mechanisms effectively mitigate the over-smoothing and bandwidth bottleneck issues of conventional FNOs.
+3. Experiments on classification, detection, and segmentation tasks demonstrate consistent improvements over strong baselines such as ConvNeXt, Swin, and VMamba, confirming the model’s effectiveness and generality.
+
+### Weaknesses
+1. The ablation study is relatively limited, providing insufficient analysis of the independent contributions of the two key FNF submodules. A more detailed exploration of how each component individually influences performance would strengthen the empirical validation.
+2. The paper lacks interpretability analysis. Although the authors claim that adaptive modulation adaptively scales different frequency components in the spectral domain, the explanation remains purely mathematical without concrete visualization or empirical evidence. It is unclear how the modulation behaves across different images or tasks and whether any consistent adaptation patterns exist.
+3. The comparison with recent state-of-the-art methods are missing, such as MLLA and OverLoCK.
+4. In Table 3, the performance improvement under the Mask R-CNN 3× MS schedule is marginal. The paper does not discuss possible reasons for this weak gain.
+
+### Questions
+See weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This manuscript proposes a novel visual backbone network called Vision Filter (ViF). Its innovation lies in the introduction of a core component, the Fourier Neural Filter (FNF). Building on the Fourier Neural Operator (FNO), FNF introduces an input-dependent adaptive integral kernel. Through selective activation and adaptive modulation, it establishes a dynamic information flow between the frequency and time domains, addressing the bandwidth bottleneck and over-smoothing issues inherent in FNO. ViF outperforms current mainstream Transformer, Mamba, and Fourier-based models on ImageNet-1K image classification, COCO object detection, and ADE20K semantic segmentation tasks, while maintaining high computational efficiency.
+
+### Strengths
+1.The manuscript 's motivation is sound, and it clearly identifies the limitations of FNO, such as bandwidth bottlenecks and over-smoothing.
+2.This manuscript introduces an input-dependent integral kernel into the Fourier operator, constructing a unified time-frequency representation space, which is quite innovative.
+3.An obvious advantage of this method is computational efficiency. Compared with Transformer-type models, it has lower computational complexity and is more advantageous than Mamba-type models in spatial structure modeling.
+4.This manuscript achieves state-of-the-art or competitive results on multiple mainstream vision tasks, particularly on ImageNet-1K, significantly outperforming similar Fourier methods (such as GFNet).
+
+### Weaknesses
+1.Although FNF solves some of the shortcomings of FNO, its core idea is still based on the traditional framework of "frequency domain processing + time domain supplementation". It does not propose a new visual representation learning paradigm, which weakens the innovation of this article.
+2.Although ViF performs well on ImageNet-1K, its improvement on COCO and ADE20K compared to models such as ViM is relatively small (e.g., mAP increases by 0.2-0.4), failing to significantly widen the gap.
+3.ViF only tested three small and medium-sized variants, ViF-T/S/B, and did not evaluate the performance of larger models, such as those of ViT-L/16, on larger datasets.
+4.Definition 7 mentions that adaptive modulation is achieved through the amplitude-sensitive weighting function \(\|z\|\) and learnable parameters \(\alpha\) and \(\beta\), but does not give the range of \(\alpha\) and \(\beta\) and whether they are adjusted with training iterations.
+
+### Questions
+As mentioned above.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes a theoretically sound and empirically validated vision backbone that bridges local and global modeling through the frequency domain, offering an alternative to attention-based and state-space models. The FNF formulation is well-motivated and results across benchmarks substantiate its benefits.
+
+### Strengths
+1.The paper presents a theoretically grounded extension of the Fourier Neural Operator (FNO), introducing an input-dependent integral kernel that enables adaptive and dynamic coupling between the spatial (time) and frequency domains.
+2. The proposed Vision Filter (ViF) integrates both local convolutional和global frequency operations within a single framework.
+3. Results in Figure 1 demonstrate that ViF achieves a more favorable accuracy–throughput trade-off compared to both Transformer and Mamba-based counterparts, showing practical efficiency for high-resolution image processing.
+
+### Weaknesses
+1. The paper does not evaluate ViF on larger datasets (e.g., ImageNet-22K, LAION) or with pretraining strategies such as self-supervised learning (MAE, BEiT). As such, the scalability and transferability of ViF remain uncertain compared to modern foundation models.
+2. The ablation study (Table 5) confirms that each module contributes to performance, but lacks deeper interpretability or visualization (e.g., frequency response maps, energy spectrum analysis). More qualitative analysis could help clarify how ViF balances local and global representations in practice.
+3. Although the authors cite GFNet and AFNO, the distinction between ViF’s adaptive gating mechanism and prior dynamic spectral filters could be elaborated further.
+
+### Questions
+1.The manuscript seems only to swap the entire Multi-Head Attention block in ViT for the proposed FNF module, but never compares the two under an otherwise identical architecture. An ablation is recommended that exchanges only the attention mechanism.
+2.Although the authors claim “quasi-linear complexity”, only FLOPs are reported. No end-to-end latency, throughput, or peak-memory measurements versus Swin, VMamba or GFNet on the same GPU/CPU are provided.
+3.FNF introduces several new hyper-parameters (α, β in adaptive modulation, number of Fourier modes, kernel size of local convolutions, etc.). The manuscript gives a single setting without any hyper-parameter sensitivity analysis. It is indiscernible whether the performance gains are statistically robust or an artefact of ad-hoc tuning.
+4.The claim that “directional scanning inevitably leads to spatial disruption” in Mamba-based models is not substantiated. The manuscript neither quantifies the degree of spatial-information loss nor compares patch-order robustness between Mamba and the proposed FNF. It is necessary to compare Acc of Mamba and FNF after random patch-shuffling to quantify patch-order robustness.
+5.The implicit periodic extension inherent in FFT introduces spectral leakage and degrades the accuracy of the frequency-domain filtering operation when the input dimension is not a power of two or when the image contains strong edges. This work has not examined whether the proposed FNF module suffers from such boundary artefacts, nor has it evaluated remedies such as windowing or reflection padding. A systematic comparison of cyclic, symmetric and zero-padding schemes is required to determine the susceptibility of FNF to spectral leakage and its consequent impact on dense prediction tasks.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes a new generic vision backbone called Vision Filter (ViF) , built upon a novel Fourier Neural Filter (FNF) module. The authors argue that while the Fourier Neural Operator (FNO) is promising for its global modeling capabilities and quasi-linear complexity , it suffers from an "over-smoothing" effect and a "bandwidth bottleneck," making it difficult to capture local, high-frequency patterns. To address this, the FNF module introduces two key components: 1) Adaptive Modulation (AM) in the frequency domain to enhance sensitivity to high-frequency components , and 2) Selective Activation (SA) to balance local time-domain and global frequency-domain information flow. This design creates an input-dependent integral kernel. Extensive experiments on image classification (ImageNet-1K) , object detection (COCO) , and semantic segmentation (ADE20K) demonstrate that ViF outperforms existing SOTA Transformer- and Mamba-based backbones.
+
+### Strengths
+1. The authors introduce an adaptive kernel that effectively couples time- and frequency-domain information, providing theoretical novelty.
+2. The paper demonstrates strong empirical performance across multiple visual benchmarks and model scales.
+3. The authors conduct comprehensive ablation studies that clearly quantify the contribution of each component (AM, SA, LC).
+4. The proposed ViF achieves a favorable balance between model complexity and performance, offering quasi-linear computational efficiency.
+
+### Weaknesses
+1. The paper lacks experiments exploring the scalability of ViF on larger datasets such as ImageNet-22K or LAION.
+2. The authors do not evaluate ViF under self-supervised or foundation model pre-training settings, which limits its generalization claims. I believe this is crucial for vision backbone models.
+3. The paper lacks detailed frequency-domain visualizations (e.g., spectral activation maps) to empirically support its frequency modeling claims.
+4. The improvements over strong Mamba variants on dense prediction tasks are relatively marginal compared to the architectural complexity.
+5. The authors have not released any implementation code at submission time, reducing reproducibility.
+
+### Questions
+In addition to the above weaknesses, I also have several questions and suggestions for the authors:
+1. Could ViF be integrated into existing architectures (e.g., ConvNeXt or BEiT) as a modular replacement, and what challenges might arise?
+2. Does the proposed FNF introduce any implicit bias toward certain frequency bands, and how is this mitigated?
+3. Are there plans to extend FNF to video or multimodal vision tasks?
+4. Could the authors provide additional visualization results illustrating spectral activations or learned frequency responses?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/Q6TymStAvS.md b/human_reviews/Q6TymStAvS.md
new file mode 100644
index 0000000000000000000000000000000000000000..9f2af3aab9ecdad50567eeb8f89152f491ec16e6
--- /dev/null
+++ b/human_reviews/Q6TymStAvS.md
@@ -0,0 +1,176 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces ShadowFM, a generative framework for learning quantum ground states from their classical shadows. The core idea is to apply geometric flow matching on non-Euclidean manifolds inspired by the Bloch sphere, rather than using standard Euclidean approaches. By respecting the intrinsic geometry of quantum measurements, the proposed methods, Spherical Flow and Anisotropic Dirichlet Flow, compared to vanilla flow matching, achieve more accurate predictions of physical observables like correlation functions.
+
+### Strengths
+The paper introduces a novel framework by applying geometric flow matching to learn classical shadows of quantum states. It thoughtfully motivates this approach by connecting the non-Euclidean structure of quantum measurements to the Bloch sphere, a departure from prior works that assumed Euclidean geometry.
+
+The proposed "Spherical Flow" and "Anisotropic Dirichlet Flow" methods are empirically validated on the Transverse-Field Ising and Heisenberg models.
+
+### Weaknesses
+1. The major weakness is the paper's structure and writing. A significant portion of the early sections is dedicated to explaining well-established concepts, which may be inefficient for an expert audience at ICLR conference.
+- Sections 2.1, 2.2, 2.3 and Section 3 provide lengthy introductions to Classical Shadows and flow Matching. While context is necessary, these concepts are foundational and could likely be summarized more concisely, perhaps by focusing only on the specific aspects directly built upon by the authors. This would free up valuable space to elaborate on the novel contributions. If the author desires to present more specific or self-contained content, detailed information (including Algorithm 1 and 2) can be placed in the appendix.
+- Furthermore, the motivation in Section 4.1 is good, but the preceding three pages of background and related works dilute the paper's focus and delay the reader's engagement with the key ideas. In a highly competitive venue, it's crucial to present the core innovation as early and clearly as possible.
+
+A more effective structure might have been to briefly introduce the necessary concepts from FM and classical shadows within the introduction or a much shorter, combined background section, and then move directly to the motivation and detailed methodology of ShadowFM.
+
+2. The paper's core methodological sections (4.2 and 4.3) blend established theory with the authors' modifications. It would be better if the authors delineate their novel technical contributions from the baseline frameworks of RFM and DFM. As presented, it is difficult to isolate the exact innovations beyond the application of existing tools to a new domain.
+
+3. For the Anisotropic Dirichlet Flow, the increased methodological complexity does not consistently yield superior performance over the simpler Spherical Flow (e.g., in the Heisenberg model results of Table 3). What is the justification for this more complex model if its empirical advantage is not universally demonstrated across the tested problems?
+
+4. A critical observation from Table 1 is that the learning-free Classical Shadow baseline consistently outperforms all trained generative models, especially on the correlation metric and in the high-sample regime. Could the authors explain this performance gap and justify the practical utility of the generative approach if it fails to surpass a direct, learning-free estimation method?
+
+4. The primary motivation for introducing a non-Euclidean geometry is an experiment (Figure 2) suggesting that "spin errors" (e.g., $|X^{+}\rangle \rightarrow |X^{-}\rangle$) are significantly more detrimental than "basis errors" (e.g., $|X^{+}\rangle \rightarrow |Y^{\pm}\rangle \text{or} |Z^{\pm}\rangle$). However, the provided plot does not strongly support this claim. The performance gap between the two error types appears marginal across the tested error rates. The paper's assertion that spin errors are "significantly higher" seems overstated. This weakens the central premise that a geometry specifically designed to maximize the distance between spin-flipped states is necessary and justifies the added model complexity.
+
+5. The paper's experiments compare the proposed methods primarily against other flow-matching variants. This comparison is too narrow and fails to benchmark against the true state-of-the-art in generative modeling for quantum states. Crucially, there is no comparison against machine learning models such as [1,2,3] and a benchmark [4], which have shown strong performance on similar tasks.
+
+[1] Huang H Y, Kueng R, Torlai G, et al. Provably efficient machine learning for quantum many-body problems[J]. Science, 2022, 377(6613).
+
+[2] Wang H, Weber M, Izaac J, et al. Predicting properties of quantum systems with conditional generative models[J]. arXiv preprint arXiv:2211.16943, 2022.
+
+[3] Yao J, You Y Z. ShadowGPT: Learning to Solve Quantum Many-Body Problems from Randomized Measurements[J]. arXiv preprint arXiv:2411.03285, 2024.
+
+[4] Zhao Y, Zhang C, Du Y. Rethink the Role of Deep Learning towards Large-scale Quantum Systems[C]. Forty-second International Conference on Machine Learning, 2025.
+
+### Questions
+The selection of "Generative Models" as the primary area suggests the paper's main contribution lies in advancing the fundamental methodology of generative modeling. While the paper does introduce novel geometric adaptations to flow matching, these innovations are exclusively motivated, designed for, and validated on the specific problem of learning quantum states. This raises a crucial question about the work's intended contribution and audience. The work might be more appropriately positioned within an area like "Applications to Physics".
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper introduces Shadow Flow Matching, a geometric and generative framework for modeling quantum measurement data. Rather than treating measurement outcomes as raw values, the authors embed them into a cross-polytope manifold that captures the symmetry and combinatorial structure of Pauli measurements, essentially a high-dimensional, geometry-aware analogue of the Bloch sphere. Within this space, they apply flow matching to learn distributions of outcomes conditioned on Hamiltonian parameters, allowing the model to follow the curved geometry of quantum shadows instead of a flat Euclidean one. This leads to smoother sampling and better reconstruction of observables like correlation matrices and entanglement measures, even under noise or limited data. By blending geometric insight with generative modeling, the work moves beyond treating quantum data as structureless, aligning machine learning more closely with the intrinsic geometry of quantum mechanics.
+
+### Strengths
+1. Mapping quantum measurements into a cross-polytope space is an original and elegant idea—it captures the symmetries of Pauli measurements while moving beyond standard Euclidean embeddings.
+
+2. The paper nicely links discrete measurement data with continuous geometric flows, bringing flow-based generative modeling into quantum ML in a fresh and promising way.
+
+3. The framework shows solid potential for tasks like shadow tomography, expectation reconstruction, and entropy estimation, where structure-aware modeling really helps.
+
+4. The theory and context are well presented, clearly explaining why a geometric approach makes sense and how it connects to broader machine learning and quantum ideas.
+
+5. The visualization of the cross-polytope flow is particularly interesting, helping to convey the intuition behind how flow trajectories respect geometric constraints and how they differ from flat-space generative flows.
+
+### Weaknesses
+1. Despite its novelty, the scope of practical applications appears somewhat narrow at this stage. The framework’s advantages are demonstrated primarily on specific shadow-based tasks, and it remains uncertain how easily the approach can scale to broader or more complex domains of quantum learning.
+
+2. A current limitation is the method’s dependence on the structure of Pauli shadows. Since the model architecture and training procedure hinge on these symmetries, adapting it to non-Pauli or arbitrary measurement settings could require substantial reworking of the geometric foundation.
+
+3. The empirical evaluation is somewhat underdeveloped. Comparisons are made to only one baseline, and while qualitative results are encouraging, they leave open questions about quantitative robustness and competitiveness against state-of-the-art generative quantum models.
+
+### Questions
+1. Are the current experiments confined to the 1D anti-ferromagnetic Heisenberg model, or has the framework been tested on other many-body systems?
+
+2. How does the proposed approach compare to diffusion-based quantum models, such as Generative Quantum Machine Learning via Denoising Diffusion Probabilistic Models?
+
+3. Given the method’s dependence on Pauli-based shadows, could the framework extend to alternative measurement protocols like? Is the model’s success contingent on Pauli-specific symmetry?
+
+4. Could this geometric-flow framework be repurposed for broader quantum modeling tasks—for instance, simulating quantum dynamics?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper presents Shadow FM, which is a flow based method to generate Pauli POVM measurements of a quantum ground state. The Hamiltonian of the system can be used as a conditioning input to generate these samples. There are two approaches in the paper: (i) a spherical / Riemannian flow aligned with the Bloch-sphere geometry and (ii) an anisotropic Dirichlet probability path. The authors test their methods on Heisenberg and TFIM chains.
+
+### Strengths
+The paper is well writing and the flow matching framework that the paper uses is well motivated by the geometry of the quantum states. Being a non-autoregressive method is also a positive, as the shadow distribution is unlikely to have 1D nature for interesting quantum states. The experiments are thorough and interesting.
+
+### Weaknesses
+1. All the experiments presented are for 1D models. This is a concerning as the ground states of 1D models have efficient classical representation in terms of MPS representations. 2D experiments would have substantially improved the quality of the results
+
+2. Motivation of restricting to ground states of Hamiltonians is unclear to me? Why not thermal states or states produced by real time evolution? I don't see the learning task itself using any information about the fact this is a ground state of a Hamiltonian.
+
+### Questions
+1. For learning ground states, could this method be enhanced by adding a variational component to the loss that also tries to minimize the estimated energy of the state?
+
+2. What is the main bottleneck faced by the authors to go to 2D experiments?
+
+3. In the phase transition studies, do the authors observe any changes in the behavior of the learning algorithm across the phase transition?
+
+4. How do the authors ensure that the distribution over shadow states that the learned model samples from for a new Hamiltonian actually correspond to a physically allowed quantum state? Can a projection step be built into the inference pipeline to project to physically allowed states?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper introduces ShadowFM, a geometric flow matching framework for learning ground-state quantum many-body wavefunctions via the distribution of classical shadows.
+Instead of modeling full quantum states, ShadowFM learns to generate shadow measurements—compact randomized representations of quantum states—and uses them to estimate physical observables such as correlation functions and entanglement entropies.
+
+### Strengths
+- Originality: the paper presented a novel framework called ShadowFM that combines low matching generative modeling with classical shadow tomography for learning quantum many-body ground states.
+- Quality: The technical development looks sound and link both geometric and quantum information theory. The paper demonstrates a good understanding of both and integrates them coherently.
+- Clarity: The paper is clearly written, with a well-organized structure. Figures and tables of experiments look good.
+- Significance: The work study a problem that is significant in bridging geometric deep generative modeling and quantum many-body learning. It proposes a scalable, data-driven alternative to classical shadow reconstruction and autoregressive models.
+
+### Weaknesses
+- Computational overhead: The anisotropic Dirichlet flow requires precomputing and integrating Beta-function–based terms, which could limit practicality; runtime and memory costs are not quantified in very detail.
+- Restricted empirical scope: Experiments are limited to 1D spin chains (TFIM and Heisenberg). The scalability and performance of ShadowFM on larger or higher-dimensional systems are not demonstrated.
+
+### Questions
+- Could the authors explain more about the scalability of their methods? For example, for Heisenberg model, could the experiments for $L=30$ be conducted? Also, what about other models?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+2
\ No newline at end of file
diff --git a/human_reviews/QIIrjgUnL1.md b/human_reviews/QIIrjgUnL1.md
new file mode 100644
index 0000000000000000000000000000000000000000..9d974ebcfde4594e2b69fc38bc3fcdcff526de4c
--- /dev/null
+++ b/human_reviews/QIIrjgUnL1.md
@@ -0,0 +1,187 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a position-aware attention mechanism designed to make the standard self-attention more sensitive to relative positions.
+It introduces a position-effect and an enhanced position-effect functions which modulates the attention weights according to pairwise positional distance.
+The goal is to combine the flexibility of self-attention with an explicit, parametric control over positional bias.
+The authors present detailed analyses, including theoretical derivations, simulated experiments on synthetic data distributions (random, structured, clustered, etc.), and consistency metrics comparing theoretical versus actual attention responses.
+They claim that this mechanism improves positional interpretability and stability relative to standard Transformers.
+
+### Strengths
+1. Interesting idea:
+The notion of explicitly controlling positional effects via a decaying kernels (Eqs, 1 and 6) is conceptually clean and connects attention to classical signal-processing intuitions about locality.
+2. Analytical exploration:
+The paper includes extensive mathematical and empirical analyses of how the proposed positional kernel influences attention behavior.
+The “theoretical vs. actual” consistency metric is a thoughtful way to test whether the implementation aligns with the analytical definition.
+3. Comprehensive appendix:
+The appendix contains a wealth of supporting materials — visualizations, parameter sensitivity analyses, and ablations — which demonstrate significant effort and curiosity about the model’s internal mechanics.
+
+### Weaknesses
+1. The main text lacks clarity and structure.
+Many of the explanations and empirical results appear only in the appendix or not at all.
+The main sections barely reference the relevant figures, forcing the reader to guess which figure corresponds to a given discussion.
+This significantly reduces readability.
+2. Use of undefined or double-defined formulations.
+For example the abstract relates to the parameters $\alpha$, $\beta$ and $\gamma$ without any ability of the abstract reader to understand what they represent…
+$P_{effect}$, $A_{ij}$, $V(i)$, $pos^*$ are all defined twice, how do I know which one you mean in the text. Give them a slight differentiator for example $P_{effect}^+$
+
+3. Limited experimental validation.
+The study is conducted almost entirely on synthetic data. There are no evaluations on real tasks (e.g., language modeling or vision benchmarks), so the practical usefulness of the method remains untested.
+4. Ambiguous methodology.
+The paper introduces metrics such as $pos_{actual}$ and $pos_{theoretical}$ but does not specify precisely how they are computed, requiring the reader to reconstruct the procedure themselves. Specifically for these two, there is some reference in the appendix, but I could not find a clear definition.
+5. Literature positioning is weak.
+The paper references related work sparsely. Many strong prior efforts on relative positional encodings (Shaw et al. 2018; Dai et al. 2019; Press et al. 2021; Su et al. 2021) are either missing or only briefly mentioned. On the other hand, all the references in the Abstract makes it cumbersome to follow. It should be precise and short.
+
+### Questions
+1. How does this mechanism compare empirically with standard relative position encodings (e.g., RoPE) on real benchmarks?
+2. Can the method be integrated into standard Transformer architectures without major computational overhead?
+3. Why are key visual results not cited or summarized in the main body? Would the paper benefit from moving Figures A.1–A.8 into the main section?
+4. Line 105 – which matrix values do you refer to? I guess it is not $A_{ij}$ because these are all normalized…
+5. Line 109 - add “In Fig. 3”… do so for all references to Figures
+6. Line 144 + Figure 6. “Position influence magnitude” was never defined (not also in the appendix AFAIK)
+7. The same goes for other naming in Section 2.3
+8. Plenty of typos in citing. lines 035, 037, 039, etc.,
+9. Line 207 and Line 863 – what is the difference between $S(pos)$ and $V(i)$
+10. I’m not sure what does $I_j$ means. In line 215 I see it is torch.norm(data, dim=-1) is it a the norm over all $i$ values?
+11. Eq. 7. $A_{ij} already include $P_{eff}$. Do we multiply it again by $P_{eff}$?
+12. Table 3. I’m not sure I understand. I don’t see any significant difference between architectures. Highest is better or lowest is better?
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces a position-aware attention mechanism designed to address the inherent limitations of conventional attention models, such as those introduced by Ashish Vaswani et al. (2017). The key technical contribution is a positional effect function parameterized by three coefficients: \alpha which controls positional influence intensity, \beta which governs spatial decay rate, and \gamma which compensates for over-attenuation at longer distances. The authors establish the mathematical properties of this function (continuity, differentiability, monotonicity) and propose an adaptive triple-attention architecture integrating position-, task-, and content-aware modules for dynamic weighting. Experiments reportedly demonstrate performance improvements in structured and clustered data scenarios.
+
+### Strengths
+1. The paper introduces a positional effect function that offers a formalized mechanism for incorporating positional influence into attention computation.
+
+2. It develops a triple-attention architecture that jointly models position, task, and content information, which is conceptually interesting.
+
+3. It defines quantitative evaluation metrics aimed at measuring attention distribution quality, contributing to more systematic evaluation of attention mechanisms.
+
+### Weaknesses
+1. The proposed position-aware attention formulation appears largely as a mathematical restatement of existing positional modulation techniques without a clear, theoretically grounded justification for why it should outperform established methods (e.g., Rotary Position Embedding (RoPE), ALiBi, or relative positional encoding by Peter Shaw et al. (2018)). A stronger theoretical motivation or comparative analysis is needed.
+
+2. The experimental evaluation is insufficiently comprehensive. There are no direct comparisons with strong baselines such as RoPE, ALiBi, or Shaw et al. on realistic benchmarks (e.g., long-document modeling, QA).
+
+3. The implementation details are incomplete or unclear. Important information about model architecture, parameter sizes, training setups, and hyperparameters are missing, which prevents reproducibility.
+
+4. Some core concepts lack precise definition or justification. For example: I_j in Eq. (3) and (4) is referred to as “information importance,” but its definition and computation are not explained. The proposed “consistency” and “ranking correlation” metrics are not well motivated or compared against established alternatives.
+
+5. The claim that the triple-attention architecture achieves superior performance is not strongly supported by the results in Table 3, where the improvements over other configurations are marginal.
+
+6. The description of experimental results is ambiguous: it is unclear whether larger or smaller metric values indicate better performance, and some tables lack sufficient explanation.
+
+### Questions
+1. Please include experimental comparisons with strong and widely recognized baselines (e.g., RoPE, ALiBi, Shaw et al. 2018) to substantiate the claimed advantages of the proposed method.
+
+2. Please provide a clearer and more rigorous definition of I_j and its role in the method. Also, please justify the choice of evaluation metrics or align them with established practices in the field.
+
+3. Please clarify how to interpret each evaluation metric (e.g., whether higher or lower is better) and provide more structured and detailed explanations of results.
+
+4. Please include comprehensive implementation details, such as model configurations, training setup, hyperparameters—to facilitate reproducibility and fair comparison.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper introduces a position-aware attention mechanism that explicitly models positional relationships in attention computation through a position effect function, parameterized by $\alpha$ (intensity) and $\beta$ (decay). It mathematically analyzes their properties (continuity, differentiability, monotonicity) and proposes an enhanced variant with an additional $\gamma$ coefficient to mitigate over-attenuation in long-distance dependencies. Built on this, the authors develop a triple-attention architecture incorporating position-aware, task-aware, and content-aware attention to achieve task-specific flexibility.
+
+### Strengths
+The quality of the Appendix seems better than the main text
+
+### Weaknesses
+1. It is not clear why the proposed position effect function addresses the limitations of traditional attention mechanisms by providing fine-grained control over positional relationships, as stated on line 94-96. Or what’s the advantage to existing methods like relative positional encoding and ROPE? If it’s only about modeling the dependency between $i, j$, ROPE also mathematically supports this, no?
+2. I am confused of section 2.2. What is the analysis subject to? On lines 105-106, the author states, “Specifically, α = 0.5 yields maximum values of approximately 0.5, α = 1.0 produces values of 1.0, α = 2.0 generates values of 2.0”. But there is no explanation of what the values impacted by the $\alpha$ values refer to.
+3. Experiment section is not clear enough in introducing the settings such as data, model, baselines.
+4. Eq.1 seems redundant as it is introduced again from line 92
+5. Typo, Line 357: we previously -> our previously
+
+### Questions
+Is it better to rearrange so that the analysis in section 2 appears later, say the experiment section?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes a position-aware attention mechanism that extends traditional Transformer attention (Vaswani et al., 2017) by incorporating a novel positional effect function. The method builds upon relative position representations (Shaw et al., 2018) and rotary position embeddings (Su et al., 2021), introducing parameters α and β to control positional influence and spatial decay rate. To alleviate long-distance over-attenuation, the authors further introduce an enhancement coefficient γ and design an adaptive triple-attention architecture that integrates task-aware and content-aware modules for dynamic weight adjustment. The paper also provides theoretical analysis on the proposed function’s properties (continuity, differentiability, monotonicity) and introduces new evaluation metrics for consistency and positional benefit. Experiments demonstrate promising results on structured and clustered datasets, particularly for information retrieval and document understanding tasks.
+
+### Strengths
+Theoretical novelty: The paper provides a mathematically grounded extension to existing position encoding methods, offering interpretable control of positional influence and decay behavior.
+
+Innovative architecture design: The proposed adaptive triple-attention framework with task- and content-aware weighting is conceptually interesting and well-motivated by recent multi-scale attention work.
+
+Clear motivation and formulation: The paper is well-written and logically structured, clearly explaining the motivation behind each modification to the standard attention mechanism.
+
+Potential practical impact: The approach could improve transformer interpretability and adaptability in tasks where fine-grained positional relationships are important.
+
+### Weaknesses
+Limited empirical validation: While the theoretical contributions are strong, the experimental section is relatively weak. The evaluation mainly covers structured and clustered datasets, without sufficient diversity to support claims of general effectiveness.
+
+Computational analysis: No discussion on computational cost, convergence, or scalability compared to baseline attention mechanisms
+
+### Questions
+see weakness
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/QSPKIO3XV8.md b/human_reviews/QSPKIO3XV8.md
new file mode 100644
index 0000000000000000000000000000000000000000..61fd58fb89214b66bb05bd20a695d46eae5e4616
--- /dev/null
+++ b/human_reviews/QSPKIO3XV8.md
@@ -0,0 +1,206 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a method to improve neural operator learning by incorporating a dimension- and domain-aware co-decoder architecture. The key idea is to decouple solution representations into dimension-specific components and domain-conditioned features, then fuse them to approximate the target PDE operator. The authors argue that this decomposition improves generalization and sample efficiency for solving PDEs in different geometric domains and dimensional settings. Empirical evaluation is performed on benchmark PDE problems, comparing against several neural operator baselines, showing lower relative L2 error in some test cases.
+
+### Strengths
+- Clarity of high-level motivation: The paper identifies a meaningful and real challenge — neural operator models typically struggle to generalize across domains or dimensional configurations. This is a relevant problem in scientific machine learning.
+
+- Clean architectural formulation: The proposed “co-decoder” idea is structurally simple and easy to integrate with existing neural operator backbones.
+
+- Readable exposition: The manuscript is well structured and technically consistent at the high level, with decent visualizations and clean mathematical notation.
+
+- Experimental setup uses multiple PDE benchmarks: This is a step beyond trivial toy problems, indicating an attempt at broader evaluation.
+
+### Weaknesses
+While the problem is important, the contribution is weak both conceptually and empirically:
+
+- Limited novelty:
+The central idea—decomposing and fusing dimensional and domain representations—is not fundamentally new. Variants of similar factorization and conditional embedding approaches have already been explored in operator learning, meta-PDE frameworks, and equivariant neural operator designs. The paper lacks a crisp theoretical justification or truly novel algorithmic insight. It feels like another architectural tweak rather than a new paradigm.
+
+- Insufficient baseline coverage:
+The paper only compares against basic operator learning baselines (e.g., FNO, DeepONet, or UNet-like variants). To substantiate the claims of improved generalization, it is essential to compare against stronger and more recent models, including: (1) Koopman neural operator as a mesh-free solver of non-linear partial differential equations, (2) Solving High-Dimensional PDEs with Latent Spectral Models. These methods are explicitly designed for high-dimensional PDE problems and constitute state-of-the-art baselines.
+
+- Superficial ablation analysis:
+The ablations only show minor performance differences when components are removed. This raises concerns about whether the proposed “co-decoder” mechanism truly drives the reported improvements or if the gains are marginal/random noise.
+
+- Lack of theoretical insight:
+The authors repeatedly claim that dimension/domain factorization improves generalization, but no formal analysis or empirical probing (e.g., transfer learning between dimensional settings, robustness to domain shifts) is provided to support these claims.
+
+- Limited scope of experiments:
+The experiments are narrowly focused, and it’s unclear whether the method scales or generalizes to more challenging PDEs (e.g., higher-dimensional or irregular geometries). There is no comparison on computational overhead, parameter efficiency, or training stability.
+
+- Unconvincing performance gains:
+Even within the provided benchmarks, the improvements are often modest and lack statistical rigor (e.g., no error bars, limited repetitions, unclear significance testing). This weakens the claim of superiority over baselines.
+
+- Overclaiming in narrative:
+The abstract and conclusion use strong language (e.g., “universal”, “robust generalization”, “significant improvement”) that is not backed by the presented evidence. This is a recurring issue in weak submissions.
+
+### Questions
+- Clarify the real contribution:
+What is fundamentally new about the co-decoder mechanism compared to existing conditional or factorized representations used in neural operator models? A clearer theoretical framing or architectural justification is needed.
+
+- Stronger experimental validation:
+Please evaluate on more challenging PDE families, including higher-dimensional settings and irregular domains. Include robustness and scalability analyses. Provide multiple runs with error bars to assess statistical significance.
+
+- Ablation rigor:
+Conduct deeper ablations: Test the effect of removing either the domain or dimension factor separately. Vary the embedding capacity to show necessity. Test sensitivity to the number of training domains.
+
+- Efficiency and complexity:
+What is the computational overhead of the co-decoder compared to baseline neural operators? If the architecture is more complex, does it provide any real benefit in efficiency or generalization to justify it?
+
+- Transfer/generalization tests:
+If the paper claims better generalization across domains or dimensions, please provide explicit cross-domain or cross-dimensional generalization experiments, not just single-domain evaluation.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This work combines several popular techniques to solve PDEs with PINNs, including tensor decomposition, domain decomposition, and Mixture-of-Experts (MoE). It is like a technique report not a research paper. The motivation of combining such techniques is not clear. I recommend rejection.
+
+### Strengths
+Using a neural network inspired by tensor decomposition is a good idea. In fact, several recent studies have explored solving PDEs with tensor-based neural network architectures.
+
+### Weaknesses
+1. The proposed framework simply adds a Mixture-of-Experts (MoE) layer to a dimension-decomposition backbone. This combination seems arbitrary and lacks a clear reason or theoretical justification. The MoE layer makes the model more complex but does not show any real advantage over a well-tuned single network or simpler decomposition methods. The claimed “automatic” domain decomposition is not properly compared with existing, simpler domain decomposition approaches used in PINNs, so its benefit remains unclear.
+
+
+2. The reported improvements in accuracy and efficiency are small compared with standard PINNs or other PINN-based methods. The added model complexity and training cost are not justified by the limited gains shown on low-dimensional test problems.
+
+### Questions
+see the Weaknesses part.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes Dimension Domain Co-Decomposition (3D), a unified framework for solving partial differential equations (PDEs) based on Physics-Informed Neural Networks (PINNs). The framework jointly performs dimension decomposition, which factorizes the solution into dimension-wise components using a shared MLP for parameter efficiency, and domain decomposition, implemented through a Mixture-of-Experts (MoE) mechanism that automatically partitions the solution space into subregions without pre-defined boundaries. In addition, the paper introduces a novel quantitative interpretability metric, Variable Interpretability (VI), which measures how well the learned dimension-wise latent components align with ground-truth factors. Experimental results on several PDE benchmarks (Poisson, Wave, Burgers, and Linear Transport equations) demonstrate that the proposed method achieves improved accuracy, scalability, and interpretability compared to standard PINNs and prior decomposition methods.
+
+### Strengths
+1. The paper elegantly combines dimension decomposition and adaptive domain decomposition into a single framework, addressing both scalability and local adaptivity issues in PDE solving.
+
+2. The introduction of the VI metric provides a quantitative way to assess per-dimension interpretability, an aspect rarely considered in PINN literature.
+
+3. The introduction of the shared MLP is well motivated and effectively reduces the parameter count, especially in high-dimensional settings.
+
+4. The evaluation includes multiple types of PDEs (elliptic, hyperbolic, nonlinear), with detailed parameter analysis on rank $r$ and expert number $K$, providing empirical evidence.
+
+### Weaknesses
+1. The paper presents a clean combination of dimension decomposition, MoE-based domain decomposition, and a variable interpretability metric. While the empirical results are solid, the theoretical innovation is limited:Both parameter sharing and MoE are well-established techniques. The paper would benefit from a clearer articulation of the core technical challenge or insight specific to this setting, and from theoretical analysis connecting the VI metric to the proposed model’s design to make the contribution more solid.
+
+2. The experiments do not include comparisons with state-of-the-art PDE solvers such as Fourier Neural Operator (FNO) [1], which are highly relevant baselines.
+
+3. Ablations that remove the dimension factorization or the MoE router are necessary to substantiate the co-decomposition claim.
+
+4. Although the paper tests a high-dimensional (10D) Poisson equation, the PDEs considered remain relatively simple. The robustness and generality of the proposed 3D framework would be more convincing if tested on more complex or non-analytically-solvable systems.
+
+[1] Fourier Neural Operator for Parametric Partial Differential Equations.
+
+### Questions
+1. Have the authors evaluated the consistency and robustness of the learned domain decompositions?
+
+2. The paper highlights parameter and memory efficiency, but does not report actual training time or convergence comparisons. Could the authors provide quantitative evidence to support the claimed computational advantages of 3D?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes a unified Dimension Domain Co-Decomposition (3D) framework that integrates dimension decomposition and Mixture-of-Experts (MoE)–driven domain decomposition for solving high-dimensional partial differential equations (PDEs). The key contributions include:
+1. A shared-MLP dimension decomposition architecture that processes coordinate–index pairs, reducing parameters and improving scalability.
+2. A Variable Interpretability (VI) metric, which measures the alignment between learned latent dimension representations and ground-truth components.
+3. A MoE-based automatic domain decomposition, which adaptively partitions the computational domain without predefined regions or interface constraints.
+
+The framework demonstrates improved accuracy, efficiency and interpretability across several PDE benchmarks. However, certain aspects of the theory and experiments require further clarification. If the authors address these points in their rebuttal, I would be willing to raise my score.
+
+### Strengths
+1. **Originality**.
+The introduction of the VI metric is a creative and measurable approach to interpretability in PDE learning. The unified framework that combines shared-MLP design for multi-dimensional inputs with MoE based domain decomposition is also an innovation that enhances scalability.
+
+2. **Clarity**.
+The paper is generally well-structured, with clear explanations of the architecture, mathematical formulation, and experimental setup. Figures effectively illustrate both the decomposition mechanisms and domain partitions.
+
+3. **Reproducibility**.
+The paper provides detailed implementation settings, including network architectures, training procedures, and hyperparameters, ensuring high reproducibility.
+
+### Weaknesses
+1. **Lack of theoretical justification for the VI–convergence relationship**.
+The paper implicitly proposes an important but unproven proposition: if for all dimensions $j$, $VI_j \to 1$, then the model prediction $\hat{u}$ converges to the true separable solution $u$.
+ Currently, this claim is only supported empirically, where high VI values are observed to correlate with low prediction errors. However, no formal mathematical proof is provided to substantiate this relationship.
+
+2. **Fixed number of experts $K$ limits adaptivity and may cause compromise responses**.
+The number of experts $K$ is manually chosen rather than learned adaptively. When the PDE solution contains multiple fine-grained or highly localized structures (e.g., shocks, vortices, or high-frequency regions), a fixed small $K$ may fail to provide adequate domain resolution. Consequently, the router’s softmax weighting may average across distinct subregions, diminishing the local specialization property of the Mixture-of-Experts and leading to compromise responses. This design constraint restricts flexibility for more complex or multi-scale problems.
+
+3. **Router–expert coupling risks instability and expert starvation**.
+The strong interdependence between the router and experts introduces potential training instability. If an expert achieves slightly lower error early in training, the router may continuously reinforce its weight allocation, causing other experts to receive negligible gradients—a phenomenon known as expert starvation. In problems with rapidly evolving or multi-shock dynamics, delayed router adaptation can further trigger oscillatory expert switching and degrade convergence stability.
+
+### Questions
+1. Is it possible to provide a rigorous mathematical justification for VI?
+
+2. During training, was a multi-stage training strategy used, where the routing is fixed first and then the experts are updated, in order to improve overall convergence stability?
+
+3. According to the discussion in Section 3.2, VI is closely related to the separability of the ground truth and the properties of the matrix itself. Why, then, in Table 2, is VI correlated with frequency?
+
+4. In Table 2, the 10-dimensional Poisson requires a smaller $r$ than the 5-dimensional Poisson, which seems somewhat counterintuitive. Conventionally, higher-dimensional problems typically require a larger $r$ to adequately represent multi-dimensional separable structures.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/QnuJR7qA3z.md b/human_reviews/QnuJR7qA3z.md
new file mode 100644
index 0000000000000000000000000000000000000000..c22b69730ad5de1257fa12327541a04a22892783
--- /dev/null
+++ b/human_reviews/QnuJR7qA3z.md
@@ -0,0 +1,192 @@
+## Human Reviewer 1
+
+### Summary
+This paper highlights deployment issues with layers like GELU, Softmax and LayerNorm present in transformer models due to the use of expensive operations such as div, exponential. Present solution either focuses on simplified approximation (GELU→ReLU) and/or hardware design specifically to efficiently run one or more of these blocks on hardware. Both of these solutions are limited in terms of their effectiveness and/or generalization. The Author proposed a unified framework (HARA-Hybrid Arithmetic-ReLU Networks Approximation) to decompose these functions into simple arithmetic operators and an optimized parameter initialization pipeline for these approximations to work. The results are demonstrated by showing validation accuracy and hardware estimation for both FP32 and INT8 models (BERT, LLaMA, Swin, Stable Diffusion)
+
+Overall, this paper is well written and proposed solution to a very important problem related to deployment of transformers on different devices. The paper has good contribution and has potential be a good starting for others to work on top of this work. Results are conclusive (except the hardware benchmark) and shows that this method can solve both the issue of hardware complexity and quantization issues related to transformers.
+
+### Strengths
+- Authors have targeted a much needed topic in a timely manner as transformers are gaining a lot of popularity but their deployment is still limited to GPU devices and many layers need to be reworked to make it suitable for other devices.
+- Approximating power/compute hungry operators has been proposed in the literature and the Authors have compared their results with few of the those (especially LUT based methods)
+- The dynamic programming based initialization is a novel concept. Any model optimized with a better initialization strategy has a potential to converge fast.
+- Comprehensive results on four models and comparison with other SOTA methods makes the claim stronger.
+- Detailed mathematical explanation of approximation is a strong point.
+- Most important contribution is to include hardware synthesis results that shows the power and area reduction achieved using HARA
+
+### Weaknesses
+- One of the main limitations (also mentioned by the Authors) is that all the benefits are based on the hardware synthesis and the impact of these changes on RAM and latency can be significantly higher (or lower).
+- Authors are also encouraged to see the impact of these changes on other domains such as computer vision using ViTs.
+- Minor : Citation for RMSNorm and LayerNorm for the first time is missing L037
+
+### Questions
+- How does hardware synthesis translate to real RAM/latency improvement comparing to existing architectures (a qualitative discussion would suffice)
+- Can you include the ablation study to prove that the training initialization strategy results in better accuracy of the model (end to end model evaluated on a dataset). Table 4 includes ablation study but it is based on MSE calculated from a sample ? Please clarify how the MSE is exactly calculated and if it is based on a sample, it will be good to do ablation study of validation accuracy of end to end model.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper presents HARA (Hybrid Arithmetic-ReLU Approximation), a unified framework designed to approximate diverse non-linear activation and normalization functions using a single ReLU-based computational unit. The core motivation is that AI accelerators often require dedicated hardware units for different non-linear operations, leading to inefficient area and power utilization. HARA addresses this by proposing a unified approximation architecture that leverages a ReLU-centric design combined with a dynamic programming–based parameter initialization pipeline to enable accurate functional approximation across various nonlinearities. The authors claim that HARA achieves ≤0.1% accuracy degradation on representative workloads (BERT, Swin, LLaMA, Stable Diffusion) while providing substantial projected area and power savings compared to baselines with specialized functional units for each operation.
+
+### Strengths
+- The paper introduces a clean, generalizable framework (HARA) that unifies diverse nonlinear operators (e.g., GELU, Softmax, LayerNorm) under a single reconfigurable ReLU-based architecture.
+
+- The unified operator maintains accuracy within <0.1% of the baseline, demonstrating excellent approximation fidelity.
+
+- Hardware synthesis projections show significant area and power savings (≈62% area, 52% power) compared to separate specialized LUT units
+
+### Weaknesses
+- Results rely on synthesis-based estimations only, with no end-to-end performance, latency, or energy measurements on real hardware (FPGA, or ASIC prototype) (noted as limitation) or simulation. Ideally, the results for area and power reported should be post place-and-route.
+
+- Evaluations cover only standard precision settings and moderate workloads; there is no stress testing under long-sequence LLMs, mixed precision, or extreme numerical conditions.
+
+- The paper does not compare against reconfigurable functional units (RFUs) or FPGA based designs that already provide similar arithmetic flexibility.
+
+- Models and datasets are reasonable but small. Ideally, to convincingly portray the benefits of the method a large range of model sizes must be employed with reports of accuracy and inference performance metrics.
+
+- Evaluation omits key runtime baselines such as GPU fused kernels or optimized accelerator designs.
+
+### Questions
+Technical Concerns/Questions and Points to Address in Rebuttal:
+
+- Missing citations for related work in lines 119-128.
+
+- I suggest having an extended related work section in the appendix having a round-up of quantization techniques etc. particularly the ones focused on similar co-design such as [1], [2] and [3].
+
+- Area, power results must be post place-and-route and not post synthesis.
+
+- Provide range-reduction proofs and error bounds, plus catastrophic-case tests (very peaky logits; near-zero variance in LayerNorm; half-precision under/overflows).
+
+- Larger model evaluations needed. BERT and Swin are not really exciting.
+
+- The paper does not analyze how quantization affects the approximation quality of the learned nonlinear mapping.
+
+- HARA is positioned as inference-time replacement. There’s no evidence on fine-tuning stability with HARA in the loop, or on co-training to reduce approximation error.
+
+- Quantization setup (scales, accumulators, rounding) is not detailed, limiting reproducibility.
+
+- A key limitation is, this work does not compare inference throughput with GPUs or other existing accelerators. I'd suggest the authors to do a comparison along the lines of [1], [2] using either GP-GPUSim or (if possible) real GPU results to truly evaluate how well HARA performs compared to GPUs. While the authors note the difficulty in physical implementation in the limitation section, I feel it is not unreasonable to do simulation as prior work have done to get preliminary performance evaluation. Not showing any performance results is a red flag and if performance results cannot be shown the authors must wait and re-submit a more complete work in the next iteration.
+
+- More recent baselines must be identified for comparison.
+
+- How is HARA different from a scheme where you have a general-purpose computational unit with all primitive operations such as add, sub, mult etc and we can use that same unit by changing the routing to create a reconfigurable unit to perform any non-linear operation ? Please do area/power comparison with such a unit.
+
+- When operating at low precision, why not simply employ small LUTs for each non-linear function at sub–8-bit resolution? Wouldn’t that be a more straightforward approach? Because, at lower-precision such as 4-bit the LUT size is fairly small.
+
+- The URN structure likely involves intermediate activations with addition/multiplication accumulation. The bit-width of these accumulators (e.g., 8-bit vs. 16-bit partial sums) is never stated, making it impossible to evaluate numerical error growth or overflow risk.
+
+- Is the 6nm by TSMC ?
+
+
+References:
+
+[1] Ramachandran, A., Kundu, S., & Krishna, T. (2025, June). Microscopiq: Accelerating foundational models through outlier-aware microscaling quantization. In Proceedings of the 52nd Annual International Symposium on Computer Architecture (pp. 1193-1209).
+
+[2] Guo, C., Tang, J., Hu, W., Leng, J., Zhang, C., Yang, F., ... & Zhu, Y. (2023, June). Olive: Accelerating large language models via hardware-friendly outlier-victim pair quantization. In Proceedings of the 50th Annual International Symposium on Computer Architecture (pp. 1-15).
+
+[3] Sharma, H., Park, J., Suda, N., Lai, L., Chau, B., Kim, J. K., ... & Esmaeilzadeh, H. (2018, June). Bit fusion: Bit-level dynamically composable architecture for accelerating deep neural network. In 2018 ACM/IEEE 45th Annual International Symposium on Computer Architecture (ISCA) (pp. 764-775). IEEE.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes HARA (Hybrid Arithmetic–ReLU Approximation Networks), which replaces diverse and power-hungry nonlinear operations with simple arithmetic primitives combined with a shallow ReLU network. In this way, a single hardware platform for HARA can flexibly support a wide range of nonlinear operations while maintaining efficiency.
+
+### Strengths
+- A single hardware framework for HARA can support various nonlinear operations, offering architectural flexibility.
+
+### Weaknesses
+- Several critical details necessary for fully understanding HARA are missing.
+ 1. The size of the ReLU network (e.g., hidden dimension) is not provided, making it difficult to estimate the processing cost of HARA.
+ 2. The conversion mechanism from GeLU to HARA is not described.
+ 3. The storage and memory-access overhead for the ReLU network weights is not adequately discussed. Conventional nonlinear operator implementations (including LUT-based approximation methods) do not require external memory access, so the latency and energy implications of fetching ReLU network weights should be analyzed for a fair comparison.
+ 4. The parameter tuning cost for HARA (via dynamic programming and fine-tuning) is not fully discussed.
+- This paper does not clearly describe the hardware resource requirements of conventional LUT-based approximation methods or their impact on inference accuracy. For example, NN-LUT [1] employs a simple LUT with only 16 entries to approximate nonlinear functions, achieving low hardware cost while maintaining accuracy. Although increasing the number of LUT entries could further reduce the mean squared error (MSE), such improvement may not necessarily lead to meaningful gains in inference accuracy. Hence, improving MSE at the expense of hardware efficiency may not be justified. Consequently, directly comparing MSE values between HARA and conventional LUT-based approximation methods may not represent a fair evaluation. A more comprehensive assessment, including hardware area, power overhead, processing latency, and inference accuracy, would be necessary to establish the practical advantages of HARA.
+
+[1] Yu, Joonsang, et al. "NN-LUT: Neural approximation of non-linear operations for efficient transformer inference." Proceedings of the 59th ACM/IEEE Design Automation Conference. 2022.
+
+### Questions
+Please check the weaknesses.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper presents HARA (Hybrid Arithmetic–ReLU Approximation), a unified framework for replacing all non-linear operations in Transformers (e.g., GELU, Softmax, LayerNorm) with a single hardware-efficient ReLU–arithmetic module. The core idea is to use a dynamic programming–based parameter initialization pipeline that systematically finds near-optimal breakpoints for piecewise linear approximation, converts them analytically into ReLU parameters, and fine-tunes them. Experiments show that HARA achieves orders-of-magnitude lower MSE compared to NN-LUT and RI-LUT, while maintaining almost identical end-to-end performance with various transformer-based models.
+
+### Strengths
+- The paper is well written, detailed, and clearly organized. The methodology and experiments are described systematically, and results are easy to reproduce.
+- Compared to NN-LUT and RI-LUT, HARA significantly reduces approximation error (often by several orders of magnitude), leading to more robust end-to-end accuracy across multiple Transformer models.
+
+### Weaknesses
+- **Methodological contribution seems incremental**: While the paper frames its contribution as a unified framework with an optimized DP-based initialization pipeline, the core technical novelty beyond prior work such as NN-LUT or RI-LUT appears limited. The main differentiator seems to be the use of dynamic programming for systematic breakpoint selection and analytical ReLU parameter conversion, which is a well-motivated but relatively moderate algorithmic improvement. If I have misunderstood the extent of this difference, clarification on how HARA’s optimization pipeline fundamentally departs from previous LUT-based or neural approximation methods would be helpful.
+
+- **Lack of strong empirical motivation**: The paper does not convincingly establish that non-linear operators are the primary computational bottleneck in modern Transformer inference, especially compared to attention or matrix-multiplication components. While the proposed framework demonstrates excellent numerical approximation accuracy, it remains unclear how much practical speedup or memory benefit these approximations bring at the end-to-end system level. In addition, the experimental scope is somewhat narrow—evaluations focus on a small set of tasks and omit runtime or latency measurements that could justify the broader motivation.
+
+ - The work’s focus and contributions are primarily hardware- and implementation-oriented, with less emphasis on learning dynamics or algorithmic understanding. Therefore, the paper may align more naturally with a hardware or systems venue (e.g., DAC, MLSys) rather than ICLR, which typically emphasizes conceptual or methodological advances in machine learning.
+
+### Questions
+See weakness
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/RNe17WTR38.md b/human_reviews/RNe17WTR38.md
new file mode 100644
index 0000000000000000000000000000000000000000..5672f3b3a70ee0ee003c309043e72a01efd68e67
--- /dev/null
+++ b/human_reviews/RNe17WTR38.md
@@ -0,0 +1,180 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a self evolution framework in which a single language model acts as both generator and verifier to construct preference data for self improvement. The method introduces two variants, SimpleGV (single turn verification) and RevisionGV (multi turn verification), and applies iterative DPO. The authors evaluate the approach mainly on mathematical reasoning benchmarks.
+
+### Strengths
+The paper is clearly written and conceptually easy to follow.
+
+### Weaknesses
+**Limited novelty.**\
+The proposed framework of self-generation and self-verification is not new. Similar iterative preference learning or self-rewarding approaches have already been explored in prior works such as [1,2,3,4,5]. The paper differs only in minor details (e.g., thresholded verification, curriculum scheduling), which do not constitute meaningful methodological novelty. It also overlaps heavily with [6] in both structure and training procedure.
+
+**Lack of proper comparison and discussion.**\
+The paper does not compare against the most relevant prior works on self-improvement or self-rewarding LMs. There is also little discussion on how the proposed method differs conceptually or empirically from existing iterative preference optimization frameworks.
+
+**Weak experimental validation.**\
+The experiments are narrow in scope (e.g., training on a single dataset, using only two models, and evaluating mostly on math relaative easy reasoning tasks). There are no experiments on other domains (e.g., coding) or stronger reasoning benchmarks (e.g., AIME, AMC). As a result, the claims of general self-evolution remain unsubstantiated.
+
+**Cost inefficiency.**\
+The generator–verifier framework requires multiple generations and verification passes, increasing computational cost significantly. However, the observed performance gains are modest, suggesting poor cost–performance trade-off.
+
+**Overall.** The method appears to be a minor extension of existing self-reward/self-evolution frameworks, without demonstrating clear advantages or generality.
+
+Reference\
+[1] Self-Rewarding Language Models\
+[2] Self-consistency preference optimization\
+[3] Meta-Rewarding Language Models: Self-Improving Alignment with LLM-as-a-Meta-Judge\
+[4] CREAM: Consistency Regularized Self-Rewarding Language Models\
+[5] ARIES: Stimulating Self-Refinement of Large Language Models by Iterative Preference Optimization\
+[6] ReVISE: Learning to Refine at Test-Time via Intrinsic Self-Verification
+
+### Questions
+See the weakness above.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper studies generator-verifier games where the same instruction‑tuned model acts as a generator that proposes multiple answers and a verifier that judges whether each answer is correct. Preference pairs are then formed and used to fine‑tune the model with DPO. The paper studies two variants: SimpleGV, which involves single‑turn, verifier as a judge with thresholded majority voting, and RevisionGV, which uses multiple turns, generator revises responses using verifier feedback. The method is evaluated on synthetic KK puzzles and math benchmarks, with strong KK improvements.
+
+### Strengths
+* Timely problem: Overall the problem the paper aims to solve is good. Reducing dependence on human labels or domain-specific verifiers is very important, and a single model generator/verifier is very a simple formulation.
+* Clear Writing: The paper does well at explaining how they form preference pairs and provides concrete settings. I found this easy to follow.
+* Ablations: The ablations on KK were really useful and important giving a sense of how the synthetic task behaves.
+
+### Weaknesses
+I think this paper needs additional evaluations to be stronger and seems unfinished. I list my concerns below:
+
+* Improvements on Real Datasets: The paper finds really small improvements on datasets like GSM-8K or MATH-500 in comparison to the synthetic task. I think this needs more analysis, see one concern below on this thread.
+* Distribution Leakage: I was not familiar with OpenThoughts3, but I looked into it and found that it was really close in distribution to GSM-8K and MATH-500. It aggregated reasoning problems. I wonder if this leads to inflated gains and the modest gains seen are from using OpenThoughts3 rather than the set up seen here.
+* Hyperparameters: How are hyperparameters selected? My reading right now is that they are selected using the testing set...
+* Verifier Signal: The core claim of the paper is that we can extract reliable signals from noisy self-verification via thresholded voting. But, when measured against a strong model with access to ground truth, the unsupervised verifier is only ~60% accurate on KK with Gemma‑4B. At scale, this is far from real preference labels. Even when making the model larger, you're still topping out at around 91%.
+* Small Models: In the abstract, the authors claim that the approach "enhances reasoning in small models" yet Gemma‑1B shows little to no benefit. In the limitations section, this is acknowledged as well. I would reduce claims on generality in the abstract implied upfront.
+* Novelty: Conceptually, I am having trouble differentiating between this method and self-refinement. To me, the paper is in this way, purely empirical. The major problem with this is that the main improvement the paper demonstrates is with KK and very limited improvement on the math benchmarks. Without stronger gains or deeper analysis, the contribution doesn't feel very strong to me.,
+
+### Questions
+* Could the authors discuss OpenThoughts3 and its training distribution a bit more?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes Simple Generator–Verifier (GV) Games, a self-evolution framework that enables a single language model to generate and verify its own outputs without external supervision. By constructing high-confidence preference pairs through thresholded majority voting and optimizing via DPO, the model self-improves its reasoning ability. The authors demonstrate consistent gains in reasoning accuracy and easy-to-hard generalization across multiple benchmarks, showing that simple self-verification can approach supervised performance efficiently.
+
+### Strengths
+1. The paper conducts extensive experiments across multiple benchmarks, model scales, and ablation settings, demonstrating robustness and reproducibility.
+
+2. The problem setting—learning from unlabeled prompts and unverifiable tasks—is timely and important.
+
+3. The idea of turning a model’s own verification capability into a generator–verifier game, rather than relying solely on majority voting, is novel.
+
+### Weaknesses
+1. The paper lacks sufficient explanation of baseline methods such as INTUITOR, Absolute Zero (AZR), and AZR-Coder—it is unclear how these baselines are implemented or differ from the proposed approach.
+
+2. Although the related work section mentions Absolute Zero and R-Zero, there is no direct empirical or conceptual comparison, making it difficult to assess the advantage of the proposed method.
+
+3. Without a comparison to an external or supervised verifier, it is hard to evaluate how much of the improvement comes from self-verification itself versus incidental effects of DPO fine-tuning.
+
+4. Different tables use different model backbones (e.g., Table 1 uses Qwen2.5-7B-Instruct, while Table 4 uses Gemma-3-1B-it), raising concerns about consistency and fairness in comparison.
+
+5. Figure 2 shows that the SimpleGV verifier accuracy improves over the base model, but since the verifier is not explicitly trained, it is unclear why or how this improvement emerges.
+
+6. In Table 1, several baselines perform worse than their original reports (e.g., GRPO with Qwen2.5-7B drops from 90.2 → 82.9), yet no interpretation or justification is provided.
+ ---
+Presentation.\
+a. The gray-highlighted rows in the tables are difficult to interpret .\
+b. The numbers in Figure 5 are too small and hard to distinguish.\
+c. The texts in Table 3 are overly long, making it hard to understand each configuration clearly
+
+### Questions
+1. How would performance change if the verifier were trained or fine-tuned separately rather than sharing parameters with the generator?
+
+2. Is the model update applied only to the generator role, or does it indirectly improve verification ability as well?
+
+3. Could the authors clarify whether iterative GV training leads to verifier drift (i.e., changes in its reliability over iterations)?
+
+4. Could the authors provide more explanation and evidence for lines 264–266 — specifically, what causes “redundancy and verifier noise to begin to dominate” beyond a moderate model size?
+
+5. Could the authors include an error case analysis to better illustrate the failure modes of self-evolution?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes as test time inference method relying on majority voting with an LLM as a judge utilized for a single-turn and multi-turn setup.
+
+### Strengths
+- The paper evaluates on several empirical domains such as knights and knaves and also performs ablations over thresholds and data and model sizes
+
+### Weaknesses
+- LLM as a judge and Majority Voting/Ensembling has been well studied in prior work (e.g [1]) thus is unclear the main contributions of this work with respect to these approaches
+- Several baselines (e.g MCTS) from the test time inference literature hasn't been compared to in this work, making it hard to judge the contribution of the proposed method
+
+[1] Scaling LLM Test-Time Compute Optimally can be More Effective than Scaling Model Parameters
+
+### Questions
+See weaknesses above.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/Rip3EJc4nx.md b/human_reviews/Rip3EJc4nx.md
new file mode 100644
index 0000000000000000000000000000000000000000..e76799bbf8f71ca5c47be9bfe5e4d2919b0eb00a
--- /dev/null
+++ b/human_reviews/Rip3EJc4nx.md
@@ -0,0 +1,175 @@
+## Human Reviewer 1
+
+### Summary
+The paper proposes a pruning criterion for large language models based on the information entropy of the model’s output distribution. Instead of using one-hot cross-entropy (which focuses on the single next token) or relying on a separate teacher for self-distillation, the method computes per-layer entropy-based importance scores within a Taylor-style framework and prunes parameters to better preserve the model’s global output distribution. The approach is label-free, aims to maintain fidelity after pruning, and is evaluated on zero-shot benchmarks for LLaMA and Qwen-family models.
+
+### Strengths
+The authors propose a relatively simple yet reasonable approach for pruning large language models (LLMs), which uses the entropy of output distributions as an indicator of neuron importance, instead of relying solely on next-token cross-entropy. The method does not depend on additional teacher models or complex distillation procedures, making it practically appealing for real-world pruning applications. The experiments cover multiple model families (e.g., LLaMA, Qwen) and several zero-shot benchmarks, showing that the proposed approach consistently outperforms existing pruning baselines. This provides some evidence of general applicability and reliability.
+
+### Weaknesses
+1. The dataset coverage is narrow and the evaluation tasks are of low difficulty, relying on a small set of relatively simple zero-shot benchmarks. This makes it difficult to assess robustness in areas such as instruction following, multi-step reasoning, long-context understanding, or multilingual and multi-domain settings.
+2. There may be a mismatch between the benchmarks and the pruned model components: if the tasks do not sufficiently engage the pruned submodules, the reported “distribution fidelity” may be overstated and external validity remains uncertain.
+3. Baseline and tuning transparency is limited, with missing comparisons to stronger or more recent pruning baselines, as well as a lack of systematic hyperparameter exploration under fair alignment conditions (e.g., matched training steps and learning-rate sweeps).
+4. The evaluation metrics are limited, focusing heavily on perplexity or simple zero-shot accuracy, without including direct generation results.
+
+### Questions
+1. The evaluation datasets are insufficient — they’re all too simple. The pruned parameters might not cover the activation patterns of these models, so more diverse datasets should be added.
+2. In addition, the model sizes don’t seem sufficient either, for example models like Qwen3-8B.
+3. For reasoning models, does the entropy criterion remain reliable?
+4. The main contribution is the use of entropy for pruning, which feels rather limited.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces HFPrune (High-Fidelity Pruning), a structured pruning method for LLMs that aims to preserve model fidelity while reducing computational and memory costs, replacing the conventional loss-based Taylor pruning criterion with an information entropy–based criterion that measures the global prediction distribution of the model, instead of focusing only on the ground-truth token.
+
+### Strengths
+- Provides a label-free, holistic signal for neuron importance estimation.
+- HFPrune consistently outperforms strong baselines: LLM-Pruner, LoRAPrune, SDMPrune, on LLaMA and Qwen families.
+- Comprehensive ablation studies validate the entropy criterion’s role in preserving output distributions.
+- The algorithmic description is clear and reproducible. Implementation details are systematically reported.
+
+### Weaknesses
+- The pruning ratio $\rho{mlp}$ is fixed across all MLP layers, despite entropy potentially varying per layer, this could limit the functionality of HFPrune.
+- Lack a comparative discussion or empirical correlation analysis between entropy-based and Fisher-based importance scores.
+- Training-time FLOPs for fine-tuning (post-pruning recovery) are omitted.
+
+### Questions
+- Can a per-layer entropy-based adaptive cutting ratio improve the trade-off between fidelity and compression?
+- How does the entropy gradient behave in the low entropy versus high entropy regions of the output distribution?
+- What are the effects of using entropy calculated from logits vs. softmax probabilities?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes HFPrune, a structured pruning method for LLMs that replaces traditional one-hot cross-entropy with information entropy as the criterion for Taylor-based neuron importance evaluation. The authors argue that entropy-based evaluation considers the full output distribution rather than just the ground-truth token, leading to better preservation of model capabilities. The method focuses on pruning MLP modules and demonstrates consistent improvements over existing methods across LLaMA and Qwen models on zero-shot benchmarks.
+
+### Strengths
+The method avoids computational overhead of teacher models and resolves gradient initialization issues in self-distillation approaches, showing 3x speedup over SDMPrune with 31% less memory usage.
+
+Demonstrates improvements across multiple model families (LLaMA, Qwen) and sparsity levels, with some configurations even exceeding dense model performance after fine-tuning.
+
+The approach is straightforward to implement, requiring only standard forward-backward passes without custom kernels or auxiliary models.
+
+### Weaknesses
+The paper fundamentally lacks theoretical justification for why entropy-based importance should preserve model performance. This is not a minor omission, in my view it's a central issue that undermines the contribution's scientific rigor.
+
+**Limited Evaluation Scope**:
+- Exclusively focuses on zero-shot QA/classification tasks
+- No evaluation on reasoning, long-form generation, or conversational capabilities
+- Largest model tested is only 7B parameters
+- Limited architectural diversity beyond LLaMA/Qwen families
+
+**Methodological Limitations**:
+- Uses uniform pruning ratios across layers, ignoring heterogeneous sensitivity
+- Limited sparsity range testing (only 20-30%)
+- The performance gains over dense models likely result from fine-tuning rather than pruning itself
+
+**Insufficient Analysis**:
+- No explanation of which types of neurons are pruned and why (recent works have revealed super neurons, super weights, super experts etc.)
+- No investigation of the relationship between entropy reduction and specific capabilities
+- Missing analysis of method sensitivity to calibration data selection
+
+**Questionable Claims**: The assertion that the method "minimizes the change of global prediction distribution" is not rigorously nor theoretically established, and the connection between this and performance preservation remains speculative.
+
+### Questions
+1. Can you provide rigorous mathematical analysis of why minimizing entropy change should preserve model capabilities better than minimizing cross-entropy change?
+2. What is the information-theoretic justification for treating high-entropy neurons as more important?
+3. How does your approach relate to existing theories of neural network capacity and information flow?
+4. How does the method perform on reasoning tasks (GSM8K, BBH), long-context generation, and conversational AI beyond zero-shot classification?
+5. Can you evaluate on larger models (70B+) and more diverse architectures to support generalizability claims?
+6. What explains the performance improvements over dense models - is this due to fine-tuning effects rather than pruning benefits?
+7. Why use uniform pruning ratios instead of layer-sensitive approaches?
+8. How sensitive is the method to calibration data selection and size?
+9. How does the method perform under more aggressive pruning (40-70% sparsity)?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes HFPrune, a novel method for compressing LLMs through pruning of the MLP modules within transformer architectures. HFPrune introduces an information entropy-based criterion for evaluating neuron importance, offering a more holistic approach than traditional methods, which rely on one-hot cross-entropy loss. This entropy-based method minimizes the global prediction distribution change, effectively preserving model performance. Extensive experiments on LLaMA and Qwen models demonstrate the effectiveness and efficiency.
+
+### Strengths
+The proposed idea is simple, straightforward, and aligns well with intuition. From the engineering perspective, it is also very easy to implement.
+
+Extensive experiments were conducted on multiple LLM models, across diverse benchmarks, comparing the proposed method with several previous methods. The results demonstrate significant improvements in both performance and efficiency of the proposed method.
+
+### Weaknesses
+**Explanation on the Choice of Baselines**: As discussed in the Related Work section, LLM pruning is a highly focused research area with a large body of work, which can be categorized into different approaches. However, in the experimental section, only a few methods such as LLM-pruner, LoRAPrune, and LoRAP are compared, and the rationale behind choosing these baselines is not explained. It remains unclear whether the state-of-the-art methods from each category are all covered by the baselines used in this paper. If they are, an explanation should be provided; if not, more baselines should be included (or a justification should be given for why they cannot be included for a fair comparison).
+
+**More Comparison on Efficiency**: For Efficiency, the paper only compares the proposed method with SDMPrune, demonstrating that the proposed approach is more efficient than methods like SDMPrune, which require a teacher model. The efficiency of other methods (LLM-pruner, LoRAPrune, LoRAP) should also be compared.
+
+**Writing Needs Improvement**:
+- For example, in lines 013-014 of the Abstract: The statement "A common approach uses Taylor Expansion" does not clearly explain the field of research. It should at least mention that "it is a common approach for LLM pruning."
+- In line 015 of the Abstract, the sentence "However, its reliance on one-hot cross entropy loss, ..." contains a grammatical error. It should be "it relies on" instead.
+- Many more problems on writing exists
+
+### Questions
+**Regarding whether "focus on pruning MLP" is the contribution of this paper**: In lines 039-043, when explaining why the paper focuses on pruning MLP, the authors use phrases like "We find that" and "we observe that" (and then prove this in Section 5.3.3 with experiments), but these statements are also referencing previous works. Is this an innovative contribution of the paper, or is it the findings from previous works?
+
+**considering a subset of tokens**:Between the extremes of "only consider the ground-truth label token" and "consider all possible tokens", an intermediate approach could be: only considering a subset of tokens (for example, the top K tokens with the highest probability) when evaluating neuron importance. Did the authors experiment with this approach? Experiments or discussions on this would make the paper more insightful.
+
+### Soundness
+3
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/SkmkGKEZ1U.md b/human_reviews/SkmkGKEZ1U.md
new file mode 100644
index 0000000000000000000000000000000000000000..30e2af076cb2bd8ac5c15e0b36c3b344ef8685c9
--- /dev/null
+++ b/human_reviews/SkmkGKEZ1U.md
@@ -0,0 +1,188 @@
+## Human Reviewer 1
+
+### Summary
+The paper introduces **O-Forge**, a workflow that couples a frontier LLM with a computer algebra system (CAS), specifically Mathematica’s Resolve, to prove asymptotic inequalities by (i) asking the LLM to propose a domain (or index) decomposition and (ii) using Resolve to verify each piece via first-order quantifier elimination. A toy inequality and a series bound from Tao are used as case studies; the paper claims the approach “moves beyond contest math” by offloading the creative split to the LLM and the verification to CAS. The system exposes a CLI and a website front-end; evaluation is described as ~40–50 “easier problems,” with qualitative takeaways about typical numbers of subdomains and the usefulness of leading-term simplifications.
+
+### Strengths
+N.A.
+
+### Weaknesses
+There are too many drawbacks in this paper. In general, this submission is more like a blog post instead of a rigorous paper as it lacks of enough and solid experiments and evaluations to demonstrate its claims. Some of the weaknesses are as follows.
+- **Lack of Novelty:** LLM + CAS could be viewed as part of Tool-use LLM research. The proposed idea is not novel.
+- **Insufficient rigor and experimental substance:** The “evaluation” consists of two main case studies plus ~“40–50 easier problems,” but there are no well-defined benchmarks, success metrics, or failure analyses (rates of correct/incorrect splits, wall-clock, query counts, sensitivity to prompts, comparisons to baselines like hand-crafted heuristics or SMT-based pipelines, etc.). As is, this reads more like a prototype report/blogpost than an ICLR-level empirical study.
+- **Underspecified method details:** Key pieces are missing or skeletal. For example, the “structured prompt” is left with placeholders (“describe the structure of the prompt”), and the code snippet for Resolve is fragmentary; the search over constants C is a coarse grid without justification or sensitivity analysis. This makes the approach hard to reproduce or evaluate scientifically.
+- **Heavy reliance on closed-source Mathematica without proof objects:** While Resolve is powerful, the paper acknowledges there is no proof term and asks the reader to trust a closed system; this undermines the claim of “rigorous verification,” especially for research-level math. No attempt is made to cross-check with open tools (e.g. SageMath) on a subset, or to export certificates.
+- **Reproducibility & accessibility concerns:** Running the system requires Mathematica and a frontier LLM API, making reproduction costly; even the authors’ ethics section notes access costs. There is a website, but that can’t substitute for open artifacts or independent verification.
+- **Scope creep vs. precise problem definition:** The paper oscillates between “asymptotic inequalities” and the specific case study. I could feel the motivation of this paper: making a true AI4Math tool or project to better help professional mathematicians instead of some fuzzy LLMs that could only do math questions. But there is no crisp task definition, no sanity check for the motivation, and no quantitative experiments to show the helpfulness and effectiveness. This vagueness makes it hard to judge whether this is something scientifically helpful or just some course project.
+
+### Questions
+- Please use \citep for non-subject/object citations.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+Following Terry Tao’s proposed algorithm, a system for asymptotic analysis is implemented. It combines an LLM for the creative part of sub-domain choice, and uses Mathematica for the rest of the steps - notably “Resolve” for proofs in specific sub-domains.
+
+2 non-trivial asymptotic bounds were proven via this system.
+
+### Strengths
+If works well, applicable to a broad range of scientific endeavors.
+
+Final results are grounded via a reliable CAS system.
+
+Shown proof of concept for useful mathematical results.
+
+### Weaknesses
+Line 86: “(** describe the structure of the prompt**)”...
+This is unprofessional at best.
+
+Line 91: All the mentioned solvers need citations, as well as the Mathematica Resolve function - due to its central role in your system.
+
+Line 100: Fig.1 is mentioned initially on page 2 but appears on page 4. Why?
+
+Line 101 (and multiple others): “o-forge.com”.
+At the top right corner of the front page of this website it clearly states:
+
+Created by
+
+Vijay Ganesh
+
+Ayush Khaitan
+
+Violating the ICLR guidelines regarding anonymity.
+
+
+Regarding the website itself, while I liked the UI and readily available examples, it sometimes returns weird results.
+For example, Example Series 1 returns a summary that contains a single word: “The”. I ran it a few times to make sure it’s not some random LLM aberration.
+Other times the output shows a Python error stack trace (“Execution Failed”).
+Seems underbaked and the code is unstable.
+
+Line 109,113,119 (and others): Citations. You’re mentioning Prof. Tao many, many times - but he is a prolific mathematician. Point to the specific works you use.
+
+Line 123: While I personally agree with this claim on (most) interesting series bounds, it needs to be quantified (benchmark vs. other methods), or at least supported by multiple examples from the literature.
+
+Line 127: The novelty claim is unclear to me. It seems like an engineering project - implementing a (good) idea by Prof. Tao. While I agree that such an online tool can be useful for mathematicians around the world - and would like to encourage you to improve it and fix the bugs - the system does not constitute *scientific* innovation done by you.
+
+The generate (via LLM) -> verify (via CAS) approach was done in multiple projects (though not specifically in your use case) - so the core approach is also not novel on its own.
+
+If the strongest results are the proof of the specific use-case (which to my understanding is indeed novel, but I don’t know enough to say how impactful this singular result is), then perhaps consider submitting to a mathematical / experimental math journal?
+
+Line 295: I’m a supporter of readable papers and not-too-formal language, but this is too much.
+The paper is not your blogpost.
+
+Line 348: What do you mean “around 40-50”??
+
+Section 5: You need concrete statistics for all the claims here. Currently it’s anecdotal.
+
+Section 6: There are multiple other works in AI for Math that apply combinations of CAS/code generation + LLMs. The current overview is quite limited.
+
+### Questions
+Line 256: This “elaborate Mathematica code’ seems like an important part of the system - perhaps ~50% of its power?
+
+Line 270: Once in the entire process? If I’m reading the outputs on your website correctly, there are recursive attempts to re-define the sub-domain partition, until you get “True” on all of them?
+
+Line 328: How is the output passed to Mathematica? Is there a specific format that you force it to use in its output? Do you parse the output text and translate it to Mathematica code? If so, how?
+
+Line 359: How do you count decompositions? Number of separate domains or number of boundaries?
+
+Line 367: Any ideas why this happens?
+How do you do this replacement?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+0
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+he paper presents O-Forge, a system that integrates a large language model (LLM) with a computer algebra system (CAS) to aid in the verification of asymptotic inequalities. This is an instance of classical synthesis paradigms such as oracle guided inductive synthesis combining an inductive LLM with deductive reasoning system to generate formal artifacts. The paper describes this as an “In-Context Symbolic Feedback Loop”. The LLM proposes domain decompositions (i.e., how to split a problem into manageable subdomains). The CAS (via Mathematica’s Resolve function) then verifies whether each subdomain satisfies the proposed inequality using first-order logic and quantifier elimination.
+
+### Strengths
+The authors claim their tool can handle research-level asymptotic inequalities, going beyond standard competition-style problem solving by combining LLM creativity with CAS rigor. This is left to some subjective interpretation.
+Two case studies: an asymptotic AM-GM inequality and a series decomposition, are used to demonstrate the concept.
+
+### Weaknesses
+The paper reads more like a concept demo or blog post than a rigorous scientific study, lacking detailed quantitative and ablation studies with proper baselines. Testing on self-curated "suite of around 40-50 easier problems" and a few case studies falls far short of the evaluation expected of a research paper.
+
+Hybrid symbolic–neural approaches (e.g., Lean+LLM, AlphaProof, Autoformalization pipelines; see https://arxiv.org/abs/2310.17807, https://ieeexplore.ieee.org/document/10356332) have already explored the same broader paradigm with planning, code generation, formal proof verification, not just heuristic checking. The authors present O-Forge as “revolutionary,” yet it is essentially prompting an LLM for suggestions and sending them to a formal tool - Mathematica.
+
+Crucial implementation details are omitted. How exactly is the LLM prompted? How is the “in-context feedback” loop structured? How is the decomposition quality evaluated or improved iteratively? Are there failure modes where the LLM produces incorrect decompositions, and how are these handled?
+
+### Questions
+Can you expand experimental evaluation and share quantitative metrics (success rate, runtime, size of inequalities handled) over larger benchmark suite to substantiate performance?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper introduces a CAS + LLM system for proving asymptotic expressions. The primary thrust of the system is to use a LLM to propose decompositions and then use a CAS to test their correctness.
+
+### Strengths
+Due to the very unusual nature of the weaknesses, I don't have any strengths to comment on.
+
+### Weaknesses
+This paper does not appear to contrain any evidence as to its effectiveness. Section 5 begins "In addition to the above-mentioned case study of hard problems, we tested our tools on an extensive suite of around 40-50 easier problems, in order to study how well it performs on a diverse set of inequalities," but there is no mention of these "hard problems" anywhere in the paper. Additionally, for these easy problems, the paper presents three high level takeaways but no actual evidence.
+
+### Questions
+Did I misunderstand something? Does this paper present evidence of its correctness?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/SpUXijnBEg.md b/human_reviews/SpUXijnBEg.md
new file mode 100644
index 0000000000000000000000000000000000000000..4c078da5867d0816370021d1bad310d57e8cfa15
--- /dev/null
+++ b/human_reviews/SpUXijnBEg.md
@@ -0,0 +1,166 @@
+## Human Reviewer 1
+
+### Summary
+Direct Optimal Action Learning (DOAL) simplifies offline RL policy extraction by decoupling optimal action computation from policy training. It achieves this by generating a synthetic "optimal" action via Q-function ascent, then uses efficient behavior cloning to train the policy to match it. This framework, which also introduces a more stable trust region hyperparameter, consistently outperforms strong baselines across various policy types and benchmarks.
+
+### Strengths
+1. Novel Policy Extraction. DOAL elegantly decouples optimal action computation from policy training, sidestepping complex backpropagation through generative models by reframing optimization as simple behavior cloning.
+2. Improved Hyperparameter Stability. Reinterpreting the BRAC trade-off coefficient $\alpha$ as a normalized trust region $\delta$, backed by Proposition 2 and the Batch-Normalizing Optimizer, offers a more interpretable and stable hyperparameter. Empirical evidence shows $\delta$ can be shared across algorithms, simplifying tuning.
+3. Strong Empirical Results. DOAL achieves consistent and significant performance gains across 15 challenging offline RL tasks, notably improving over meticulously tuned baselines, which enhances the credibility of its effectiveness.
+
+### Weaknesses
+1. Inconsistency in Theorems and practical implementation: Proposition 1 establishes the gradient equivalence by defining $a^{\text {target }}$ using the Q-gradient evaluated at the policy's output, $\pi_\theta(s)$. However, the paper then argues this is conceptually inconsistent and, in the final DOAL objective (Eq. 16), defines the target using the Q-gradient evaluated at the data action, $a$. While this change is key to decoupling, the original equivalence from Proposition 1 no longer strictly holds, leaving a gap in the theoretical justification for the final objective.
+2. The paper introduces the Batch-Normalizing Optimizer and the trust-region parameter $\delta$ as a more stable replacement for the sensitive hyperparameter $\alpha$ from the BRAC objective. Despite this, the final DOAL actor loss in Equation 15 still contains an $\alpha$ parameter, which is described as a controller for the "learning rate of actor" and is copied from a prior work. This is confusing. It is unclear how this $\alpha$ interacts with $\delta$ and why it is still necessary if the optimization trade-off is now managed by the trust region. This ambiguity detracts from the otherwise clean narrative of simplifying hyperparameter tuning.
+3. In Table 1, some experimental results with D- still behind the vanilla algorithms. Also, the reviewer suggests that the authors to better present this table such as showing the final averaged performance.
+
+### Questions
+see weakness
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes Direct Optimal Action Learning (DOAL), a framework for offline RL that reframes behavior-regularized actor–critic training as directly learning an “optimal” action target for each data point and then imitation-learning that target using losses native to the policy family (Gaussian Policies, flow policies and diffusion policies). This avoids costly backpropagation through iterative sampling chains in expressive policies (diffusion/flow), while keeping value guidance from the learned Q-function. The authors also introduce a Batch-Normalizing Optimizer that sets a dataset-level “trust region” (δ) to control how far targets move from behavior actions, aiming to make tuning more interpretable and consistent across policy distributions. Empirically, across 15 tasks from OGBench and D4RL Adroit, DOAL variants match the performance of strong baselines (IQL/FQL/TrigFlow) with shared, environment-level hyperparameters.
+
+### Strengths
+The paper presents a novel and elegant reformulation of behavior-regularized actor–critic training by directly learning an optimal per-sample action target and then imitating that target with policy-native losses, which removes the need for costly backpropagation through iterative sampling chains in flow and diffusion-based policies. This idea is conceptually clean, improves computational practicality for expressive policy classes, and introduces a trust-region–style batch normalization that provides a more interpretable and stable hyperparameter compared with traditional BRAC scaling. Empirically, across OGBench and D4RL Adroit, the method achieves performance comparable to strong baselines (IQL/FQL/TrigFlow) while using shared environment-level hyperparameters, suggesting that the proposed reformulation maintains effectiveness without extensive tuning
+
+### Weaknesses
+1. Writing & clarity: The paper has noticeable grammatical issues, inconsistent notation, and several typos, which make the narrative harder to follow; The main results table is dense and difficult to scan, hindering quick cross-method comparisons across policy families and environments; consider adding per-method aggregates (e.g., mean/median across tasks) to improve readability.
+
+2. Shallow experimentation: The evaluation covers only 15 tasks total—6 from D4RL Adroit and 9 from OGBench. Moreover, results are averaged over just 4 seeds (D4RL) and 3 seeds (OGBench), which weakens statistical confidence and robustness of the findings.
+
+3. No compute analysis: A central claimed benefit is reduced computational cost by avoiding backpropagation through iterative diffusion/flow sampling chains, yet the paper provides no wall-clock or memory measurements to substantiate this. Even a simple per-epoch time or training-step latency comparison against BRAC-style training would clarify the practical value.
+
+4. Missing ablations: There are no targeted ablations to disentangle contributions from (i) direct optimal-action targets, (ii) the Batch-Normalizing optimizer; the current analysis discusses hyperparameters but doesn’t isolate causal impact on performance.
+
+### Questions
+See Weaknesses
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper presents Direct Optimal Action Learning (DOAL), a framework that replaces end-to-end BRAC-style policy gradients through the value network with a two-step policy extraction:
+(1) compute an “optimized” target action per data point via a first-order step on the Q-function;
+(2) train the policy to imitate this target with a behavior-native loss (e.g., Gaussian MSE, flow matching, diffusion reconstruction).
+This yields distribution-agnostic policy extraction without backpropagating through iterative samplers used by diffusion/flow policies. The authors reinterpret the BRAC trade-off as a trust region and introduce a Batch-Normalizing Optimizer that scales the action step by the batch norm of |\∇ₐQ|, controlled by a single hyperparameter δ. Experiments on OGBench and D4RL Adroit show consistent improvements of DOAL variants (Gaussian, flow, diffusion) over their respective baselines, and analyze Max-Q sampling and the role of candidate count
+𝑛
+sample
+n
+sample
+
+
+.
+
+### Strengths
+Simple, general recipe for policy extraction. Shows BRAC’s policy gradient can be reframed as target-matching against an action updated by ∇ₐQ, enabling training with any policy family’s native loss (Gaussian/flow/diffusion) and avoiding gradients through multi-step samplers.
+
+Interpretable trust region. The Batch-Normalizing Optimizer controls expected step size via δ, normalizing by batch statistics of |\∇ₐQ|²—cleaner than tuning BRAC’s 𝛼.
+
+Covers expressive policies. Instantiates DOAL for Gaussian, Flow Matching, and Diffusion policies with concrete objectives (e.g., DIQL, DIFQL, DTrigFlow).
+
+### Weaknesses
+Novelty is mainly a reinterpretation plus a practical recipe.
+The equivalence that turns BRAC into target-matching is neat but technically light. Stronger differentiation from value-guided diffusion/flow, energy guidance, and behavior-regularized objectives would clarify what DOAL achieves beyond engineering convenience.
+
+Value-quality dependence and limited uncertainty handling.
+DOAL targets rely on ∇𝑎𝑄 at data actions; there’s no integrated uncertainty-aware step control (ensembles, variance-based scaling) for OOD safety, which matters in offline regimes.
+
+Benchmark scope and stability.
+While OGBench and Adroit are covered, Adroit volatility and late-training collapse are reported without a full diagnosis, weakening stability claims.
+
+### Questions
+1. Target evaluation point. You compute ∇𝑎𝑄 at data actions to avoid a mismatch with 𝜋𝜃(𝑠). Have you compared evaluating at 𝜋𝜃(𝑠) (or hybrids) and quantified the difference?
+
+2. δ scheduling. Does adaptive or annealed δ improve late-training stability on Adroit where collapses occur?
+
+3. Value backbones. What happens when pairing DOAL with ReBRAC-style critics—do gains persist?
+
+4. High-D actions. For diffusion/flow in high-D action spaces, does anisotropy in ∇𝑎𝑄 hurt target-matching? Any whitening or per-dimension scaling beyond batch normalization?
+
+5. Max-Q proposals. Beyond sampling from 𝜋𝜃, can proposal refinement (e.g., short Langevin steps guided by Q) reduce noise sensitivity for large 𝑛 samples?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes Direct Optimal Action Learning (DOAL), a framework for offline RL that avoids backpropagating through multi‑step generative policies (diffusion/flow) when using BRAC‑style actor objectives. The key observation is that the BRAC policy gradient is (approximately) equivalent to minimizing the distance between the policy output and a single “optimal action” target derived via a first‑order update from the dataset action. DOAL computes that target directly from \nabla_a Q_\phi(s,a) (evaluated at the dataset action) and then trains the policy to imitate the target using a loss native to the policy family (e.g., flow matching or a diffusion loss), thus decoupling target computation from the policy’s sampling chain. The paper further replaces the sensitive BRAC coefficient \alpha with a Batch‑Normalizing Optimizer that scales the update so that the expected squared step size equals a user‑chosen trust‑region parameter, and presents Algorithm 1 showing integration with IQL for value learning. Experiments on 9 OGBench tasks and 6 D4RL Adroit tasks compare Gaussian, flow, and diffusion policies show mixed results.
+
+### Strengths
+- Clear, unifying insight and simple objective. This paper makes explicit that BRAC’s policy gradient equals the gradient of a squared‑error to a target action. This clarifies what end‑to‑end training is doing and motivates learning the target directly, which is easy to implement and compatible with any policy class.
+- DOAL avoids backprop through iterative sampling chains, which is particularly important for diffusion/flow actors by supervising with native behavior losses. This makes the approach broadly plug‑and‑play with flow/diffusion policies.
+- Hyperparameter reinterpretation via a trust region. The Batch‑Normalizing Optimizer replaces a brittle \alpha search with an interpretable \delta that sets an expected squared update magnitude; the denominator’s batch statistic stabilizes scale across tasks.
+
+### Weaknesses
+- To me, it's unprincipled to replace a’ that which should be sampled from the policy with the dataset action a, the paper does not provide a solid justification for this change (cf. Prop. 1/Eq. 13). In addition, the derivation appears to hinge on an L2 BC loss—how does the argument extend to other losses (e.g., log-likelihood, flow-matching, diffusion objectives)?
+- Results are not uniformly stronger. The claim that DOAL “consistently improves performance” over strong baselines is only partially supported. For example, DTrigFlow is dramatically worse on cube‑single‑play, and DIQL is broadly weaker than IQL on many tasks.
+- Efficiency claims lack measurement. A central motivation is avoiding BPTT through iterative samplers, but there are no wall‑clock time, memory, or gradient‑call counts comparing DOAL to TrigFlowQL/FQL under matched hardware.
+- The observation of Max-Q sampling does not constitute a novel contribution. Prior work (e.g., Q-chunking) already formalizes that the candidate count N in Max-Q sampling implicitly sets the level of KL regularization between the induced policy and the proposal/sampling distribution. From this perspective, increasing N weakens the effective regularization and can degrade performance, so it is unsurprising that “the bigger N, the better” does not hold. Please cite these results..
+- Scope of value learners. Most experiments couple DOAL with IQL for a controlled study, but since BRAC‑style methods remain strong (e.g., ReBRAC in Table 1). Is this policy extraction approach still improve on other value learners?
+
+### Questions
+see Weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/SsUjdSVdUl.md b/human_reviews/SsUjdSVdUl.md
new file mode 100644
index 0000000000000000000000000000000000000000..90530ce27b34f584ba6790ff66812855b0174626
--- /dev/null
+++ b/human_reviews/SsUjdSVdUl.md
@@ -0,0 +1,156 @@
+## Human Reviewer 1
+
+### Summary
+The paper proposes Critique-RL, a two-stage reinforcement learning (RL) framework for training critiquing language models. The critic models that assess the correctness of an actor’s response and provide natural language feedback to guide refinement. The core motivation is to avoid reliance on stronger supervisors for critique annotation, which is costly and hard to scale. The key insight is that optimizing solely via indirect rewards, whether the actor’s refined output is correct, leads to poor discriminability, the critic’s ability to accurately judge whether an initial response is correct. To address this, Critique-RL introduces a two-stage training process. Experiments on mathematical reasoning benchmarksshow consistent improvements over baselines.
+
+### Strengths
+1. The problem setup, motivation, and methodology are clearly articulated with intuitive figures (e.g., Figure 2, 3) and precise definitions of evaluation metrics
+2. Scalable oversight remains a critical bottleneck in LLM alignment and self-improvement. By explicitly disentangling and jointly optimizing two key critique capabilities, the work offers a practical and empirically validated pathway toward more reliable critique models.
+3. The identification of problem due to conflicting objectives under indirect rewards is compelling.
+
+### Weaknesses
+1. The paper claims to avoid “stronger supervisors” for critique data, yet relies heavily on ground-truth answers (i.e., golden labels) to construct both direct (Stage I) and indirect (Stage II) reward signals. These labels are typically human-annotated or derived from curated datasets (e.g., MATH, GSM8K). Thus, the method still depends on human-provided supervision, albeit not in the form of natural language critiques. This undermines the central motivation that existing approaches “rely on stronger supervisors for annotating critique data”—since here, human-labeled answers serve as an equally strong (if not stronger) form of supervision.
+2. Lack of analysis of some highly related works in this paper [1], which also proposes to use the refinment as the additional feedback.
+
+> [1] Training Language Models to Critique With Multi-agent Feedback
+
+### Questions
+No question
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper addresses the challenge of insufficient scalable supervision for LLMs in complex reasoning tasks. It proposes Critique-RL, a two-stage reinforcement learning framework without strong supervision. In the first stage, the critique model’s discriminative ability is optimized using direct rule-based rewards. In the second stage, the framework integrates indirect rewards from agent-corrected response accuracy with regularization to enhance the usefulness of feedback while preserving discriminative capacity. Critique-RL achieves performance improvements over baselines on several mathematical reasoning and question-answering tasks.
+
+### Strengths
+- The proposed two-stage RL method is effective to provide constructive critique feedback for better refinement and precise filter for effective time-time scaling.
+- The experiments contain several benchmarks across different tasks.
+- This paper is well-written and easy to follow.
+
+### Weaknesses
+My main concern lies in the experimental design, as I am not fully convinced that the current experiments sufficiently demonstrate the proposed method’s advantage on complex reasoning tasks.
+
+- Since the authors explicitly state in the Abstract and Introduction that their method targets complex reasoning tasks, more challenging benchmarks such as AIME and GPQA should have been included in the evaluation.
+
+- Although the main text reports significant improvements on Qwen-3B and Qwen-7B, the appendix reveals that the performance gains on stronger models, such as DeepSeek-R1-Distill-Qwen-7B and Qwen2.5-72B-Instruct, are quite limited. These results should be reported and discussed in the main paper.
+
+- The proposed method requires access to ground-truth answers to compute rewards. Under this setting, it remains unclear what advantages it offers over directly training the model’s reasoning ability using RLVR methods (e.g., GRPO, DAPO). Additional experiments are needed to clarify this distinction.
+
+### Questions
+See weakness
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes Critique-RL, a two-stage reinforcement learning (RL) approach to train critiquing language models without requiring stronger supervision. The authors first show that baseline RL methods, which use only indirect rewards from an actor's refinement, fail. This is because they improve the critic's helpfulness (constructive feedback) but not its discriminability (judging correctness), leading to poor performance. Critique-RL solves this by:
+- Stage I: Explicitly optimizing discriminability using direct, rule-based reward signals.
+- Stage II: Optimizing helpfulness using indirect rewards (actor refinement) while using regularization to maintain the discriminability from Stage I.
+
+This two-stage strategy delivers performance improvements on both in-domain and out-of-domain tasks, e.g., +9.02% in-domain and +5.70% OOD for Qwen2.5-7B.
+
+### Strengths
+- The paper's core originality is its clear diagnosis of a key failure mode in training critics: baseline RL methods create a conflict between "discriminability" (judging correctness) and "helpfulness" (providing feedback), optimizing the latter at the expense of the former.
+- The paper's quality is high, with a rigorous methodology. The training dynamics in Figure 3 clearly show the baseline's failure , while decisive ablation studies in Table 3 prove that both stages of Critique-RL and its specific regularization are essential for success.
+- The work significantly contributes to scalable oversight by providing an effective method to train critics without stronger supervisors. Its value is shown through broad applicability, including "weak-to-strong" generalization (a 7B critic improving a 72B actor) and effectiveness on OOD and open-ended tasks .
+
+### Weaknesses
+- The paper's primary motivation is to train critics "without stronger supervision"1. However, the entire method, especially the critical Stage I, is heavily reliant on an "oracle reward function" $r_{oracle}(x,y)$ to compute the direct discrimination reward $r_{dis}$. For the main experiments on math tasks, this oracle is a rule-based verifier that knows the correct answer. This oracle is a form of strong, external supervision.
+- The framework's success, particularly in Stage II, hinges on a critical assumption: the fixed actor model $\pi_{\theta}$ is already a good "refiner". The authors state the actor is pre-trained to be "capable of... faithfully refining them according to critiques". This assumes away a large part of the problem. The helpfulness reward $r_{refine}$ is a convolved signal of both the critique's quality and the actor's ability to understand it. If the actor is a poor refiner, $r_{refine}$ becomes a noisy or meaningless signal, and Stage II would fail to optimize for helpfulness.
+- The paper correctly highlights its inference-time compute-efficiency benefits (e.g., in Figure 1 and Figure 6). However, it completely omits the training-time cost of this complex, two-stage RL pipeline. Stage II, for example, requires at least three model forward passes per training sample (one for the critic $c=\pi_{\phi}(x,y)$, one for the actor's refinement $y^{\prime}=\pi_{\theta}(x,y,c)$, and one for the oracle/RM $r_{refine}=r_{oracle}(x,y^{\prime})$). This is significantly more expensive than the SFT or baseline RL methods it's compared against.
+- The paper's core insight is that final-outcome rewards are insufficient, and a more direct signal is needed. The proposed solution, $r_{dis}$, is a direct reward for judging the outcome of the original response. This overlooks a more direct comparison to Process-based Reward Models (PRMs), which provide supervision at each step of the reasoning. The qualitative examples (Figs. 8, 9) show the critic is evaluating step-by-step, but it is only trained on the final answer's correctness.
+
+### Questions
+The paper is motivated as an approach for training critique models "without stronger supervision". However, the method's crucial first stage relies entirely on a direct reward $r_{dis}$ from an "oracle reward function" $r_{oracle}(x,y)$. This oracle, which knows the ground-truth correctness, seems to be a form of strong supervision.
+
+Could you please clarify this apparent contradiction?
+
+1. How do you formally define the "stronger supervision" (which you avoid) versus the "oracle verifier" (which you use)?
+2. The paper's contribution seems to be a novel way to distill the knowledge of a "weak" binary oracle (answer-checker) into a "strong" generative critic (feedback-generator). Would you agree with this framing?
+3. How does this framework scale to complex domains (e.g., creative writing, complex coding) where no such simple oracle or high-quality reward model exists?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes an online RL approach called Critique-RL for developing critiquing language models without stronger supervision. This approach contains a two-player paradigm, where the actor generates a response, the critic provides feedback, and the actor refines the response accordingly. The authors devise a two-stage optimization strategy, where stage I reinforces the discriminability of the critic with direct rule-based reward signals and stage II introduces indirect rewards based on actor refinement to improve the critic’s helpfulness. Experimental results show the effectiveness of Critique-RL.
+
+### Strengths
+1. The proposed two-stage RL method is sound and well-motivated, which deals with the core problem of critique generation.
+2. Extensive experiments show the effectiveness of the proposed method.
+3. This paper is overall well-written and easy to follow.
+
+### Weaknesses
+1. The design of indirect rewards based on actor refinement is similar to [1], which is not discussed in the current paper. The authors should further clarify the difference between this work and [1] to highlight their novelty.
+
+2. The quality of generated critiques should be individually measured via automatic metrics or human evaluation.
+
+
+[1] Training Language Model to Critique for Better Refinement. ACL 2025 Findings.
+
+### Questions
+I have included my questions in the weaknesses part.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/TX4k7BF6aO.md b/human_reviews/TX4k7BF6aO.md
new file mode 100644
index 0000000000000000000000000000000000000000..774ceb127e066e41769fc925bdde19deae98374a
--- /dev/null
+++ b/human_reviews/TX4k7BF6aO.md
@@ -0,0 +1,121 @@
+## Human Reviewer 1
+
+### Summary
+This paper presents a sampling strategy, which generates additional trajectories by forking the trajectory at timesteps where the tool call probabilities indicate high entropy, and use this strategy as part of the rollout stage for multi-turn agentic RL training for LLMs. The presented method (ARPO) provides consistent improvement in a variety of tasks (math, coding, deep search) and highlights the importance of further research in exploration within the area of RLVR for LLMs.
+
+### Strengths
+- Paper is well motivated and the observation of high entropy tool calling steps is clearly presented.
+- Consistent improvements in evaluated domains (math, coding, deep search).
+- Mathematical formulation is grounded and highlights the efficacy of their sampling approach.
+
+### Weaknesses
+- Limited Novelty: The main contribution seems to be the additional sampling introduced by branching from high entropy actions. The learning objective is simply multi-turn GRPO given rollouts generated by their sampling mechanism.
+- Effects of branching sampling ($P_{t}$) is unclear. There are no ablations documenting the effects of relying on the base probability ($\alpha$) versus relying on the entropy differential ($\beta$) or the branching cutoff ($\tau$).
+- Unclear if the effectiveness of high-entropy branching is unique to tool-calling steps or broadly applicable (e.g. to text-based reasoning steps)
+
+### Questions
+1. Could the authors quantify the effects of varying $\alpha$, $\beta$, and $\tau$ during sampling? The entropy figure in the Appendix indicates that if entropy is too high performance degrades. Thus, understanding the relationship between base model probs and entropy during sampling seems crucial.
+2. Are there other actions, besides high entropy tool calls, where branching is effective? The authors seem to only branch at high-entropy tool calling steps, but I wonder if this method is generally applicable to reasoning steps too.
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces ARPO, a RL algorithm designed to improve LLM agents that use external tools in multi-turn interactions. The key novelty is an entropy-based adaptive rollout mechanism that dynamically performs additional sampling at high-entropy tool-call steps and an advantage attribution estimation method that distinguishes shared vs. branched trajectories. Experiments across 13 benchmarks (math, knowledge reasoning, and deep search tasks) show that ARPO improves accuracy and efficiency, reportedly achieving similar or better performance with half the tool-use budget compared to GRPO and other baselines.
+
+### Strengths
+- The evaluation covers a wide range of tasks (reasoning, knowledge retrieval, deep search), showing consistent improvements over multiple baselines (GRPO, DAPO, Reinforce++).
+- ARPO achieves better or comparable results with roughly half the tool-call budget, which is practically valuable given the high cost of tool-based RL.
+- The GPG theorem provides a solid conceptual framework connecting macro-step rollouts to standard policy gradients, offering a theoretical foundation.
+- The paper is well-organized, with clear modular explanations of the rollout mechanism and advantage estimation, supported by informative figures.
+
+### Weaknesses
+- The paper’s central motivation that token entropy reliably increases after tool calls is not convincingly demonstrated. Figures 1 and 2 appear anecdotal, with unclear statistical support, and may rely on a single sample.
+- While ARPO’s adaptive rollout is designed to mitigate high-entropy uncertainty, the paper does not show post-training token entropy patterns to demonstrate that the method actually reduces or stabilizes entropy. Without before-and-after comparisons, it’s unclear whether ARPO genuinely controls model uncertainty or simply improves performance indirectly.
+- The experiments only report numerical performance gains, without showing any entropy-related observations or analyses during or after training. This creates a disconnect between the paper’s motivation entropy-guided exploration and its empirical validation, weakening the causal link between the proposed mechanism and the observed improvements.
+
+### Questions
+1. The paper’s motivation relies on the observation that token entropy tends to increase after tool-call steps, which is claimed to indicate model uncertainty. Could the authors provide quantitative statistics (e.g., average entropy changes, variance, and significance tests) across multiple datasets and trajectories to confirm that this pattern consistently holds?
+2. Since ARPO is designed to mitigate high-entropy uncertainty, it would be important to show entropy evolution before and after training. Do the authors have measurements or visualizations demonstrating that entropy indeed decreases or stabilizes after ARPO training?
+3. Did the authors observe any instability or divergence issues during training due to dynamic branching?
+4. It would be helpful to include a PPO baseline or comparison, given that PPO is a standard RL method.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes Agentic Reinforced Policy Optimization (ARPO), a reinforcement learning algorithm designed for multi-turn, tool-using large language model (LLM) agents. Unlike existing trajectory-level RL methods that sample entire reasoning paths, ARPO focuses on step-level exploration by leveraging the empirical observation that token entropy rises significantly after tool calls, reflecting uncertainty during reasoning. ARPO introduces two core components:
+
+(1) an entropy-based adaptive rollout mechanism that dynamically branches exploration when tool-call steps exhibit high entropy, enabling efficient step-level sampling;
+
+(2) Advantage Attribution Estimation, which assigns shared or distinct advantages to tokens depending on whether they belong to common or branched reasoning paths, allowing finer-grained credit assignment.
+
+A theoretical contribution, the Generalized Policy Gradient (GPG) Theorem, generalizes the policy gradient to macro-action rollouts, providing a solid foundation for partial sampling optimization.
+Across 13 benchmarks covering mathematical reasoning, knowledge-intensive QA, and deep-search tasks, ARPO achieves 4–6% higher accuracy than baselines such as GRPO, DAPO, and Reinforce++, while requiring only half the tool-call budget, demonstrating both superior performance and efficiency.
+
+### Strengths
+1. Strong Motivation and Insight – The identification of entropy spikes following tool use provides a concrete empirical basis for adaptive exploration and directly informs ARPO’s design.
+2. Innovative Algorithmic Mechanism – The entropy-based adaptive rollout efficiently balances global and partial sampling, encouraging diverse tool-use behaviors without excessive sampling.
+3. Refined Credit Assignment – The Advantage Attribution Estimation effectively separates shared versus individual token updates, stabilizing training and improving interpretability.
+4. Comprehensive Empirical Results – ARPO consistently surpasses trajectory-level baselines across multiple reasoning benchmarks and model backbones (Qwen, Llama), showing broad applicability.
+5. Efficiency and Scalability – ARPO achieves comparable or better results using half as many tool calls as GRPO, confirming both cost-effectiveness and computational scalability.
+6. Solid Theoretical Foundation – The GPG theorem formalizes ARPO’s macro-action rollouts, grounding its design in a generalizable reinforcement learning framework.
+
+### Weaknesses
+1. Limited Domain Generalization – All experiments are text-based; no multimodal or embodied environments are tested, restricting claims of general agentic applicability.
+2. Hyperparameter Sensitivity – The algorithm depends on key parameters (entropy threshold τ, stability factor β), but no sensitivity or ablation study is provided.
+3. Lack of Runtime Validation – While ARPO claims reduced rollout complexity (O(n log n)), there is no empirical runtime or resource cost analysis to verify this.
+4. Reward Design Ambiguity – The hierarchical reward function (Eq. 5) combines multiple factors (accuracy, format, multi-tool usage) but lacks a detailed analysis of their relative influence.
+5. Potential Evaluation Bias – Reliance on LLM-as-a-judge scoring could introduce evaluation bias due to stylistic similarity between training and evaluation models.
+
+### Questions
+1. Does adaptive branching ever lead to redundant exploration or inefficiency on simpler reasoning tasks?
+2. How does Advantage Attribution Estimation perform under noisy or sparse rewards?
+3. What is the computational overhead of real-time entropy computation and partial rollouts compared to GRPO?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/TjF9WLcu8o.md b/human_reviews/TjF9WLcu8o.md
new file mode 100644
index 0000000000000000000000000000000000000000..2a60509127f0a1ca59927bf7c2f2c5a7440cb66f
--- /dev/null
+++ b/human_reviews/TjF9WLcu8o.md
@@ -0,0 +1,139 @@
+## Human Reviewer 1
+
+### Summary
+The paper proposes Contrastive-Online-Meta, a new dynamic tuning method for instruction-tuned CodeLLMs. COM mixes contrastive pre-training to learn stable, task-invariant code representations and online meta-learning to adapt quickly to new instruction-feedback streams. It also uses a memory buffer to keep recent context and prevent forgetting.
+
+### Strengths
+1. The paper is well-written and clearly structured, making it easy to follow despite the technical density.
+
+2. The proposed framework demonstrates a new combination of contrastive learning and online meta-learning, which is conceptually very interesting for adapting CodeLLM.
+
+### Weaknesses
+1. This paper lacks experimental validation. It proposes a framework but provides no empirical results, ablation experiments, or comparisons to demonstrate its effectiveness. In the absence of experiments, claims about the efficiency or robustness of adaptation remain speculative.
+
+2. Its innovation is limited. The combination of contrastive learning and meta-learning has been previously studied. Beyond its application to CodeLLM, this paper does not clearly articulate its fundamental innovation.
+
+3. The technical approach appears incomplete, key details such as update frequency, computational cost, and data requirements are unclear, making reproducibility difficult.
+
+### Questions
+1. Where are your experimental results?
+
+2. Can you explain the computational cost and update frequency of the online meta-learner? How feasible is it for real-time deployment?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+0
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes a dynamic adaptation framework, Contrastive-Online-Meta (COM), for instruction-tuned CodeLLMs. The framework combines contrastive pre-training and online meta-learning to separate the task-invariant representation learning and fast adaptation. The proposed method fills in the missing link between the offline pre-training and the online accelerated deployment.
+
+### Strengths
+1. **New Approach**: This paper proposes a new dynamic adaptation framework for instruction-tuned CodeLLMs. Related work and background have been included to make this idea easy to understand.
+2. **Experimental Setup**: Experimental benchmarks and implementation details have been described and future work has been discussed.
+
+### Weaknesses
+1. **Absence of Experimental Results**: The most critical issue is the lack of empirical results within the main text. Without this evidence, it is impossible for readers to verify the effectiveness of the proposed idea and validate the claims made by the authors.
+2. **Insufficient In-depth Analysis**: The paper would be substantially strengthened by including further analysis like ablation study and case study.
+3. **Limited Discussion of Impact**: The paper's contribution is currently undersold due to an overemphasis on engineering details. The discussion lacks a thorough analysis of the idea's broader significance and potential long-term impact.
+
+### Questions
+This paper seems unfinished. I would suggest authors to add sufficient empirical results.
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper introduces Contrastive-Online-Meta (COM), a deployment-time adaptation framework for instruction-tuned CodeLLMs. COM combines (i) contrastive pre-training of an instruction encoder to learn task-invariant representations and (ii) an online meta-learner that updates a small set of parameters per interaction with an ℓ2 drift penalty; the base CodeLLM remains frozen. A FIFO dynamic memory buffer supplies recent interactions to compute an auxiliary contrastive loss that encourages temporal consistency. Additional stabilizers include a projection-space temporal regularizer and spectral normalization of the meta-learner.
+For evaluation, the manuscript describes datasets (CodeAlpaca-20k; a custom sequential benchmark “StreamCode”; and CrossLang-Eval), baselines (SFT, ER, MIT, CPT), and metrics (Adaptation Accuracy, Forgetting Rate, Generalization Gap, Update Efficiency), and provides implementation details (frozen CodeGen-16B; 6-layer encoder; 2-layer MLP; 5k buffer; τ=0.1; α=1e-4; 8×A100). However, no quantitative results are reported in the text; the only figure shown is a system diagram of the framework. The paper nonetheless claims performance gains over baselines without presenting corresponding tables or plots.
+
+### Strengths
+It proposes the COM method—combining contrastive pre-training with online meta-learning, plus a dynamic memory buffer, to decouple task-invariant representation learning from fast adaptation for deployment-time CodeLLM updates.
+
+### Weaknesses
+This is an unfinished submission. It reports no quantitative results—no tables, no plots—only a high-level system diagram. The “evaluation” section merely lists datasets, baselines, metrics, and implementation settings but provides zero numbers. Yet the manuscript still asserts gains (e.g., “3–5× fewer updates,” “12–18% on unseen languages”) without evidence. In its current form, it is not ready for peer review and should not have been submitted.
+
+### Questions
+See weakness
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper introduces Contrastive-Online-Meta (COM), a framework designed to enable real-time adaptation of instruction-tuned CodeLLMs while mitigating catastrophic forgetting. The approach separates representation learning and fast adaptation, allowing efficient updates without destabilizing the base model.
+
+### Strengths
+The work aims to address a real deployment issue: CodeLLMs need to adapt continuously while preserving prior knowledge.
+
+### Weaknesses
+1. The narrative is unclear and hard to follow.
+
+2. Descriptions of methods are confusing and lack clarity.
+
+3. Missing experimental results and lack of enough experimental details.
+
+4. Many claims in the paper such as good performance of the proposed method lack support.
+
+### Questions
+The description of the pre-training procedure lacks clarity. Could the authors elaborate further, perhaps by including an algorithm outline?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/UDIYU1X3vC.md b/human_reviews/UDIYU1X3vC.md
new file mode 100644
index 0000000000000000000000000000000000000000..ca4967af691cc026faa8688da1b1b1a5bd9a439c
--- /dev/null
+++ b/human_reviews/UDIYU1X3vC.md
@@ -0,0 +1,204 @@
+## Human Reviewer 1
+
+### Summary
+The paper suggest a hyperbolic model for neural network learning and inference that has not been used before: proper velocity neural networks. For this purpose, the paper completes the mathematical inventory required for learning and inference and investigates the performance of the novel PVNNs on a set of artificial and natural benchmarks.
+
+### Strengths
++ Suggesting an unused but effective hyperbolic model is a great contribution
++ There existed some mathematical gaps that needed closing in order to allow for the definition of PVNNs
++ The experiments are interesting and insightful
+
+### Weaknesses
+- issues with presentation: I have not understood which experiments were performed in section 6.1, and why a larger median output norm would be better.
+- issues with experiments: My understanding is that the curvature is a hyperparameter, but I see no exploration of hyperparameter choices in the experiments section.
+- issues with interpreting results: The substantial disadvantage on Cora is not well explained.
+- minor issues with presentation:
+ -- It does not make sense to mark best results in bold, if they are statistically indistinguishable from baselines (Table 6)
+ -- "on the highly hyperbolic Cora dataset" does not make sense. The dataset may exhibit hierarchical structures or larger diameter etc., but it is not hyperbolic on its own, though its structure might be better represented in space that is more curved
+
+### Questions
+- Is the isomorphism from PV to Poincare ball needed? If it is needed, then why is the computation on PV numerically more stable?
+- what does delta in the tables of the experiments section refer to?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes proper velocity neural networks (PVNN), where hyperbolic neural operations are built on the “proper velocity” (PV) manifold. The paper presents the basic elements of Riemannian geometry of the PV manifold, develops various layers, and shows experiments on numerical stability, graph learning, image classification and genomic sequence learning.
+
+### Strengths
+1. This paper introduces a new playground for hyperbolic neural networks and provides the complete Riemannian toolkit and neural-layer formulations on it. The detailed derivations of exponential/logarithmic maps, parallel transport, and gyro-based operations are rigorous and valuable. These constructions can serve as fundamental tools for future research on geometric deep learning.
+2. The idea is well motivated and the paper is clearly structured and easy to follow, which makes the technical content accessible to readers from machine learning communities who may not be familiar with the geometry.
+3. The numerical experiments demonstrate that PV-based networks can be applied to diverse domains (graphs, images, genomics) and generally perform competitively with existing hyperbolic baselines.
+
+### Weaknesses
+1.
+- A major conceptual issue arises in the presentation of the PV model. As written, the paper may lead readers to believe that PV is an independent model parallel to the Poincaré, hyperboloid, and Klein models. However, PV and the hyperboloid are deeply connected through special relativity. In fact, there exists a natural isometry $\pi$ between hyperboloid and PV. Given a point in the hyperboloid $\mathbf{x} = (x_0, x_1, \cdots, x_n) \in \mathbb{H}^n$, $$\pi(\mathbf{x}) = (x_1, \cdots, x_n) \in \mathcal{PV}^n.$$ That is, PV is nothing else but the spatial representation corresponding to the time-space representation of hyperboloid. The paper should explicitly state this relationship so that readers unfamiliar with hyperbolic geometry are not misled.
+
+- Conceptually, it would be more natural to compare PV directly with the hyperboloid (e.g., Section 4.1) rather than primarily with the Poincaré ball. Such comparison would yield more geometric and numerical insights.
+
+- In this context, a very interesting paper will be “Fully hyperbolic neural networks” (Chen et al.,2022). From your perspective, although they write everything in terms of hyperboloid/Lorentz, their operations are actually completely in the PV space. It would be informative to readers if you can point this out and discuss whether their approach naturally follows PV geometry.
+
+2.
+- The numerical stability argument and experiment is unclear. The claim that PV is “unconstrained” and therefore more numerically stable is not entirely convincing. While the Poincaré ball is indeed bounded, the hyperboloid is already an unbounded manifold, and PV is simply its spatial representation. Thus, PV cannot be inherently “more flexible” than the hyperboloid. Note that hyperboloid is in $\mathbb{R}^{n+1}$.
+
+- Moreover, the numerical-stability experiment (Table 1) shows extremely large norms (up to $10^8$), which may themselves indicate instability or unbounded dynamic range rather than desirable behavior.
+
+### Questions
+See "weaknesses" for revision suggestions.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes formulating hyperbolic deep learning techniques typically represented via the Poincaré or Lorentz model in the Proper Velocity manifold. Previous representations often suffered from numerical issues close to the boundary, which the Proper Velocity model avoids. The authors derive key quantities such as exponential and logarithmic maps, as well as important operations for deep learning including fully-connected layers, convolution as well as multinomial logistic regression. Equipped with these formulations, the authors evaluate their hyperbolic models on a suite of benchmarks, including vision, graph learning as well as genomics. Their approach is very competitive with previous works while offering better stability.
+
+### Strengths
+1. The paper is very well-written and very nicely placed within the literature of hyperbolic learning. The mathematical derivations are very detailed and extensive and a nice contribution in themselves in my opinion. I believe the Proper Velocity manifold is a nice addition to the toolkit that practitioners have to perform hyperbolic deep learning, especially if the stability issues of previous approaches are remedied. I have some more comments on this later.
+2. The authors perform a very broad evaluation of their model, using vision, graph and genomics data to compare to previous approaches in hyperbolic deep learning. This makes it more convincing for me that this novel representation works across different scenarios, but I do have some more comments on this point later.
+
+### Weaknesses
+1. The main issue for me with this work in its current state is the lack of convincing evidence towards its premise: other representations suffer from numerical issues (especially around the border) and I assume this point implies that “performance of these models is affected”? Towards this question, you show a small experiment where addition and multiplication is performed on Poincaré and Proper Velocity manifolds, which indeed shows that norms close to the border collapse in case of Poincaré, where as the Proper Velocity model is able to adequately handle this case. Numerically however, the Proper Velocity model seems to have more issues, at least in terms of multiplication? More importantly however, I don’t really see an experiment or argument that shows these other models actually suffering in a realistic scenario, like vision or graph learning. Are these other models actually being limited by numerical issues? Can models in Proper Velocity be trained in lower precision? Even a simple experiment such as learning to embed a tree in hyperbolic space (similar to e.g. [1]) would help me be more convinced regarding these claims. While Proper Velocity sometimes outperform Poincaré/Hyperboloid, it is not clear if that’s due to the numerical issues mentioned, especially as performance is actually quite similar in most cases.
+2. I like that the evaluation is very broad, but on the other hand the experiments are also a bit shallow in each case. For node classification, you seem to use a fully-connected network in all representations, even though it is more standard to use a graph neural network that employs some form of graph convolution. Other methods have developed such specialized operations in the Poincaré or Hyperboloid model, and I think something like this is needed to truly understand the potential of a representation. Similarly in the case of vision, a Euclidean encoder is used, which essentially does all the heavy lifting and only the final classification layer is hyperbolic. Again, other representations have their dedicated convolution layers in hyperbolic space, why not do the same in the Proper Velocity model? Results are probably as a consequence almost identical for PV and HNN++. What is however interesting is that Poincaré seems to struggle a lot for CIFAR100, is this maybe due to numerical issues? The genomics experiments are more convincing in this regard!
+
+[1] Constant Curvature Graph Convolutional Networks, Bachmann et al, 2020
+
+### Questions
+See above.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes **Proper Velocity Neural Networks (PVNNs)**, which work on the **Proper Velocity (PV) manifold**, an unconstrained coordinate of hyperbolic space. The authors first derive **closed-form Riemannian operators** for PV (exponential and logarithmic maps, geodesic distance, and parallel transport). They then design **core layers** in PV: multinomial logistic regression (PV-MLR), a fully connected layer with an **analytic formula**, convolution, activation, and **GyroBN** normalization. Experiments on **numerical stability**, **graphs**, **CIFAR-10/100**, and **genomic sequence prediction** show strong stability and **competitive accuracy**, with clear gains on some tasks (e.g., Airport), but **weaker results on Cora**. The code will be released upon acceptance.
+
+### Strengths
+- **Originality:** Uses the **PV manifold** as an **unconstrained** alternative to Poincaré/Hyperboloid; complete Riemannian toolkit enables end-to-end models.
+- **Quality (theory):** Rigorous **isometry** to Poincaré; **closed-form** exp/log/transport; **analytic PV-FC**; GyroBN with mean/variance homogeneity.
+- **Quality (empirics):** Broad evaluation (stability, four graph datasets, CIFAR-10/100, TEB genomics) with shared backbones and multiple seeds.
+- **Clarity:** Structure is logical; appendices provide proofs and implementation details. :contentReference[oaicite:7]{index=7}
+- **Significance:** **Large-norm** representations work stably; strong gains on some datasets (e.g., Airport; several TEB tasks).
+
+### Weaknesses
+- **No expressivity guarantees:** There is **no universality** or approximation bound for PVNNs, limiting formal claims about representation power.
+- **Mixed graph performance:** **Cora** performance is lower than Poincaré/Hyperboloid baselines; the paper gives limited analysis of this failure mode.
+- **Model breadth:** Vision uses **ResNet-18 with only the head changed**; large-scale or transformer results are left for future work.
+
+### Questions
+1. **Expressivity:** Do PVNNs satisfy a **universal approximation** property under reasonable assumptions? If yes, what function classes and depths are required?
+2. **Cora drop:** Why does PVNN underperform on **Cora**? Is it due to curvature mismatch, optimization, or the decision boundary shape? Would **learnable curvature** or hybrid PV/Poincaré layers help?
+3. **Runtime/memory:** How are the **computation and memory** costs of PV operators compared to Poincaré/Hyperboloid ?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+This paper proposes some building blocks for neural networks on hyperbolic space based on proper velocity (PV) model. Specifically, the authors propose multinomial logistic regression (MLR), fully-connected (FC), batch normalization (BN), convolutional, activation layers. These layers are validated on graph node classification, image classification, and genomic sequence learning.
+
+### Strengths
+- The topic of the paper is interesting.
+
+- The paper advocate the use of PV model for hyperbolic space which is underexplored in the literature of HNNs.
+
+### Weaknesses
+- The contribution is incremental.
+
+- The paper is poorly written.
+
+- Experimental results are not convincing. Also, important baselines are missing.
+
+### Questions
+The paper aims at constructing some building blocks for HNNs. However, the authors simply use the approaches in [Shimizu et al., ICLR 2021; Nguyen and Yang, ICML 2023; Nguyen et al., ICLR 2024; Chen et al., NeurIPS 2024] rather than developing new approaches for their construction. Although the PV model is less studied in previous works for HNNs, its geometry is well-understood, making it straightforward to adapt existing approaches to this geometry.
+
+The exposition of the paper can be significantly improved. For instance, the tables look messy with small texts and numbers in some tables and too big ones in others.
+
+Experimental results are not convincing and important baselines are missing:
+
+- Some experimental settings are given in Appendix, but these are very sketchy. For instance, for node classification experiments, it is crucial to provide and discuss settings for the dimension of node embeddings. However, I did not find this setting in the main paper and Appendix.
+
+- The Hyperboloid model is used for comparison on node classification experiments (Table 2, Bdeir et al., 2024) but is not used for comparison on image classification experiments (Table 6). It is noted that the Hyperboloid model outperforms the PV model on both CIFAR-10 and CIFAR-100 datasets in terms of mean accuracy (see also my first question below).
+
+Questions:
+
+1. The authors argue that the PV model is an unconstrained representation of hyperbolic space which can lead to more stable results for HNNs. I am not sure why this is the case ? It seems that the Lorentz models is also another unconstrained representation of hyperbolic space, since the time dimension is computed w.r.t. the space dimensions. Why the PV model can be more stable than the Hyperboloid model in the considered applications ?
+
+2. In the introduction, the authors claim that the new representation space can be a good alternative for existing models of hyperbolic spaces due to its numerical stability. However, its performance on datasets with high hyperbolicity is inferior to those of other models. This indicates that the PV model might not be effective for capturing hierarchical structures which somehow contradicts the statement in the introduction. Could the authors clarify on this point ?
+
+### Soundness
+3
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/VFaYukYt6K.md b/human_reviews/VFaYukYt6K.md
new file mode 100644
index 0000000000000000000000000000000000000000..12044b86000c9a47963605c93d2cfdaf3be7de3a
--- /dev/null
+++ b/human_reviews/VFaYukYt6K.md
@@ -0,0 +1,158 @@
+## Human Reviewer 1
+
+### Summary
+The authors investigate the applications of using a compressed latent representation in the context of motion planning. Their work is motivated by prior research suggesting that a strong decoder model can reduce the required latent dimensions to reconstruct the target data. They propose a quantized latent representation that they suggest improves when learned using an adaptive noise distribution. Their experiments are on the Waymo Open Motion Dataset, where they show the re-usability of their latent features by analyzing the re-usability of the features in capturing motion meaning and reconstruction quality.
+
+### Strengths
+> The motivations for the author's research are sound. Classical motion planning algorithms do not scale well to extensive dimensional data, so using low-dimensional latent representations to enable their use makes sense
+
+> The application of a compressed latent space is an interesting idea, and the authors' research has practical applications.
+
+> Figure 4 illustrates the model architecture proposed by the authors.
+
+### Weaknesses
+We found it challenging to follow the submitted paper draft. Many sections require rewriting for clarity, where even small details are not serving to communicate the author's point. The title suggests a generalist representation approach to robotics, but the authors only apply their autoencoder approach to a self-driving data set. Much of the paper discusses robotics in a general sense, but since the experiments focus only on autonomous driving, I consider this misleading to readers. It would serve the paper better to focus on this application rather than use general-sounding language (e.g., "robotics tasks" should really be "self-driving"). The author's method may have applications in other domains, but as they do not demonstrate this in the experiments, it might be better to discuss this only in the conclusion as future work.
+
+Furthermore, sections 2 & 3 in particular would benefit from extensive rewriting. It could be helpful to clarify how the latent codes are combined with classical motion planning in Section 2. Section 3 should be clearer that these are the experiments. Even just changing the section header to "Experiments" or clearly stating the experiments' objectives in the preamble would already be an improvement.
+
+The writing also makes it difficult to determine the paper's significant contributions or its advantages. For example, Table 2 shows several models surpass the author's model performance (e.g., DriveGPT has 0.5240 minADE_6 vs the author's 0.6415). It is mentioned that the author's latent space is notably smaller; what about the decoder model's capacity in comparison? Do the baseline models use larger or smaller decoders?. Likewise, quantization is emphasized as necessary, but the reported metrics in Tables 1 & 5 suggest that excluding quantization leads to better performance. Similarly, it is not clear from the discussion in Table 4 why matching Motion-LLaVA is essential, and should be clearly stated in the writing. Given these issues, we believe the paper as a whole needs improvements not just in writing but also in its empirical evaluations to strengthen its claims.
+
+Comments on Method:
+Section 2.1 (Line 14): the quantization scheme described should cite prior research that reports a closely related (near-identical) approach [1]. This work was not mentioned in the related work.
+
+[1] Mentzer, Fabian, et al. "Finite Scalar Quantization: VQ-VAE Made Simple." The Twelfth International Conference on Learning Representations.
+
+> Figure 2: This idea of nosing latent embeddings has been considered in other research. VAEs do this with the reparameterization trick, yet this feature is prominently established throughout the author's work (e.g. Figure 1 shows how vital this regularization trick is). If this adaptive noising approach is beneficial, it would be better justified if alternative noising schemes (i.e. a stochastic latent variable such as from a VAE) were compared against.
+
+
+
+
+Writing Opinions
+
+> The introduction as a whole could be improved for clarity. We suggest restructuring the focus to the limitations of motion planning and the benefits of autoencoders to address these problems, rather than discussing autoencoders and treating motion planning as secondary.
+
+> Line 036: "autoregressive" is ambiguous in this sentence; make it more specific.
+
+> Line 038: "autoencoder" is not set up well in this paragraph and is confusing to read about as written.
+
+> Line 488 - 492: Combine content into a single paragraph
+
+### Questions
+Q1: Have the authors considered training a decoder that only relies on the latent variable for reconstruction? Is the reason the latent space can be compressed so much because of these additional inputs?
+
+Q2: What is the red square input to the decoder model?
+
+Q3: Why did the author use the WOMD dataset? In what other domains could this method be employed?
+
+Q4: We find the results in Figure interesting. What do the authors believe explains this observed re-usable aspect of their latent representation?
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes a method to leverage recent deep learning advances in motion planning for robotics with traditional search and optimisation based planning algorithms. The key contribution is the ability that the method provides to optimise arbitrary objectives specified by the user without having to retrain or fine-tune these networks, simply by relying on the pretrained autoencoder. The results of this method are demonstrated on the Waymo Open Motion dataset for both motion prediction and behaviour generation.
+
+### Strengths
+- The approach aims at utilising one of the biggest insights from the past few years regarding the impact of large-scale real-world data to learn useful priors about the world, and channeling it to robotics to enable the use of traditional search algorithms in robotics.
+- Claims on composability of objectives in the driving scenario and greedy search versus learned encoder are well substantiated.
+- The main advantage of this work is the cheap adaptation tailored to the user’s objective, without having to perform additional training.
+
+### Weaknesses
+- One of the main weaknesses of the paper is the reliance of the empirical study on a single dataset, the Waymo Open Motion dataset. This makes it difficult to assess the generalisation of this approach to other robotics domains.
+- A key advantage of this approach described in the paper is the ability to use these compact latent tokens in conjunction with search algorithms. However, the only search studied in this paper is greedy search. Again, the issue of generalisation comes up in how this method would work with other search strategies like beam search or Monte-Carlo Tree Search.
+- When talking about real-world domains, a critical aspect is that of reliability and safety, which is not adequately addressed in this paper. Given that the paper attempts to provide a cheap way to achieve different user-guided behaviours, guarantees of reliability and safety, or the lack thereof, should be addressed.
+
+### Questions
+This work positions itself as one that gives a best-of-both-worlds scenario for foundation models for robotics and self-driving, and search and planning algorithms. However, since it is heavily dependent on having a high quality autoencoder, which in turn depends on having a large diverse dataset, could the authors shed some light on how such a method might be used in a low-data regime? No new results are required, just an intuitive understanding on how one might leverage the proposed method in robotics domains where large datasets are not available.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes planning as search in a learned discrete latent space. A conditional transformer autoencoder is trained on WOMD to produce causally-ordered, low-dimensional, quantized tokens for trajectories; at test time, the decoder serves as a strong generative prior while a greedy tree search over tokens optimizes arbitrary user objectives (e.g., “turn left”, “slow down”). The model also explores multi-agent tokenization and shows that tokens convey semantic behaviors (token swapping, “library of behaviors”). Key ingredients include adaptive soft quantization at the bottleneck, nested dropout to enforce coarse-to-fine token order, and hard quantization during search. Experiments cover reconstruction, prediction via variance-minimizing search, guided maneuver generation, and a multi-agent VQA proxy by feeding tokens to an LLM.
+
+### Strengths
+1. Crisp conceptual unification. The paper cleanly separates objective choice at test time from trajectory realism via the decoder, and leverages an ultra-compact latent space to make tree search feasible.
+
+2. Simple, well-motivated mechanics. Adaptive noise (“soft quantization”) and nested dropout jointly encourage discrete, ordered latents; this is elegant and empirically helpful (Fig. 2).
+
+3. Compelling token semantics. Token swapping and “behavior libraries” show transferable high-level behaviors, not just compression (Fig. 5).
+
+4. Test-time flexibility. Greedy token search handles different objectives without retraining (left-turn, slow-down), while the decoder enforces map-consistency (edge-contact ≈0%).
+
+5. Multi-agent extension. Joint tokenization (up to 8 agents) plus simple goal objectives yields qualitatively consistent interactions; tokens also aid an LLM on WOMD-Reasoning.
+
+### Weaknesses
+1. Planning evidence is under-baselined. Section 3.4 reports maneuver “success rate” and edge-contact against the unmodified scenario, but no planning baselines (trajectory optimization, sampling-based planners, MPPI/IT-MPC, or diffusion planners) are included. As a result, it’s hard to judge optimality/efficiency and where search in latents sits among standard planners.
+
+2. Scalability beyond toy latent sizes is unclear. All strong results use very small spaces (e.g., N=3 tokens, D=3 dims, Nlevels=2), where greedy cost is merely N·Nlevels^D = 3·2^3 = 24 decoder calls. The paper acknowledges this efficiency (≈115 traj/s on RTX 6000 Ada), but does not test larger N/D/Nlevels where branching explodes and greedy likely degrades. A scaling study is essential.
+
+3. Objective realism and multi-objective tradeoffs. The showcased costs (cumulative left heading; target final speed) are simple and largely single-objective. Real planners optimize safety/comfort/progress and constraints (jerk, acceleration, distance to agents). The method’s greedy, token-by-token decisions might be myopic under competing objectives; no experiments probe this.
+
+4. Reliance on decoder variance as a guard-rail is risky. Prediction and planning searches penalize decoder-predicted variance, but heteroscedastic NNs can be miscalibrated (the paper cites this literature). There are no calibration diagnostics (PIT, ECE, risk-coverage), so search could be steered by poorly calibrated uncertainty.
+
+5. Limited safety metrics for interactions. Planning reports edge-contact with static map; dynamic-agent collisions, min-distance, TTC are not measured. Multi-agent results are mainly qualitative (Fig. 6) and a language metric table (Table 4) that doesn’t evaluate physical safety of generated interactions.
+
+6. Causal ordering assumption not validated against optimization. The paper assumes nested-dropout + causal masking yields a coarse-to-fine order that aligns with greedy objective optimization. Evidence is indirect (reconstruction improves with more tokens; Fig. 3). There’s no analysis showing early tokens control “coarse” semantics relevant to downstream costs.
+
+7. Open-loop feasibility and dynamics. The decoder produces kinematically smooth trajectories, but there’s no explicit vehicle dynamics or closed-loop execution. It’s unclear if generated plans remain feasible/stable under tracking noise or model errors.
+
+### Questions
+1. Scalability: What is planning quality/runtime as N, D, Nlevels increase? Have you tried beam search or MCTS in latent space, and how do they compare to greedy for complex objectives? (Complexity ≈ N·Nlevels^D per greedy layer.)
+
+2. Baselines: Can you add at least one trajectory optimizer (with the same costs) and one sampling/diffusion planner on the same WOMD slices used in Table 3?
+
+3. Safety metrics: For planning and multi-agent generation, can you report collision rate, min distance, jerk/accel, and rule/route compliance in addition to edge-contact and success rate?
+
+4. Uncertainty calibration: How calibrated is the decoder’s variance? Any risk-coverage or PIT plots before using it to gate search?
+
+5. Causal ordering verification: Can you intervene on individual tokens to quantify their semantic scope (e.g., MI between token i and global maneuvers vs. local kinematics), supporting the coarse-to-fine claim?
+
+6. Closed-loop: Have you tested tracking a decoded plan with a simple controller (bicycle or PID) to measure closed-loop feasibility and regret?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/VmEkhV2yCX.md b/human_reviews/VmEkhV2yCX.md
new file mode 100644
index 0000000000000000000000000000000000000000..403bcc16512f51731fba66c4fa3ca4a6c6a95993
--- /dev/null
+++ b/human_reviews/VmEkhV2yCX.md
@@ -0,0 +1,164 @@
+## Human Reviewer 1
+
+### Summary
+This paper challenges the conventional practice of adding reasoning data only during fine-tuning. Through controlled experiments, it demonstrates that front-loading diverse reasoning data into pretraining creates an advantage that cannot be matched by later stages.
+
+Their key findings are:
+
+1. Pretraining benefits most from scale and diversity of reasoning data, building broad and robust foundational capabilities.
+2. SFT is dominated by data quality, where small amounts of high-quality, long chain-of-thought data are vastly more effective than large, diverse but lower-quality mixtures. Naively scaling SFT data with mixed quality can even be detrimental.
+3. High-quality pretraining data has a latent effect, where its full benefit is "unlocked" only after the subsequent SFT phase.
+
+The study concludes that a strategic, asymmetric data strategy—prioritizing diversity in pretraining and quality in SFT—is essential for building more capable and efficient reasoning models.
+
+### Strengths
+1. The authors present a systematic and thorough experimental setup, including baseline comparisons, multiple data regimes (scale, quality, diversity), and evaluation across a broad suite of reasoning benchmarks and domains (math, science, code, general reasoning). This breadth of empirical evidence is a clear strength.
+2. The central finding—that diversity in reasoning data benefits pretraining most, while data quality dominates SFT effectiveness—is supported by clear quantitative results (e.g., Tables 1, 2, and 3), providing a practical guideline for future LLM training recipes.
+3. The paper performs extensive ablation studies (Section 5), specifically investigating scaling strategies, catch-up hypotheses, and the latent effects of high-quality data. For example, Table 4 rigorously compares the effects of doubling SFT data versus diverse pretraining.
+
+### Weaknesses
+1. The description of data volume is highly unclear. In Section 2.2, $D_{LDQ}$ is described as containing 336B tokens, while $D_{SHQ}$ is described as containing 1.2M samples. It is also unclear exactly how much base data and reasoning data each model used during the pretraining phase, especially for the $M_{SHQ}$ model.
+2. The results in Tables 2, 3, and 5 only report the average scores of the three models pretrained with reasoning data. However, Table 1 has already demonstrated significant performance differences between the base models of LDQ and SHQ. The authors should provide the complete results for each individual model group across all tables.
+3. The experimental results in this work lack validation across different model scales and on the more widely adopted Transformer architecture.
+
+### Questions
+See weakness.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper investigates the stage to introduce reasoning data into the training process of Large Language Models (LLMs). The authors challenge the conventional approach of adding reasoning skills during the post-training stage and argue for incorporating it early on, during pretraining.
+
+### Strengths
+1. This paper provides a detailed comparison of pretraining with $\mathcal{M_{LDQ}}$, $\mathcal{M_{SHQ}}$, and a mixture of both, thoroughly evaluating their impact on the model's performance across different reasoning tasks after pretrain and SFT.
+2. This paper shows that introducing reasoning data in pretrain stage can improve model performance in both pretrain stage and SFT stage
+3. This paper demonstrates that the SFT stage should leverage higher-quality data with greater reasoning depth to significantly enhance the model's final performance.
+
+### Weaknesses
+1. All the performances are evaluated in reasoning tasks, the performance on the memry task are not evaluated.
+2. The paper does not clearly specify how the $\mathcal{M_{LDQ}}$ and $\mathcal{M_{SHQ}}$ datasets were mixed to create $\mathcal{M_{LMQ}}$ (especially ratio). It would be important to investigate whether different mixing ratios significantly impact the model's performance, and specifically, whether an optimal ratio exists that would allow $\mathcal{M_{LMQ}}$ to outperform $\mathcal{M_{LDQ}}$.
+
+### Questions
+1. The objective in Equation 1 requires clarification. The notation $E_{t \sim \mathcal{T}}$ is ambiguous as to whether a single fine-tuned model is evaluated across all tasks in $\mathcal{T}$, or if a unique model is fine-tuned specifically for each task $t$.
+2. Why choosing a hybrid model, is the conclusion the same for Decoder-only transformer?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper investigates the benefits of adding reasoning data earlier during pretraining. The authors vary the scale, diversity and quality of the reasoning data and show that front-loading reasoning data into pretraining stage not only builds better pretrained models but also synergies with subsequent post-training. They also show that diversity of the reasoning data is crucial for pretraining, whereas quality is important for SFT stage.
+
+### Strengths
+- The paper systematically studies the effects of front-loading different types of reasoning data (in terms of quality and diversity) into pretraining, which is novel and timely.
+
+- The experiments are conducted at a large-scale and evaluated on diverse downstream tasks, which makes the conclusions more practical.
+
+- The finding that high-quality pretraining data shows benefits only after SFT is interesting.
+
+### Weaknesses
+1. Major: 'Scale and diversity of the reasoning data are important in pretraining' is not well supported. D_{LDQ} and D_{SHQ} are from different datasets, and scale and diversity is not the only difference. The content of the dataset, as well as the quality of the dataset, are likely to be confounders. I think a more controllable comparison is to reduce the size and diversity of D_{LDQ} (-->D'_{LDQ}) and compare M_{LDQ} and M'_{LDQ}.
+
+2. Minor: Some observations remain to be better understood, for example why exactly pretraining benefits more from diversity and SFT betnefits more from quality.
+
+### Questions
+1. Is D_{res} always 20% of the data (mentioned at Line 189)? If yes, why there are different scales of reasoning datasets (D_{SHQ} and D_{LDQ})? Can you clarify?
+
+2. How is the ratio of reasoning data decided? Did you try other ratio (higher or lower than 20%) and does that affect your conclusions?
+
+3. What is D_{LLQ}? at Line 171-172? It seems not defined.
+
+4. Line 349-350, could you explain why D_{SHQ} is mentioned, should it be D_{LMQ}?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper studies when to introduce reasoning-style data in the LLM pipeline. Using an 8B hybrid Mamba-Transformer trained from scratch for 1T tokens, the authors compare injecting reasoning data during pretraining vs. during SFT (and then RL). Core findings: (1) adding diverse reasoning data early (during pretraining) creates durable advantages that post-training cannot “catch up” to (reported ~19% average gain on expert benchmarks); (2) an asymmetric allocation principle: diversity & scale matter most in pretraining, while quality (long CoT) dominates SFT; (3) naïvely scaling mixed-quality SFT data can hurt reasoning; (4) some high-quality pretraining effects are “latent” and only unlock after SFT.
+
+### Strengths
+Comprehensive empirical study. Thorough, well-controlled experiments quantify how reasoning data affects both pretraining (PT) and post-training (SFT/RL).
+
+Actionable principle. Clear rule of thumb: prioritize diversity and scale of reasoning signals during PT; prioritize quality (e.g., long, high-fidelity CoT) during SFT—immediately useful for practitioners.
+
+Cross-stage validation. Systematic swaps across PT/SFT/RL (controlling data type/quality/scale) repeatedly confirm the “front-loading” thesis, with consistent gains (Tables 1–6).
+
+Informative negative result. Simply doubling mixed-quality SFT data provides no benefit and can degrade math performance, underscoring that quantity cannot replace quality.
+
+Latent PT benefit. A small amount of high-quality reasoning introduced in PT yields improvements that only manifest after SFT, clarifying stage interactions.
+
+### Weaknesses
+External validity & dataset specificity. The pretraining relies on NVIDIA-curated corpora (~6.2T tokens) and SFT sets such as OpenThoughts and Nemotron-Pretraining-SFT-v1. It’s unclear how well the conclusions transfer to other pretraining bases or fully open corpora.
+
+Clarity on PT/SFT data mixing and table notation. For Tables 2–3, please spell out the exact SFT composition used during post-training for each pretraining variant and standardize the notation. In Table 4, the meaning of SFT×2 is ambiguous: is the dataset literally duplicated (two passes over identical examples) or expanded with additional unique samples? If duplicated, did the model simply see the same data twice (risking overfitting), and was the token budget controlled elsewhere?
+
+Breadth vs. alignment trade-off. Length-filtered long-CoT SFT (DALF) appears to improve reasoning while weakening instruction-following. Any concrete hypothesis (e.g., length effects, stylistic drift, or distribution shift) plus diagnostics on this?
+
+
+Pretraining mixture definition (80% D_base / 20% D_res). The paper states: “we pretrain from scratch for 1T tokens using 80% D_base and 20% D_res.” how is that 20% constructed on different reasoning dataset settings? If any sampling strategy is used? Please clarify this.
+
+### Questions
+see weakness
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/Wes9HF3ppt.md b/human_reviews/Wes9HF3ppt.md
new file mode 100644
index 0000000000000000000000000000000000000000..7bf664fb67e7989f173a47eb4ec22406e9dcdfa9
--- /dev/null
+++ b/human_reviews/Wes9HF3ppt.md
@@ -0,0 +1,200 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces a method for sequence generation that learns to insert tokens at arbitrary positions in a sequence. The authors refer to this as Insertion Language Models (ILM), and compare it against autoregressive models and masked diffusion models.
+ILMs are trained using a single transformer encoder with a simple denoising objective, where tokens are completely dropped from the sequence and the model learns to re-insert them.
+
+On synthetic planning tasks, ILMs are shown to overcome the failure modes of the other models. In particular it performs the best on Star Graphs from (Bachmann & Nagarajan, 2024). For unconditional text generation, ILMs perform competitively with auto regressive models and better than diffusion models.
+
+### Strengths
+The paper is well written and easy to follow. In particular, I find the figures to be pedagogical and helpful in presenting key ideas and concepts of the paper. I also commend the authors for a thorough and fleshed out related work section and a beautiful appendix. In general, the presentation of the paper comes across as strong, and it’s clear that a lot of effort went into it. (some suggestive further improvements are listed in the Weaknesses section)
+
+In regards to the method, I personally find the proposed insertion method itself to be quite elegant and interesting. The explanation of the experiments and the corresponding results are also clear. The authors also demonstrate strong results on the Star Graphs from (Bachmann & Nagarajan, 2024).
+
+### Weaknesses
+In general, my concerns regard the contributions of the paper and how they compare to autoregressive modelling(ALM). This is because ALMs are clearly the dominant paradigm, so for a new method to be considered it needs a strong selling point. From what I can see currently, the biggest selling point is that ILM solves the toy problem of Star Graphs from (Bachmann & Nagarajan, 2024).
+
+**Concern 1:**
+
+One could quite easily create a setup where an autoregressive model is capable of performing infilling. Such as existing Fill-in-the-middle setups, or something simple as: If context X is the full text, and X* is the text with removed segments, you could formulate the autoregressive task as: X* -> X.
+Perhaps you calculate the loss only on X, or not…
+
+For a more convincing narrative, I would therefore suggest incorporating such a baseline for at least the 5.2.2 Infilling task.
+
+Furthermore, as we scale ALMs and their capabilities and generalizations increase, it is possible that such capabilities would emerge regardless. Of course it’s an unfair comparison in terms of resources, but I’m quite confident that SOTA LLMs would do exceptionally well on these smaller infilling tasks, even if they have not been directly trained towards them. In particular, I’m also confident that these models solve the Star Graphs from (Bachmann & Nagarajan, 2024). (which leads to Concern 2)
+
+
+**Concern 2:**
+
+Scaling of ILM.
+
+Considering that autoregressive models are so well-established, and one of their strongest properties is how well they scale and generalize, it would be beneficial for you to demonstrate the scaling properties of ILM. Both in terms of computational costs, but also performance.
+
+I suggest to therefore provide metrics for the computational cost for ILM, both in terms of training and inference. And preferably also how these metrics scale with model size, sequence length etc…
+Additionally, varying the model/dataset sizes for language modelling, would make for an interesting experiment.
+
+Conveniently, you only explicitly compare the inference time between ILM and MDM. However, in the discussion you mention that inference might be slower for ILM. But how much slower? This seems like a serious limitation if one wishes to scale this to reasoning models, which generate several thousand tokens per answer. In my opinion the applicability of ILM hinges quite a lot on these scaling factors, and might change the overall narrative of your paper.
+
+**-----------------------------------------------------**
+
+**Suggested Presentation Improvements**
+
+Several paragraphs are quite long and dense. It might be more easily digestible for readers to split them up. I understand that this may in part be an attempt to achieve nice formatting. But if possible I would consider tweaking this. Example paragraphs are: Line 33 - 53, Line 291 - 309, Line 334 - 352
+
+Line 17 + Line 54 VS Line 86: can come across as contradicting each other. First you claim to “revisit” insertion based sequence generation. Then Line 86 introduces “Insertion Language Models”. Perhaps make this distinction more clear.
+
+Line: 127: Since the bold text “Limitations of MDMs” start the paragraph, I’m left with the impression that you claim that step size “s” is a limitation of MDMS. But I would argue this is rather a limitation of how people potentially would train MDMs. Similarly, I would find it a bit weird to say that “a high learning rate breaks training for Transformers” and hence this is a limitation…. I therefore suggest some rephrasing here.
+
+Line 208: I have never come across the term “Unembedding” layer, to refer to the final linear layer to the vocab. Perhaps there’s something more common you could pick?
+
+Line 335: Zebra Puzzles are now notated with bold, and reside inside the 5.1.1 Star Graphs sub chapter. Seems more appropriate and consistent to let Zebra Puzzles be its own subchapter.
+
+### Questions
+See weaknesses for concerns
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper introduces ILMs, a novel sequence generation paradigm that predicts both token and insertion position jointly. This idea generalizes ARMs and MDMs by allowing arbitrary generation order and variable-length outputs, elegantly overcoming key limitations of both frameworks. The authors demonstrate the performance improvements and increased flexibility experimentally on various tasks.
+
+### Strengths
+1. The authors clearly articulate the shortcomings of existing ARMs (sequential bias) and MDMs (fixed-length masks, simultaneous unmasking). ILMs offer a different approach with many benefits, and the authors' presentation of this is clear.
+
+2. The experiments are well chosen and convincing. The paper evaluates ILMs on synthetic planning tasks (star graphs, zebra puzzles) and on realistic text datasets (LM1B, TinyStories). ILMs outperform ARMs and MDMs on constrained reasoning tasks and perform competitively on text generation, while uniquely supporting arbitrary-length infilling. I think it is good when an experiment offers conclusive answers, since it allows the field to build on solid ground. With that in mind, I feel that these experiments convey the relative improvements on the tasks considered.
+
+### Weaknesses
+1. Not allowing caching is a pretty big deal for incremental generative models. I understand that it is future work, but it could be nice to discuss a bit what the possible avenues are toward efficient ILM inference?
+
+2. I always feel bad saying this, but it would be nice to see how results change at larger scales. I know this is easier said than done, and scaling up experiments is usually the goal anyway. However, my point is that sometimes the extra flexibility/expressivity becomes harder for the model to make use of at larger scales (like needle in a high-dim haystack), and sometimes it becomes easier (it enables a realistic, generalizable solution instead of some impractical and unrobust best fit). Everyone has their thresholds somewhere, but for myself (and many people I've worked with) it's hard to get any signal on this with sequence lengths and complexity as restricted as in e.g. LM1B. To summarize, this isn't a weakness so much as something to look out for, but it would be nice to see some experiments/exposition put toward the question "what parts of ILMs do we expect to become more robust/more brittle at scale"?
+
+### Questions
+1. The experiments discuss the per-token generation time, NLL, etc., but I would like to know more about the qualitative ways in which ILM generations differ from ARM/MDM generations at larger scales. Are the sequences more complicated/higher entropy/longer? Is there some patter/trend for how models tend to use insertions that the authors anecdotally saw?
+
+2. Any ideas how to address caching/fast inference? There is also growing interest in pre-compiled deep learning models (jax.jit, torch.compile, ...) and I imagine ILMs would face all kinds of issues about not knowing lengths of arrays in advance for preallocation. Are the authors looking toward efficient implementation?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The authors revisit Insertion Language Models (ILMs), an insertion-based language model for arbitrary-length, arbitrary-order token generation. This model predicts output tokens along with their positions in the existing sequence, one-at-a-time.
+
+The key contributions are:
+1. Addressing the high variance problem of naive infilling denoising objectives through an approximate denoising training objective and tailored parameterization of the denoising network.
+2. Demonstrating that ILMs outperform ARMs and MDMs on synthetic tasks (path generation on star graphs, zebra puzzles).
+3. Showing that ILMs perform slightly better than MDMs and are competitive with ARMs on language generation tasks.
+
+### Strengths
+The paper successfully modernizes the classical idea of insertion-based language models by combining it with denoising objectives. The performance improvements are convincingly demonstrated on synthetic tasks, clearly showing the advantages of the proposed approach.
+
+As a reference, it may be helpful to also cite:
+- Insertion-based Decoding with automatically Inferred Generation Order, https://arxiv.org/abs/1902.01370
+
+### Weaknesses
+- **Method: Fundamental Inefficiency**
+
+The primary limitation of ILMs is that they sacrifice parallelization benefits from both ARMs and MDMs. Unlike ARMs, ILMs cannot leverage efficient parallel training, and unlike MDMs, they do not support parallel inference. However, despite giving up these parallelization advantages, the improvement in generative perplexity is not substantial (Table 2, LM1B).
+
+- **Experiment Setup: NLL Measurement**
+
+NLL measures how accurately a model captures the learned distribution. However, the comparison appears unfair: MDM uses naive tau-leaping sampling while ARM and ILM use nucleus sampling with p=0.9. For a fair comparison, I recommend re-evaluating with p=1.0 for all models.
+
+- **Experiment Setup: Infilling Task**
+
+Similar to the NLL experiments, either: (1) change p=0.9 to p=1.0 for fair comparison, or (2) employ advanced sampling strategies for MDM (e.g., confidence-based sampling methods [1]) to verify performance under more favorable conditions.
+
+- **Experiment Setup: Baselines**
+
+Recent discrete diffusion models such as Edit Flows [2] and FlexMDM support arbitrary-length generation. However, comparisons with Edit Flows are missing from the synthetic task experiments. I would like to see: (1) performance comparisons between ILMs and Edit Flows, and (2) clarification of what advantages insertion-based language models offer over editing-capable discrete diffusion/flow matching models.
+
+**References:**
+- [1] Train for the Worst, Plan for the Best: Understanding Token Ordering in Masked Diffusions, https://arxiv.org/abs/2502.06768
+- [2] Edit Flows: Flow Matching with Edit Operations, https://arxiv.org/abs/2506.09018
+
+### Questions
+- (Minor) Why wasn't the per-token generation time vs. NLL figure presented as the more conventional NFE vs. generative perplexity plot? Also, could you please include ARM in this comparison?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes a language modeling framework that enables sequence generation of arbitrary length by extending the existing idea of generation through insertion. The proposed models are evaluated on both planning tasks and language modeling tasks, including unconditional text generation and text infilling. Experimental results demonstrate performance improvements over baseline models such as Autoregressive Models (ARMs) and Masked Diffusion Models (MDMs).
+
+### Strengths
+The paper makes an original contribution by adapting insertion-based sequence generation to general language modeling, allowing models to generate sequences of arbitrary length. This is a practical extension of existing techniques, expanding their applicability beyond fixed-length generation tasks.
+
+The work is of clear presentation and well-structured experiments on both synthetic and real-world datasets. Results show consistent improvements over strong baselines such as Autoregressive and Masked Diffusion Models. Overall, the paper is clearly written, methodologically sound, and makes a meaningful contribution to advancing flexible and general-purpose language generation.
+
+### Weaknesses
+The paper’s technical novelty is somewhat limited, as its main contribution lies in applying an existing insertion-based sequence generation technique to the problem of variable-length text generation. While this adaptation is practical, the paper does not sufficiently deepen the theoretical or conceptual understanding of insertion-based generation, nor does it clearly articulate the unique challenges encountered when extending this approach to general language modeling. A more thorough analysis of these challenges, such as handling coherence, positional dependencies, or long-range consistency, would strengthen the contribution.
+
+Furthermore, several (not all) recent studies that have explored similar directions [1,2] appear to have been overlooked. Incorporating a discussion of these works and clarifying how the proposed model differs or improves upon them would better situate the paper within the existing literature and highlight its distinct value. Overall, expanding the theoretical motivation and engaging more critically with prior research would enhance both the novelty and the impact of the work.
+
+[1] Li, J., Dong, X., Zang, Y., Cao, Y., Wang, J., & Lin, D. (2025). Beyond fixed: Variable-length denoising for diffusion large language models. arXiv e-prints, arXiv-2508.
+[2] Gu, Y., Wang, W., Feng, X., Zhong, W., Zhu, K., Huang, L., & Qin, B. (2024). Length controlled generation for black-box LLMs. arXiv preprint arXiv:2412.14656.
+
+### Questions
+Could the authors discuss the current state-of-the-art approaches to variable-length text generation and clarify how their method compares to these existing techniques?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/WgMZPsdJmC.md b/human_reviews/WgMZPsdJmC.md
new file mode 100644
index 0000000000000000000000000000000000000000..4fe41c97d6c702334f1f90ab88f95c72e3aab9ff
--- /dev/null
+++ b/human_reviews/WgMZPsdJmC.md
@@ -0,0 +1,134 @@
+## Human Reviewer 1
+
+### Summary
+The paper analyzes step-size selection for convex quadratic optimization problems.
+
+### Strengths
+The manuscript clearly does not meet the bar for publication at ICLR:
+- Significance to the machine learning community is unclear
+- The optimization of convex quadratics has been studied since more than 180 years. It is unclear what the research contributes to the state of the art.
+- The presentation does not meet the standards of a top-tier venue.
+
+### Weaknesses
+See above.
+
+### Questions
+None.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper introduces an analysis of the gradient descent method solving quadratic function, especially in two-dimensional space. The writing and presentation are very poor, lacking necessary punctuation (such as commas and periods), which are fundamental to writing a research paper. Moreover, the contribution in 2-D is insufficient to warrant publication, especially considering that this is a flagship conference for AI.
+
+### Strengths
+No strength.
+
+### Weaknesses
+Very poor writing and presentation, with missing basic punctuation.
+Major contribution limited to a trivial 2-D convex quadratic case.
+
+### Questions
+No question.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper examines optimization methods, focusing specifically on the convex quadratic optimization problem. The paper identifies a phenomenon related to the reciprocal of the optimal step length. A two-dimensional case is presented to illustrate this finding.
+
+### Strengths
+This paper investigates how different coefficients affect the convergence of the entire system.
+
+### Weaknesses
+The overall paper is not well written.
+
+Although this is a mathematical optimization paper, it should be better polished to improve readability. Symbols should be defined clearly, and more background information should be provided. Since this is an AI conference, it would also be beneficial to include experiments related to AI.
+
+### Questions
+see the weakness
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This work aims to provide new results regarding steepest descent on quadratic problems. Most importantly, the authors propose an interesting approach of analyzing how the method evolves with respect to the stepsize, instead of the traditional analyses focusing on the iterates.
+
+### Strengths
+This work offers a clear alternative viewpoint by modeling the steepest descent method as a one-dimensional dynamical system in terms of the optimal step size. For the two-dimensional quadratic case, the authors provide a concise and explicit characterization of the corresponding dynamics, which is then extended to the general multidimensional setting. The paper also includes experimental results that qualitatively support the analytical findings.
+
+### Weaknesses
+The scope of this work is extremely narrow.
+Not only does it focus on the steepest descent method applied to **quadratic** problems, but the theoretically sound results are limited to the two-dimensional case, with claims for higher-dimensional extensions lacking formal justification.
+Consequently, the connection to modern machine learning optimization problems is very weak, raising questions about whether this paper fits the scope of the intended venue.
+Moreover, while the paper does not propose a fundamentally new optimization method but rather offers an alternative perspective on an existing algorithm, its limited scope makes it difficult to argue that it provides substantial new insight.
+
+Also, the overall presentation is not up to publication standards. The paper contains numerous grammatical and stylistic issues (most notably, uncapitalized sentence beginnings), inconsistent notation without proper explanation or derivation (for example, the definition of $r$ in Equation 9), incorrect cross-references (such as “minimizing Eq.(3)” around line 034), and the use of unjustified or imprecise terminology (for instance, describing the system as “chaotic”, which is not supported by a rigorous definition or analysis). These issues collectively make the paper difficult to follow and detract from its technical clarity.
+
+### Questions
+1. What is the ultimate goal of this analysis? As early as 2015, Kalousek already showed that step sizes can even be randomly chosen, and more recent works, such as the Silver Stepsize Schedule by Altschuler and Parrilo (2025), demonstrate that occasionally using large step sizes can actually accelerate convergence. These results suggest that one cannot meaningfully characterize or predict the convergence of the iterates $x_k$, which are what ultimately matter, solely by analyzing the evolution of the step sizes. How does the proposed one-dimensional analysis in terms of $r_k$ advance our understanding of the underlying optimization process beyond what is already known from these prior studies?
+
+2. Could the authors clarify whether they envision the proposed analysis as a tool for designing new step-size adaptation schemes, or purely as a qualitative study?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/Y6lVVJHiwN.md b/human_reviews/Y6lVVJHiwN.md
new file mode 100644
index 0000000000000000000000000000000000000000..0daf0c3c18c6a4094a457194d95bdf91fc04cdfc
--- /dev/null
+++ b/human_reviews/Y6lVVJHiwN.md
@@ -0,0 +1,198 @@
+## Human Reviewer 1
+
+### Summary
+The authors propose FedSGM, a unified framework for federated constrained optimization that addresses four challenges in federated learning: functional constraints, bidirectional communication compression, multi-step local updates, and partial client participation. Building on the Switching Gradient Method (SGM), FedSGM performs primal-only, projection-free updates that alternate between minimizing the objective and the constraint, enabling feasibility without dual variables. The authors derive convergence guarantees for both hard and soft switching regimes, proving an optimal $\mathcal{O}(1/\sqrt{T})$ rate even with biased compression (via error feedback) and random client sampling. Extensive theoretical analysis covers convex functional constraints, communication noise, and participation variance. Empirical results on Neyman–Pearson classification and constrained MDP tasks demonstrate that FedSGM achieves constraint satisfaction and stable convergence under heterogeneous and lossy federated settings.
+
+### Strengths
+- This work tackles a challenge: federated optimization with constraints (such as fairness or safety requirements) in realistic federated learning (FL) conditions, which involve limited communication and sporadic client participation. Previous FL methods primarily address either heterogeneity (FedAvg variants) or constraints (e.g., FedAvg with projection) or compression.
+
+- By building on the Switching Gradient Method, FedSGM avoids expensive projections or dual updates needed in prior constrained FL approaches (e.g., penalty/ADMM methods).
+
+- The paper provides a rigorous theoretical analysis covering multiple challenging aspects equally. It proves convergence for both hard and soft switching regimes under a broad range of settings (full or partial client participation, with or without compression, and multiple local steps).
+
+- The paper is generally well-written and structured.
+
+### Weaknesses
+- The theoretical guarantees rely on the convexity of both the objective and constraint functions (Assumption 1), along with bounded Lipschitz constants and sub-Gaussian noise assumptions. This is a standard assumption for proving $O(1/\sqrt{T})$ rates, but it limits the immediate applicability to realistic federated learning settings (most real federated tasks, such as deep neural network training, are nonconvex).
+
+- Combining constraints, compression, local updates, and partial clients in a single framework is beneficial, but the technical novelty of each component may appear incremental compared to prior art. FedSGM essentially merges well-known techniques, such as switching gradient updates for constraints, error-feedback compression, and multi-step local SGDs (similar to FedAvg), and extends existing analyses to their combined application.
+
+- Although the two case studies are relevant, the experiments are somewhat limited in diversity and scale.
+
+### Questions
+- In practice, how does FedSGM handle non-convex objectives? While the theory assumes convex $f_i$ and $g_i$, the experiments involve neural networks and reinforcement learning (both non-convex). Does the algorithm still converge reliably in these settings?
+
+- Could the authors provide guidance or intuition on selecting the soft switching parameters (such as the smoothing coefficient $\beta$ or threshold $\epsilon$ in the sigmoid function)? How sensitive is FedSGM’s performance to this choice?
+
+- How does FedSGM compare against simpler baseline approaches for constrained federated learning? For instance, one could run FedAvg with a penalty for constraint violation or project the global model onto the constraint set each round (if feasible).
+
+- The analysis introduces the factor $\Gamma(q,q_0)$ to capture compression in presence of local steps. Could the authors elaborate on how error feedback interacts with multiple local SGD steps?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes FEDSGM, a unified framework for federated constrained optimization that simultaneously handles four major challenges: (1) functional constraints, (2) bi-directional communication compression, (3) multiple local updates per round, and (4) partial client participation. Built upon the Switching Gradient Method, FEDSGM adopts a projection-free, primal-only update scheme that avoids dual variable tuning and inner-loop projections. The framework incorporates error-feedback mechanisms to correct compression bias and establishes an $O(1/\sqrt{T})$ convergence rate under convex objectives. Experiments on Neyman–Pearson classification and constrained MDPs demonstrate convergence and constraint satisfaction.
+
+### Strengths
+1. The work is the first to combine constraint handling, compression, multiple local steps, and partial participation in a single theoretical framework.
+2. The convergence proof carefully separates optimization and sampling errors and analyzes the bias introduced by compression and local drift. Both hard and soft switching variants are theoretically justified.
+3. FEDSGM avoids inner projections and dual updates, leading to a lightweight and practical approach for resource-constrained federated systems.
+4. Experiments on Neyman–Pearson classification and CMDP tasks confirm the feasibility and stability of the proposed method.
+
+### Weaknesses
+1. The theory assumes convex objectives and constraints, which restricts applicability to deep federated learning scenarios. The extension to nonconvex settings is not discussed.
+2. Experiments are restricted to small datasets and tabular RL tasks. Results on large-scale or nonconvex benchmarks (e.g., image classification or language models) would greatly strengthen the empirical claims.
+3. The experimental section lacks strong comparisons with recent constrained FL baselines (e.g., primal-dual or penalty-based methods), making it difficult to evaluate relative performance.
+4. No experiments under heterogeneous data distributions.
+
+### Questions
+See weaknesses above.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes a unified theoretical framework for federated learning optimization that jointly captures several key aspects: constraints, partial participation, local computation, and bidirectional communication compression with error feedback. The framework generalizes many existing FL methods and, if it indeed recovers their best-known convergence rates across all settings (as claimed), it would constitute a strong theoretical contribution. The paper centers on the functional constraints and considers both hard and soft switching for satisfying them.
+
+### Strengths
+- The unification of these aspects of federated learning (local steps, communication compression \& error feedback, partial participation) under one framework is meaningful and relevant. If the framework recovers the best-known convergence rates for all covered scenarios of literature (as claimed), it is worth publishing on its own.
+
+- The authors provide high-probability convergence guarantees for both hard and soft switching.
+
+### Weaknesses
+**Constraint formulation**: The novelty and significance of the constraint formulation seem to be overstated. Assumption 3 restricts the generality of the framework, limiting the scope of the unification.
+Hard and soft switching closely resemble well-known approaches for minimizing an unconstrained regularized objective, with the regularizer R chosen as: R(w)=0 if G(w)<=\eps and \infty otherwise (see the formulation [1]). In this viewpoint, the literature review seems to be inadequate.
+
+> [1] Condat, Laurent, and Peter Richtárik. "Murana: A generic framework for stochastic variance-reduced optimization." Mathematical and Scientific Machine Learning. PMLR, 2022.
+
+**Practical relevance:**
+Practical relevance of the unified framework is unclear: FL is a diverse field, and it is not evident which real-world FL setups require all of the newly-enabled components simultaneously.
+
+**Experimental comparison:**
+Experiments are limited and mostly illustrative. I think that there is a lot of missed potential. Having the unified framework, one can also compare the different aspects of the framework to answer fundamental questions of federated learning -- what is more important: to have more clients in partial participation, or to have more bits in the compresion schemes, or to do more local steps?
+
+**Presentation issues:** The paper needs a major revision before considering publishing. There are missing definitions (convexity, Lipschitz continuity), a lack of formal rigor, and a disjointed and difficult-to-follow narrative.
+
+### Questions
+- How is the proposed notion of hard/soft constraint switching connected to projection (or inexact projection) onto the feasible set {w:G(w)<= \eps}?
+
+- Is there a practically significant configuration (e.g., combination of compression, partial participation, local steps, and constraints) that is new and not covered by prior FL works?
+
+- Can the authors provide insights (both theoretical and empirical) on the relative importance of **i)** number of clients in partial participation, **ii)** number of bits in compression, and **iii)*** number of local updates?
+
+### Soundness
+3
+
+### Presentation
+1
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces FEDSGM, a unified framework for federated constrained optimization designed to simultaneously address four major challenges: functional constraints, communication bottlenecks, multiple local updates, and partial client participation. Proposed approach is built on the Switching Gradient Method (SGM). FEDSGM provides projection-free, primal-only updates, avoiding the need for expensive dual-variable tuning. To manage communication limits, it incorporates bidirectional error feedback to correct bias from compression, and its theoretical analysis explicitly models the interaction between this compression noise and the client drift from multiple local steps. The authors derive convergence guarantees showing the averaged iterate achieves the canonical $\mathcal{O}(1/\sqrt{T})$ rate, with high-probability bounds that isolate the sampling noise from partial participation. Additionally, a "soft switching" variant is proposed to stabilize updates near the feasibility boundary. The framework's efficacy is validated empirically on Neyman-Pearson classification and constrained Markov decision process (CMDP) tasks.
+
+### Strengths
+1. The paper provides a rigorous and extensive theoretical analysis of its framework.
+2. Well-motivated problems and applications.
+
+### Weaknesses
+1. Lack of Empirical Validation: The authors have not compared their proposed method with the state-of-the-art. The experiments (Section 4) only compare FEDSGM against a "Centralized" (i.e., non-federated) version of itself which is an ablation study.
+
+2. It demonstrates that the federated setting introduces a performance cost (which is expected) but tells us nothing about whether FEDSGM is better than any other existing method.
+
+3. Communication Efficiency: In this paper, the authors does not propose a new communication-efficient technique. It merely "incorporates" standard methods like Top-K compression and Error Feedback. Moreover, their method added new communication overhead. Algorithm 1 explicitly requires a "Constraint query" (lines 3-4) where all clients send their constraint value $g_j(w_t)$ to the server, which then aggregates and broadcasts the switching decision. This is a full, separate communication round-trip that must happen before the main gradient/model update. This added synchronisation step directly contradicts the goal of reducing communication bottlenecks.
+
+### Questions
+1. I want to see a detailed comparative analysis with SOTA (e.g., Federated Frank-Wolfe, and other projection-free methods ) to prove the superiority of the proposed approach.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+The paper introduces a federated algorithm for IV analysis (FEDIV) via federated GMM (FEDGMM). It formulates FEDGMM as a federated zero-sum game defined by a non-convex non-concave minimax optimization problem. It also shows that the solutions to the federated game satisfies Stackelberg equilibrium satisfying client-local equilibria up to a heterogeneity bias. The work is the first work on federated IV using federated GMM.
+
+### Strengths
+1. The work is the first work formulating federated IV via federated GMM.
+2. The solid theoretical results strengthen the work.
+3. The experimental results shows that the federated IV analysis framework is efficient in recovering the GMM estimators.
+
+### Weaknesses
+The experimental results in the main body of the paper are limited. The authors could move some of the results from the appendix for the final version of the draft.
+
+### Questions
+In Table 1, when using GDA, Fed-DeepGMM performs closer to the DeepGMM compared to when SGDA is used for both. Is there an intuitive reason behind this observation?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/YETCQLcKtn.md b/human_reviews/YETCQLcKtn.md
new file mode 100644
index 0000000000000000000000000000000000000000..3992c20ff09e0070cd5e00d7cdc7b69bb39e7121
--- /dev/null
+++ b/human_reviews/YETCQLcKtn.md
@@ -0,0 +1,185 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a novel on-policy algorithm named PolicyFlow. Its core contributions are:
+
+1) Efficient importance ratio approximation: Instead of computing the full flow path during training updates, PolicyFlow approximates importance ratios using velocity field variations along a simple "interpolation path". This significantly reduces computational overhead.
+2) Brownian entropy regularizer: To prevent potential mode collapse and encourage diverse behaviors , the authors introduce a lightweight entropy regularizer inspired by Brownian motion. It implicitly increases policy entropy by shaping the velocity field , avoiding the significant cost of explicit entropy or log-likelihood computation.
+
+The authors conducts experiments in diverse environments, including MultiGoal, IsaacLab, and MuJoCo Playground. Particularly on the MultiGoal task, PolicyFlow demonstrates its ability to capture diverse multimodal action distributions.
+
+### Strengths
+1) The core contribution of this paper is a novel and efficient importance ratio approximation method. By evaluating velocity field differences along a simple interpolation path, it avoids the significant overhead of solving ODEs and backpropagation during PPO updates, making the application of CNF policies computationally feasible. Additionally, inspired by physical processes, the paper proposes a novel Brownian regularizer, which provides a lightweight means of preventing mode collapse by directly acting on the velocity field, thereby avoiding expensive entropy calculations.
+2) The method of this paper performs well on MultiGoal (Figure 1) and demonstrates high computational efficiency.
+
+### Weaknesses
+1) The baselines are limited, comparing only against PPO and FPO. Methods like GenPO and DPPO are missing. Furthermore, the method does not show an advantage in half of the tasks in the IsaacLab benchmarks.
+
+2) There are too many hyperparameters, making reproduction difficult. Beyond standard PPO hyperparameters, it also involves the sampling strategy for $t$, noise variance learning, time or observation embedding dimensions, integration steps, and $w_b$, $w_g$, among others. The paper provides limited discussion on the sensitivity to these hyperparameters and the default strategies used.
+
+3) No code available.
+
+### Questions
+1) Table 5 shows that using different interpolation paths leads to drastically different performance on the MultiGoal task. This suggests that the choice of interpolation path is another critical design decision. Why does the paper default to the Rectified-Flow path? What advantages does it have, in theory or practice, compared to other paths?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper introduces PolicyFlow, an on-policy RL method that uses continuous normalizing flows for more expressive policies. It avoids expensive backpropagation through flow trajectories by using an interpolation-based importance ratio. A Brownian regularizer is added to encourage exploration. Experiments on MuJoCo, IsaacLab, and MultiGoal show stable and competitive results compared to PPO and FPO.
+
+### Strengths
+The paper proposes an interesting and original idea — combining continuous normalizing flows with on-policy policy optimization in a practical way.
+The paper is clearly written, with intuitive explanations and helpful figures that make the method easy to understand.
+
+Experiments cover multiple benchmarks (MuJoCo, IsaacLab, MultiGoal) and show consistent improvements over PPO and FPO.
+
+Overall, the work is technically solid and provides a promising direction for expressive yet stable flow-based policy learning.
+
+### Weaknesses
+Methodological Weaknesses:
+1. The proposed interpolation-based estimation of importance ratios is only heuristic; the paper does not quantify the bias introduced or establish convergence guarantees. Providing analytical error bounds or controlled experiments comparing with exact estimators would strengthen credibility.
+2. The Brownian regularizer, while novel, lacks clear motivation and comparison with existing entropy regularizers (e.g., Haarnoja et al., 2018; Chao et al., 2024). Its empirical benefit is only qualitatively shown; a quantitative ablation isolating its contribution is necessary.
+
+
+Experiments Weaknesses:
+1. The experimental evaluation is also fragmented—PolicyFlow is compared with FPO on MuJoCo and PPO on IsaacLab, preventing a unified cross-method assessment.
+2. Including all three under identical settings would clarify relative efficiency and expressivity. Furthermore, results are averaged over five seeds without significance testing
+3. The MuJoCo Playground evaluation covers only a moderate subset of tasks (e.g., BallInCup, CheetahRun, FingerTurnHard, ReacherHard) but omits the most challenging or high-dimensional environments such as Humanoid or Walker. This limits claims of scalability to complex continuous-control domains.
+
+Minor Issues:
+1. some notations is not well defined: Sec. 3. $s,a$ is not defined before using. $p_{\pi}(s)$ is never defined. $\pi^*$ is mentioned but not clearly defined.
+
+### Questions
+Can you clarify whether the interpolation-based importance ratio introduces any noticeable bias? It would help to know if you’ve compared it against an exact or less-approximated version.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper introduces PolicyFlow, an on-policy reinforcement learning algorithm that replaces the standard Gaussian policy used in PPO with a continuous normalizing flow parameterized by ordinary differential equations. This modification aims to enhance expressiveness for complex or multimodal action distributions. The approach also incorporates a Brownian motion-inspired implicit entropy regularizer to promote exploration without relying on explicit policy entropy terms. The paper compares PolicyFlow against PPO and other flow-based policy optimization methods, such as FPO, reporting similar or slightly improved empirical results on selected benchmarks.
+
+### Strengths
+- Addresses the expressiveness limitation of Gaussian policies by exploring normalizing flows for policy representation.
+- Introduces a Brownian motion-based entropy regularizer to encourage implicit exploration.
+- Presents a clear and structured implementation based on PPO.
+- Includes runtime and parameter analyses, offering transparency on computational cost.
+- Demonstrates engagement with related work, including comparisons to other flow-based methods.
+
+### Weaknesses
+- The reported empirical results are very close to PPO, providing limited evidence of improvement.
+- The additional model complexity and slower runtime are not justified by corresponding performance gains.
+- The theoretical connection between the flow-based representation and policy gradient optimization is underdeveloped.
+- The motivation for emphasizing FPO comparisons is not well justified relative to the paper’s main objective.
+- Benchmark evaluations and variance reporting are incomplete, limiting the strength of the experimental conclusions.
+
+### Questions
+**Detailed Review:**
+
+The paper proposes PolicyFlow, which replaces the Gaussian policy distribution in PPO with a continuous normalizing flow modeled through ordinary differential equations. The design aims to capture multimodal action distributions and improve policy expressiveness. The use of a Brownian motion-inspired implicit entropy regularizer seeks to enhance exploration without introducing explicit entropy terms in the loss.
+
+Although this approach is conceptually sound, the paper does not provide strong empirical or theoretical evidence that PolicyFlow meaningfully improves over PPO. The observed results in Figures and Tables suggest comparable performance rather than clear gains. The discussion of results should better address why these similarities occur and whether the proposed approach offers other advantages, such as stability or robustness.
+
+The focus on comparison with FPO is noted, but it is unclear why this method receives particular attention when the central comparison should remain with PPO. It would be helpful to clarify the methodological differences that justify this choice. The analysis could also include visualization or theoretical examples that demonstrate how the normalizing flow structure affects action representation or optimization dynamics.
+
+While the Brownian entropy regularizer is an appealing idea, its effect on exploration and stability is not quantified. A comparison with standard entropy regularization would help assess whether it provides genuine benefit or simply replicates existing behavior. Similarly, the discussion on computational efficiency should more clearly address the trade-offs between the added parameterization and any observed gains in performance.
+
+The runtime and parameter analyses are appreciated, as they help contextualize the computational implications of the proposed method. However, since the improvements are small and the training time increases, the practical benefit of adopting PolicyFlow remains uncertain. The lack of variance reporting in Tables 1 and 2 also limits confidence in the consistency of the results.
+
+In summary, the idea of integrating normalizing flows into policy gradient methods is interesting and potentially valuable, but the paper does not yet establish sufficient justification, theoretical insight, or empirical advantage to support its adoption.
+
+**Questions:**
+
+1. What is the specific benefit of using normalizing flows over Gaussian policies in terms of policy expressiveness and action representation?
+2. How does the Brownian entropy regularizer contribute to exploration compared with standard entropy regularization?
+3. What is the motivation for emphasizing comparisons with FPO, and how do these comparisons support the main claims of the paper?
+4. How does PolicyFlow perform in terms of computational cost and sample efficiency relative to PPO?
+5. Could the authors include a simple theoretical or illustrative example showing how the flow-based policy captures multimodal actions more effectively?
+6. Are the experimental results averaged over multiple runs, and if so, could variance be reported to strengthen the reliability of the findings?
+7. What is the runtime difference between **sampling action** from the normalizing flow policy and from the Gaussian policy?
+8. Under what conditions does PolicyFlow provide a clear improvement over PPO, and how does this relate to its theoretical formulation within policy gradient optimization?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces PolicyFlow, a novel on-policy reinforcement learning algorithm designed to leverage the expressive power of Continuous Normalizing Flows (CNFs) for policy representation within a PPO-like framework. They show how to avoids the need for full ODE simulation and backpropagation during the policy update and how to implement the entropy regularization in a smart way in the generative policy situation by imitating the Brownian motion. They finally show improved performance compared to the traditional PPO and related flow-based PPO method.
+
+### Strengths
+1. The authors demonstrate how to bypass the computationally expensive full ODE simulation and backpropagation typically required when using Neural ODE-based policies with a PPO objective. Their key insight is to use an efficient approximation of the importance ratio, enabling stable on-policy training without the standard computational bottlenecks.
+2. the paper introduces a lightweight "Brownian regularizer" to enhance behavioral diversity and mitigate mode collapse.
+
+### Weaknesses
+1. How is the initial flow matching model for the method in this paper obtained? What is the impact of the initial model's performance on the overall method?
+
+2. The target distribution of the flow-based policy changes dynamically during training, yet the objective function samples only a single t from the path at each step. Could this, due to the varying sample weights (different values of A) for each t along the path, prevent the model from learning an effective distribution?
+
+3. A sensitivity analysis experiment should be conducted on the parameters used in the algorithm, e.g, Brownian regularizer weight wb.
+
+### Questions
+1, since the first-order approximation of the importance ratio may introduce bias into the gradient estimate, have you empirically assessed its impact? For example, did you observe any degradation in performance or training instability as the PPO clipping range ϵ increases, which would amplify the approximation error?
+
+2, could you clarify the sampling strategy for tk (Algorithm 1, lines 15–16)? In the final experiments, did you use uniform sampling U[0, 1], and if so, did it perform better than sampling from the discrete simulation time points?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/YS4N1YxXSM.md b/human_reviews/YS4N1YxXSM.md
new file mode 100644
index 0000000000000000000000000000000000000000..6b9150ad9c15c8d161abc22977f0ea47392780ae
--- /dev/null
+++ b/human_reviews/YS4N1YxXSM.md
@@ -0,0 +1,157 @@
+## Human Reviewer 1
+
+### Summary
+The authors present QUOKA, a training-free sparse attention algorithm for efficient LLM prefill. The method prioritizes queries with low cosine similarity to the mean to subselect keys. This achieves a 3-7x speedup and an 88% reduction in key-value pairs, while maintaining near-baseline accuracy.
+
+### Strengths
+- The paper introduces a heuristic for query selection based on the hypothesis that queries with greater angular distance from the mean are more informative. This provides a geometric perspective on the multi-query attention problem that is distinct from conventional approaches focused on representativeness.
+- The algorithm is designed to be training-free and hardware-agnostic by avoiding the use of custom kernels. This design allows for its potential integration into various inference systems without requiring model retraining or fine-tuning.
+- The paper's experiments report reductions in Time-to-First-Token and attention latency across multiple hardware platforms. The results also show that these efficiency improvements are achieved while task accuracy is maintained close to that of the dense attention baseline.
+
+### Weaknesses
+- The paper does not include a comparison to alternative query selection strategies, such as selecting representative queries via clustering (e.g., K-Means centroids). Without this comparison, it is difficult to fully assess the performance of the proposed "outlier query" heuristic relative to more established methods for summarization.
+- The evaluation of the method's applicability to generation tasks appears less developed. Since the core query subselection component is bypassed in the single-query decoding scenario, a comparison against baselines specifically designed for decoding-phase KV management would be necessary to fully substantiate the method's competitiveness in this setting.
+- The potential impact of quantization on the method's performance is not discussed. The algorithm's reliance on precise geometric relationships (via cosine similarity) means its robustness in low-bit precision environments, which are common on its target hardware, remains an important but unevaluated factor.
+
+### Questions
+- Could you provide a more direct comparison or discussion against a "central representativeness" approach, such as selecting K-Means query centroids? This would help to empirically situate the performance of your proposed heuristic.
+- The assumptions in Theorem 1 are central to the method's motivation. How consistently do these geometric conditions hold empirically across different models and layers? Supporting statistics or visualizations would be valuable.
+- For the Math500 experiments where query subselection is not applied, could you please clarify the exact mechanism of QUOKA? Specifically, how are keys selected for the single active query during the generation phase?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 2
+
+### Summary
+Due to the quadratic nature of attention, long-context prefill remains a major challenge for large language models (LLMs). However, each query only needs to attend to a subset of key–value (KV) pairs to achieve reasonable performance. Existing sparse attention methods either rely on fixed attention patterns or are optimized primarily for the generation phase.
+This paper presents **QUOKA**, which identifies representative queries from each chunk based on the smallest cosine similarity to the mean query vector, then uses these representative queries to locate important KV pairs. The model finally performs full query–subset KV attention. QUOKA achieves strong performance on long-context benchmarks and is efficient to implement.
+
+### Strengths
+- The evaluation is comprehensive and the reported results are impressive.
+- The proposed method is clearly described, and the paper is easy to follow.
+
+### Weaknesses
+- Hardware efficiency may degrade due to the small chunk size and discontinuous KV selection.
+
+### Questions
+Thanks for submitting to ICLR 2026. This paper introduces an interesting idea of filtering query vectors using cosine similarity, inspired by DiffKV’s approach to KV cache filtering. However, I still have some concerns about the motivation and the efficiency claims.
+
+## 1. Intuition behind the “critical” query vectors
+The intuition for using “critical” query vectors is not fully convincing. It is true that such queries are closer to the key vector space and may attend to a wider range of keys or exhibit higher variance in attention scores. However, since the softmax operation is applied independently to each query, the proposed approach only ensures that these selected queries have smaller attention errors. It does not necessarily guarantee that other queries in the same group will also exhibit small errors. Intuitively, it is unclear why these tokens should be more important for overall generation accuracy.
+
+## 2. Limited benefit in the generation phase
+It is unclear how this method can lead to meaningful speedups during the generation phase. QUOKA estimates the similarity between each query and all keys, but since generation involves only one query vector, this step effectively performs half of the full attention computation. Even after selecting top-k keys and multiplying by the corresponding values, the overall computational reduction—and thus the speedup—appears minimal.
+
+## 3. Hardware inefficiency due to small chunks
+In the evaluation, the block size is set to 128. However, this configuration is inefficient on modern hardware, as each GEMM or attention operation on such small blocks yields low arithmetic intensity and thus lower TFLOPs. This effect is particularly noticeable on H100 and B200. In your latency test, do you also use block size 128 for the full attention baseline? A fairer comparison would allow full attention to use larger block sizes (e.g., 1024 or 2048), which are more hardware-efficient.
+
+## 4. Constraints on KV selection
+Are there any constraints imposed on the selected KV pairs? If the selected KVs are discontinuous, how is self-attention computed efficiently using existing kernels? Discontinuous memory access patterns can severely hinder performance unless carefully optimized.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The authors propose a better chunked prefill technique which only uses a small subset of KV cache for each chunked prefill. The algorithm goes like this -- choose a subset of queries to select KV cache, compute scores for these queries and aggregate across heads and queries, choose topk scoring KV for chunked prefill. They show that their method outperforms a bunch of baselines at same sparsity.
+
+### Strengths
+Strengths
+1. Great experimental breadth and strong performance compared to baselines. The experiments cover multiple benchmarks and baselines.
+2. Easy to understand algorithm.
+
+### Weaknesses
+1. The approach is not very principled. While it is true that queries with high similarity with K will have low similarity with Mean(Q) due to OOD nature of query and key distributions (this is what theorem says), the converse is not true (this is what you want for efficiency) . It is especially not true in high dimensions -- where it is highly likely that queries with low similarity with Mean(Q) would also have low similarity with K.
+
+So this being a critical component of algorithm is unsettling. I would assume that most queriers chosen are actually even worse than Mean(Q) w.r.t similarity with K. Can we have distribution plots of cosine similarities of chosen queries vs. all the queries.
+
+Having said that their experimental section strongly supports their method.
+
+2. some latest baselines are missing -- duoattention, xattention, spargeattention, might be good to add discussion / results for these.
+
+### Questions
+1. Can we have plots for cosine similarities (K, q) for chosen queries and all the queries.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes a novel sparse attention method for improving the efficiency of transformer models during the prefill stage with chunked prefill. The idea is to select a subset of important queries by divergence to the mean query and only compute attention for those important queries and important key-value pairs. The method is evaluated on SOTA open-source LLMs against other sparse attention baselines and shows better efficiency and performance frontier.
+
+### Strengths
+- The proposed method is well-motivated with insight experiments
+- The pseudo-code is extremely helpful in understanding the method
+- The experiment is solid
+
+### Weaknesses
+- Some explanations of the claims are confusing
+
+### Questions
+Thank you for your submission. I like the paper overall and think the method is well motivated. I particulary enjoy the insight experiments in Figure 2 and 3, which make the motivation very clear. However, some claims and descriptions in the paper are poorly explained and a bit vague to me. I would appreciate it if the authors can clarify the following questions:
+- What is the relationship with chunked prefill? The proposed method seems to be highly dependent on chunked prefill, but the relationship is not very clear to me. I can understand that some previous sparse attention methods can be inefficient under prefill with multiple queries due to aggregated sparsity. But why is chunked prefill specifically needed for the proposed method? Is it possible to use the proposed method without chunked prefill?
+- "however, due to dynamic compute graph and KV cache memory bandwidth overhead under chunked prefill, their benefits are limited." Can you please elaborate more on this point? Why dynamic compute graph and KV cache memory bandwidth overhead limit the benefits?
+- "During prefill, when relevant KVs are selected for many queries at once, this can result in significant performance degradations. Under chunked prefill, where important KVs are repeatedly subselected for multiple queries, these degradations become more pronounced." These two sentences are particulary confusing to me. Why chunked prefill makes the performance degradation more pronounced?
+- The gather operator in algorithm 1 has inconsistent notations (at line 4 and line 12).
+- “As discussed in Section 2, existing sparse attention methods face limitations in prefill efficiency and portability.” What do you mean by portability here?
+- I don't fully understand the query selection process. Many of the previous sparse attention methods also reduce among the KV dimension, so the attention socres are approximated with partial KV, however, we still get the full attention scores for all queries. In this paper, it seems that you only select a subset of queries, does this means some of the queries are pruned? Does this means it is somehow similar to the previous work on token pruning?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/Yo7eG3lC3y.md b/human_reviews/Yo7eG3lC3y.md
new file mode 100644
index 0000000000000000000000000000000000000000..cbfa48645dd687627483600dfbbf4f32a6dee7e4
--- /dev/null
+++ b/human_reviews/Yo7eG3lC3y.md
@@ -0,0 +1,166 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a new metric, LEGO-Eval, for evaluating the 3D embodied environments. LEGO-Eval uses multiple tools to extract the information from the scene and verify if they satisfy the constraints. The evaluation results demonstrate LEGO-Eval achieves much higher agreement with human judger than previous metrics like CLIP-Score.
+
+### Strengths
+1. The proposed metric has much better agreement with human judgement compared to other metrics.
+2. The refinement experiments is a highlight that such metrics can be reliable rewards for improving systems.
+
+### Weaknesses
+**Require dense scene annotations.** This is the major concern of the proposed evaluation metric which requires dense annotations of each assets (attributes, locations, etc). However, for some methods which generate entire scene in a single mesh (e.g., diffusion-based model), the proposed method cannot use tools to get those information. The results in Table 2 also validate this concern that, with textual reasoning on attributes and precise spatial information from rendering engine, the performance will drop significantly. Therefore, the usability of the proposed metric is quite limited.
+
+### Questions
+1. How many human annotators are recruited for collecting human judgments?
+2. How many examples are used in Figure 7 to get the results?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper tackles a pain point in text-guided 3D scene generation: we can now generate scenes from language, but we can't reliably tell if the scene actually matches the detailed instruction. Existing automatic evaluators (e.g., CLIPScore) don't really understand 3D layouts, and they crumble on constraints.
+
+To address this, the authors propose LEGO-EVAL, a tool-augmented evaluation pipeline. The idea is: Take the long instruction, identify and break it into structured constraints (4 types so far); For each constraint, plan which tools to call (Unity environment interaction, textual reasoning, VLM reasoning), execute those tools to actually ground the entities, and then give a binary judgment with evaluation explanations, declare the whole scene valid only if all constraints pass.
+
+Alongside this, the authors build LEGO-BENCH, focusing on the attributes and spatial relationships of 3D scene generations, so that different evaluators can be compared.
+
+### Strengths
+- Reframes 3D-scene evaluation as a tool-augmented reasoning task. Combining constraint extraction, planning, and multimodal tool calls for grounding is a novel and well-motivated contribution.
+- The pipeline and tool taxonomy are well-explained. Figures and examples make the method intuitive.
+- Strong experiments with fair baselines (e.g., CLIPScore, SceneEval). Clear metrics, ablations, and human alignment analyses.
+
+### Weaknesses
+- Simulator dependency: LEGO-EVAL assumes access to the scene graph and Unity backend. This may not be available in many real settings like photorealistic assets.
+- Scene limination: LEGO-BENCH is limited to indoor scenes. Broader or more varied data would strengthen claims.
+- Failure analysis: It's unclear which constraint types cause most errors for baselines.
+
+### Questions
+1. Can LEGO-EVAL operate without simulator access?
+2. What is the average tool-call cost per instruction and runtime per scene?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper builds on the core insight that existing evaluation methods (such as using VLMs as judges) do not adequately match fine-grained text instructions with 3D scenes; this becomes a problem for downstream use-cases such as text-to-scene synthesis. To address this, the paper introduces (i) LEGO-Bench, a manually annotated (n = 130) dataset of text-scene pairs, and (ii) LEGO-Eval, a tool-based evaluation method that drastically outperforms VLM-as-judges when compared to ground-truth.
+
+### Strengths
+1. LEGO-Eval’s tool-grounded pipeline drives a striking jump in F1 versus the usual VLM-as-judge baselines, showing that explicit grounding leads to better alignment verdicts.
+
+1. LEGO-Bench is valuable: 130 instructions with roughly 1.2k hand-checked constraints covering both architectural makeup and object relations give the community a realistic, fine-grained stress test. The field of scene graphs, while tangential to this paper, _also_ incidentally lacks high-quality fine-grained annotations for scenes, despite it being a common drawback of VLMs.
+
+1. The paper is well-written and easy to follow. The experimental coverage is thoughtful; it has ablations over tool types, comparisons against four synthesis systems, and the Holodeck refinement loop (Fig. 7) all help illustrate the usefulness of LEGO-Eval/Bench.
+
+### Weaknesses
+1. The paper does not provide conclusive evidence (or even a brief discussion) to the claim that finer-grained text-scene alignment leads to real embodied gains. The paper does provide _preliminary_ evidence via the Holodeck refinement vignette (Fig. 7); however there’s no “detect -> repair -> retrain” loop or even a pointer to existing sim-to-real failures. A minimal downstream study (or stronger citations) would make the story much more convincing.
+
+
+1. LEGO-Eval leans on several Unity-facing tools, so the comparison to image-only VLM judges risks being apples-to-oranges. Please add baselines that ingest similar structure (e.g., VLM + detector/scene-graph outputs, see weakness #2 and question #3 below) to show the lift truly comes from the proposed orchestration.
+
+
+3. The paper has a limited analysis of failure modes of VLM-as-judges. Figure 8 hints that VLM judges mostly hallucinate or misidentify objects, yet we never see how often that happens or how severe it is. Please tally the dominant error types (mis-identification, spatial mistakes, attribute mismatches) so we can tell whether cascading failures are the main culprit. If mis-identification dominates, test baselines that feed object detection outputs [1,2] or structured summaries from scene graph generators to see how much ground they recover. Likewise, benchmark 3D-language models (3D-LLM, Point-LLM) that already encode volumetric context. A quantitative breakdown plus these stronger baselines would clarify when LEGO-Eval is indispensable versus when richer perception priors nearly match it.
+
+[1] Grounding-DINO. Grounding dino: Marrying dino with grounded pre-training for open-set object detection. https://arxiv.org/abs/2303.05499
+[2] YoloV8, https://yolov8.com/
+
+### Questions
+1. As mentioned above, do you have any downstream evidence (even a small detect -> repair -> retrain study, or at least documented cases in the literature) that tighter instruction-scene alignment boosts embodied performance?
+
+1. Can you quantify the cost tradeoff of LEGO-Eval: number of tool calls per instruction, duration (limitation currently mentions "two hours" for the 260 samples), and approximate compute cost per sample. How do these figures compare to the single-pass VLM judge?
+
+1. It seems that LEGO-Eval is specifically targeted at static, top-down scenes and requires careful tool curation. Can it theoretically cope with dynamic scenes? Furthermore, would it make sense to add scene graph generators [1,2], which produce fine-grained annotations from scenes, as a possible baseline?
+
+I am quite willing to raise my score if the above questions and weaknesses are addressed.
+
+[1] Gu et al, ConceptGraphs: Open-Vocabulary 3D Scene Graphs for Perception and Planning. https://arxiv.org/abs/2309.16650
+[2] Huang et al, LASER: A Neuro-Symbolic Framework for Learning Spatial-Temporal Scene Graphs with Weak Supervision. https://arxiv.org/abs/2304.07647
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper introduces LEGO-EVAL, a new evaluation framework that uses a diverse set of tools (for environment interaction, textual reasoning, and multimodal reasoning). This tool-augmented approach allows it to explicitly ground scene components and accurately assess if the generated 3D scene aligns with complex, detailed instructions.
+
+The authors also created LEGO-BENCH, a new benchmark of fine-grained instructions for 3D environments. Experiments show LEGO-EVAL dramatically outperforms VLM-as-a-judge (0.81 vs. 0.40 F1 score) in alignment with human judgments.
+
+### Strengths
+Instead of relying on one AI model to just "look" at the scene, the paper introduces LEGO-EVAL, which acts more like a detective. It uses a set of specialized "tools" to check specific facts—one tool to find all the objects, another to check their color, and another to measure their spatial relationships.
+
+The authors created their own difficult test (called LEGO-BENCH) full of complex instructions. They proved their new "judge" (LEGO-EVAL) is far more accurate than older methods.
+
+Experiments also show that current AI models for building 3D scenes are still very bad at following detailed instructions, failing most of the time.
+
+### Weaknesses
+The paper introduces a new test set called LEGO-BENCH, but it only contains 130 instructions. This is a very small number, which might not be enough to prove the necessity of making such a benchmark. In fact, there are many indoor scene synthesis benchmarks and it is not even worthwhile to start a new language-instructure synthesis from scratch.
+
+In LEGO-BENCH, the scenes used to test the evaluator were created "manually." This process is very slow, expensive, and hard to scale. Utilizing a sequence call of LLM APIs to generate, verify, and refine, seemed to be costly and super inefficient in generating a simple contraints scene from natural language.
+
+The best results come from using "GPT-4.1." The paper shows that performance drops significantly when using smaller or different models. This means the system's success isn't just its smart design but also its reliance on a very powerful (and expensive) "brain" that not everyone can access or afford. For example, does a 7B or 4B model good enough to generate good results based on the method proposed?
+
+Considering the downstream tasks, what can this method bring advantages to? e.g. robotic learning? navigation? gaming? The dataset from "manually collect instructions for 3D scene synthesis" may not be super useful for other envs, tasks, game engines, simulations, e.t.c. In another language, the impact of this LEGO-BENCH is too small.
+
+### Questions
+See weaknesses
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/YvMkU4BYOA.md b/human_reviews/YvMkU4BYOA.md
new file mode 100644
index 0000000000000000000000000000000000000000..65867f84066728471b295cd28088d8b587baa37e
--- /dev/null
+++ b/human_reviews/YvMkU4BYOA.md
@@ -0,0 +1,181 @@
+## Human Reviewer 1
+
+### Summary
+The paper introduces XBIC, a modification of the Bayesian Information Criterion for discrete Bayesian network learning. XBIC adjusts BIC’s complexity penalty using edge-specific Shapley attribution values computed from per-node classifiers (using XGBoost). The idea is that when a candidate parent variable contributes strongly to predicting its child, the BIC penalty for including that edge is softened. The authors claim this helps orient edges within Markov equivalence classes. The method is evaluated on ten benchmark discrete networks (6–76 nodes) with synthetic data, compared to standard BIC hill-climbing, PC, and GES.
+
+### Strengths
+1. Interesting empirical motivation.
+The paper identifies a real problem: standard BIC scoring can sometimes underperform on discrete networks when local variable interactions are strong but sparsely represented. The attempt to incorporate model-based feature attribution (SHAP) into a scoring criterion is conceptually novel and could inspire follow-up research.
+2. Clear experimental setup.
+The evaluation uses well-known benchmark networks (Asia, Child, Alarm, Hailfinder, etc.) from the bnlearn repository, which allows for some reproducibility and comparability of results.
+3. Potential for cross-pollination with machine learning methods.
+Integrating XGBoost-based attribution measures into causal-structure scoring is a creative idea that could, with further development and theoretical grounding, suggest ways to combine predictive modeling and causal discovery frameworks.
+
+### Weaknesses
+1. Unreliable benchmarking and unfair baselines.
+The paper reports that GES “did not finish within seven days” on networks of 56–76 variables, which is inconsistent with known implementations (e.g., Tetrad, bnlearn) that complete such tasks in seconds. This strongly suggests an inefficient or incorrect implementation. As a result, the comparative runtime and performance claims are not credible.
+2. Lack of methodological clarity.
+The XBIC algorithm is never presented in a self-contained form. There is no pseudocode, clear procedural description, or specification of how the SHAP-weighted penalty integrates into the search process. This makes it impossible to reproduce or verify the reported results.
+3. Weak theoretical grounding.
+The proposed modification of BIC is heuristic. The claim that XBIC “preserves consistency” is asserted without proof, and no argument is given that the SHAP-weighted penalty yields correct model selection under standard assumptions. The theoretical contribution is therefore minimal.
+4. Excessive computational cost.
+Each node-level model requires an XGBoost and SHAP computation, resulting in orders-of-magnitude higher runtime than standard BIC or GES. The paper acknowledges this overhead but does not justify it in terms of improved accuracy or scalability.
+5. Limited and potentially biased empirical evaluation.
+Experiments are confined to small and medium discrete networks and omit widely used baselines such as MMHC, FGES with standard caching, and more recent hybrid or score-based methods. The evaluation also uses incomplete DAGs (from PC and GES) without orientation repair, which biases the results in favor of XBIC.
+6. Overstated claims.
+The paper repeatedly asserts that XBIC “outperforms GES and PC” and that GES is impractical for moderately large networks. Given the evidence, these claims are not supported. The method is an exploratory heuristic, not a practical or theoretically justified replacement for established algorithms.
+7. Presentation issues.
+The exposition is uneven: the technical content is embedded in prose, with critical steps scattered across sections. Key ideas (e.g., why SHAP values should adjust BIC penalties) are described only qualitatively, and notation is inconsistently introduced.
+
+### Questions
+1. GES runtime discrepancy.
+The paper reports that GES “did not finish within seven days” on networks with 56–76 variables. Could the authors clarify exactly which implementation was used (e.g., Tetrad, bnlearn, or a custom version), whether score caching was enabled, and if family scores were recomputed at every iteration? Since standard implementations complete these same benchmarks in seconds, such details are critical to understanding whether the reported runtime reflects algorithmic limitations or configuration choices.
+2. Algorithmic specification.
+Algorithm 2 outlines a hill-climbing framework for structure learning with XBIC, but several key steps remain underspecified. Could the authors define precisely how the SHAP-weighted penalty modifies the BIC score, whether SHAP values are recomputed or reused after each graph modification, and how local score caching is handled? These aspects are necessary to reproduce the results and to evaluate the claimed runtime overhead.
+3. Fairness of baseline evaluation.
+For PC and GES, the paper states that undirected edges were randomly oriented before computing F-scores. Random completions can introduce orientation noise and systematically penalize these methods. Would the authors consider evaluating on essential graphs (CPDAGs) or providing separate metrics for adjacency and orientation accuracy? Clarifying this would make the comparisons more interpretable.
+4. Theoretical justification.
+Section 4.3 claims that XBIC “remains asymptotically consistent.” Could the authors specify under what assumptions this holds—e.g., whether the SHAP-weighted penalty satisfies score equivalence and decomposability—and provide at least a proof sketch or argument? Without these conditions, it is unclear how XBIC retains the statistical guarantees of standard BIC.
+5. Scalability claims.
+The paper characterizes XBIC as “large-scale” and “dimension-adaptive,” yet all benchmarks involve fewer than 100 variables. Could the authors clarify whether “large-scale” refers to theoretical complexity, sample-size adaptation, or empirical scalability? If they expect the method to scale to hundreds or thousands of nodes, some runtime or complexity analysis would be helpful.
+6. Interpretability of SHAP weighting.
+The proposed use of SHAP values as an adaptive regularizer is intriguing but not theoretically motivated. Could the authors provide intuition or formal reasoning showing why this weighting should improve orientation or structure accuracy beyond empirical observation? For example, is the weighting expected to approximate a sparsity-inducing prior or adjust for variable importance bias?
+7. Practical trade-offs.
+Because each node-level model involves XGBoost training and SHAP evaluation, XBIC appears substantially more expensive than conventional score-based methods. Could the authors discuss concrete settings where this cost is justified—e.g., small, high-noise discrete datasets—or whether approximate SHAP computations or parallelization could mitigate runtime? Quantifying the trade-off would clarify XBIC’s practical niche.
+8. Additional baselines.
+Since all datasets are discrete bnlearn networks, it would be informative to compare XBIC against modern discrete score-based algorithms such as BOSS (Andrews et al., 2023) or GRaSP, which achieve strong accuracy and scalability on the same benchmarks. Such comparisons would help determine whether XBIC’s reported improvements arise from the scoring function itself or from implementation differences in the search procedure.
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes XBIC, a BIC-style score that down-weights the model complexity penalty using edge-level “directional evidence” derived from TreeSHAP attributions of per-node classifiers. The search remains standard hill-climbing, but the BIC penalty is scaled by (Eqs. 2–3). Experiments on 10 discrete BN benchmarks and seven sample-size regimes report average oriented-edge F1 gains over BIC/PC/GES.
+
+### Strengths
+1. The paper clear frames the Markov-equivalence orientation problem and a “drop-in” modification to a familiar score.
+2. The paper proposes a Transparent algorithmic pipeline aiming to solve the problem (per-node XGBoost → TreeSHAP aggregation → hill-climbing with XBIC).
+3. The paper's algorithm shows average improvements (e.g., +5.6% F1 vs. BIC overall for w=2; +20.9% vs. PC) compared to traditional methods.
+
+### Weaknesses
+1. Runtime overhead is severe. Runtimes are orders of magnitude larger than BIC/PC (e.g., Asia: 0.39s BIC vs. 74.78s XBIC; Win95pts: 75.33s vs. 2139.27s), which materially limits practical use.
+
+2. All data are generated from canonical bnlearn BNs; there are no real-world observational datasets with accepted ground-truth DAGs or interventional verification. Orientation is assessed mainly via directed-edge F1 after forcing DAGs, rather than CPDAG-aware metrics.
+
+3. The headline improvements average absolute +0.04 F1 vs. BIC (w=2). Per-dataset tables show several regimes with negligible or negative deltas and sensitivity to w. The paper itself notes small-sample regimes where XBIC effectively reduces to BIC (few confident predictions).
+
+4. Evaluation design likely favors the proposed method. PDAG completion by random orientation: For baselines that output CPDAGs (e.g., PC), the paper randomly orients undirected edges to form a DAG before directed-edge scoring. This can artificially depress baseline precision/recall on directed edges. More appropriate is CPDAG-aware metrics or reporting “correctly oriented compelled edges.” XBIC enjoys heavy per-node tuning (Optuna over many XGBoost hyperparameters) while there is no evidence that comparable hyperparameter sweeps were performed for the baselines (e.g., PC test selection, GES score variants).
+
+5. The complexity term is multiplied by exp(w·SHAP(G)). Beyond a brief “bounded SHAP” remark, no conditions are proven under which SHAP(G) remains bounded or leads to asymptotically correct orientations; the consistency discussion is qualitative and hinges on assumptions not verified empirically.
+
+### Questions
+1. Can you add real-data case studies (with partial ground truth or interventional checks) and an ablation on the base learner (e.g., LightGBM/CatBoost) and the confidence threshold 𝜏?
+2. Can you provide CPDAG-level metrics (e.g., on compelled edges) to fairly assess PC/constraint methods without random DAG completion?
+3. Please report validation protocol for selecting w (global constant vs. per-dataset tuning).
+4. How sensitive are results to the absolute-value choice in Eq. (3)? What happens if signs are retained or if you contrast Φ̄_{j→i} vs. Φ̄_{i→j}?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper presents a novel score based causal discovery approach for purely discrete data. The paper compares against other score based methods and reports improvements in relatively small datasets.
+
+### Strengths
+The paper is nice and easy to read, the visualizations are pleasant to the eye and it is clearly communicated what is done and what the approach can do.
+
+### Weaknesses
+Interestingly enough the provided link leads to an anonymous repo which is then empty. Not sure if that is on purpose.
+
+In recent years amortized approaches similar to prior fitted networks have been very popular and are probably SOTA approaches for causal structure learning [1,2] or cause effect estimation [3] with many concurrent works at the same time (i just provide pointers from which it would be easy to get find the others). It is unclear to me why the amortized causal discovery methods should not be a valid baseline here and why they should not beat the proposed approach by a wide margin in the empirical studies.
+
+Beyond that the comparisons with GES or PC are basically very old baselines and seem very selective.
+
+[1] Ke, Nan Rosemary, et al. "Learning to induce causal structure." arXiv preprint arXiv:2204.04875 (2022).
+[2] Lorch, Lars, et al. "Amortized inference for causal structure learning." Advances in Neural Information Processing Systems 35 (2022): 13104-13118.
+[3] Ma, Yuchen, et al. "Foundation Models for Causal Inference via Prior-Data Fitted Networks." arXiv preprint arXiv:2506.10914 (2025).
+
+### Questions
+See weaknesses.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces XBIC, a method to learn the structure of causal graphs. XBIC uses a classifier to predict the value of nodes given the other nodes, computes a Shapley value, and then augments the traditional BIC score with the Shapley value to more accurately compute causal graphs using a hill-climbing/iterative method for constructing the graph.
+Empirical results are provided on small discrete Bayesian networks showing that XBIC generally achieves better results than the competing methods.
+
+### Strengths
++ The proposed method is relatively clearly described and well motivated.
++ The empirical results seem to demonstrate the superiority of XBIC compared to PC and GES.
++ The available code and results are a good contribution to open science.
+
+### Weaknesses
++ The comparisons in Section 4.3 are all done with respect to PC and GES, which are relatively old algorithms in the field of causal discovery. I am not very familiar with this discrete setting, so I can't point to algorithms that should be compared to in 2025. However it seems there should be others that it could be compared to, such as an MCMC-based approach.
++ The presentation is not very polished. In particular, the graphs in Figure 2 have their label cut off in the first two columns. Much of the space is taken up by large graphs that could be made smaller.
++ It is not clear to me whether the significance of this work is sufficient and appropriate to be accepted at ICLR. In terms of the novelty, the application is relatively limited to discrete small graphs, the actual application utility of these graphs is relatively limited in practical terms. Secondly, the venue fit is very good. ICLR is specifically a venue about deep learning and representation learning, which this work does neither of. The work uses a more classical iterative method, which doesn't use any representation learning. I think a venue such as AISTATS or KDD might be more appropriate for this work.
+
+### Questions
++ Are there any more recent algorithms that the proposed approach can be compared to?
++ Can the authors elaborate on their contributions and why they are a good fit for the conference?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/ZF0xRAdsuY.md b/human_reviews/ZF0xRAdsuY.md
new file mode 100644
index 0000000000000000000000000000000000000000..19c2fea08a3f90c3a17997f565eeac9d8effb62b
--- /dev/null
+++ b/human_reviews/ZF0xRAdsuY.md
@@ -0,0 +1,164 @@
+## Human Reviewer 1
+
+### Summary
+The authors study the tradeoff between generalization and identification through a notion of finite semantic resolution. They support their theory through a variety of convincing empirics in both a toy neural network and real-world models.
+
+### Strengths
+The paper is very well written overall. The exposition is clear, precise, and convincing. The theory is impressively predictive of both synthetic and real-world empirics. The central role of semantic resolution and its influence on the generalization/identification makes for a very compelling story. Well done overall!
+
+### Weaknesses
+See Questions below.
+
+### Questions
+For your empirics with the toy neural network model, do you have an idea why the model seems to learn a linearly decaying distance function? Since it sounds like the similarity task employed a conventional softmax output / cross-entropy loss, it seems like the natural distance function would be exponentially decaying?
+
+You mention that increasing the decay rate in exponential distance will increase both generalization and identification. In your experiments with Transformers (which presumably employ an exponential distance hard-coded in softmax attention), did you find that increasing the decay rate boosts generalization and identification accordingly? Based on your prescriptions, to optimally employ these models, should we always increase decay rate at test time for maximal performance?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+10
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes that neural systems with finite semantic resolution face a fundamental tradeoff between generalization (correctly judging similarity between different inputs) and identification (distinguishing exact inputs). The authors derive closed-form Pareto curves characterizing this tradeoff for systems that compare inputs via a decaying similarity function, showing that performance lies on a universal frontier independent of input space geometry. They extend the theory to cases with noise and multiple items, predicting a sharp $1/n$ capacity collapse in multi-input settings. They also provide extensive empirical evidence that semantic resolution acts as a general information constraint in complex systems
+
+### Strengths
+1. The central tradeoff (Thm 1) is formally derived under clear assumptions about similarity decay and finite resolution. The analytical Pareto frontier is a nice contribution: mathematically precise, easy to reason about, and interpretable in terms of task accuracy.
+
+2. The empirical sections demonstrate that real-world models qualitatively follow the predicted tradeoff curves
+
+3. this work links the G-I tradeoff to well-known cognitive constraints like binding failures, generalization gradients, and working memory, providing a cohesive narrative.
+
+### Weaknesses
+1. The core tradeoff is derived assuming specific forms of similarity decay and decision rules. Would the authors elaborate how universal or sensitive their conclusion is to the choice of decay function? In Discussion, the authors refer to “finite-resolution similarity” as a universal constraint, suggesting that the existence of the tradeoff is robust, even if the exact shape of the curve depends on the similarity decay. It is unclear whether in those larger models, the similarity function follows the linear decay or takes a different shape.
+
+### Questions
+Is there an optimal distance function? the paper motivates its choice of decaying similarity functions using Shepard’s law, stating that generalization should decay with distance. Prior work (e.g., Sims, 2018) has shown that such generalization gradients follow from efficient coding via rate-distortion theory. Would you clarify whether the similarity function is intended to model a learned or designed encoding independently of such optimization?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper investigates the tradeoff between representational fidelity and distinctness under "finite semantic resolution". It shows that if a model’s similarity function has finite “semantic resolution” ε, then its accuracy on generalization tasks (p_S) and on identification tasks (p_I) must lie on a universal Pareto front.
+
+If a model's embedding/similarity has a finite-resolution "floor", we should expect identification to drop as one pushes for broader generalization, and vice versa. Handling n simultaneous items suffers a sharp ∼1/n collapse in identification capacity; i.e., multi-object reasoning should not scale linearly just by adding parameters.
+One can choose ε (via architecture, temperature, or thresholding) to target the sweet spot where p_S is maximized (roughly when the “similarity ball” covers half the space).
+
+In short, the paper provides a simple geometry+noise model one can use to set thresholds, pick temperatures, and anticipate how adding more items or pushing for “similarity-aware” training will impact identification.
+
+### Strengths
+Comprehensive background section with helpful literature review.
+
+The authors take the time to carefully explain their setup, accompanying notation with helpful illustrative examples.
+
+Authors tested both toy (allowing for theoretical analysis) and realistic models (allowing for confirmation at scale).
+
+Text is well-written, figures are clear, elegant, and helpful.
+
+Code is provided showing how to reproduce the results and figures used the paper.
+
+### Weaknesses
+1. As mentioned by the authors in Limitations subsection, compositional representations and hierarchy were outside the scope of the study. Adding a small pilot on a compositional task to show if/why the current theory breaks would strengthen the paper.
+
+
+__Minor points__:
+
+2. The concept of “semantic resolution” feels somewhat over-introduced. Mathematically, it appears equivalent to a kernel scale or bandwidth that simply controls how similarity decays with distance. While the term is evocative and may carry intuitive meaning across domains, its use risks adding unnecessary jargon. I suggest that the authors clarify whether “semantic resolution” represents a genuinely new construct (i.e., beyond a kernel bandwidth) or simply reinterprets that familiar notion in "semantic" terms. A short comparison or restatement using standard terminology would make the paper easier to follow for readers from machine learning backgrounds.
+
+3. Although there is nothing technically wrong with the abstract, it is very dense and hard to unpack on a first read. The authors could make it a bit lighter in order to appeal to a broader, non-expert audience. For example, by simplifying a few long sentences and highlighting the main contribution more explicitly rather than embedding it deep within the paragraph.
+
+Typos:
+- Please fix the m-dashes in line 84.
+- and [an] additional one (line 97).
+- maximal unncertain[ty] (line 158).
+- m-dash in line 189.
+- m-dash in line 457.
+- m-dashes in lines 464--465.
+- please fix hyphen in line 481.
+
+### Questions
+How is "semantic resolution" estimated in practice, and does its value depend on how the embeddings are scaled or normalized? That’s important because, otherwise, "semantic resolution" might just be a unit-dependent artefact rather than a stable, interpretable quantity.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The authors derive a theory for how a representation (for constrained resolutions) trades off between generalization and identification, a long known phenomenon from the cognitive science literature. In particular, this theory implies a Pareto frontier between generalization and identification performance. They empirically demonstrate that ReLU networks navigate such a Pareto frontier and find similar performance in a CNN finetuned on a mixture of an identification and generalization task. Finally, they show that LLMs and VLMs both show evidence of a finite resolution, a key assumption of their theory.
+
+### Strengths
+This manuscript provides a well articulated contribution to the field, formalizing a tradeoff that had previously been empirically observed. The theory is well-presented and I think the ReLU experiments in particular provide helpful support for the existence of the noted tradeoff. I appreciated the detailed contextualization of this present work in the field. Finally, the paper is generally well-written and the figures are well-designed. Below are some additional parts of the paper I particularly liked:
+
+- The equations (3) and (4) are simply and immediately make the tradeoff intuitive.
+- I think it's very interesting that the ReLU networks show some emergent evidence of this tradeoff even though they are only trained on the similarity task, not the identification task.
+- Figure 4 demonstrates a good match between their (modified) theory and empirical observations
+- Their Proposition 1 demonstrates that this theory can extend beyond the (somewhat minimal) binary similarity measure case.
+- The detailed explanation of the different regimes and Fig. 2 are very helpful.
+
+### Weaknesses
+As noted above, I liked this paper. My primary concern is that the experiments in section 5 provide rather limited evidence of this tradeoff. Your suggestion (and the suggestion of the prior literature) that this is a universal tradeoff would suggest that it should be apparent even in models that weren't trained explicitly on the identification and similarity task you're measuring. The fact that models become better at identification/similarity as you're varying the parameter prioritizing one or the other loss function is maybe not particularly surprising (though I agree that it demonstrates that there is a tradeoff between those two functions). Moreover, the LLM and VLM experiments don't demonstrate a tradeoff but rather just show that resolution is limited overall. I thought the ReLU experiment was more compelling in this direction, as it trained the ReLU networks only on the similarity task and still demonstrated this emergent tradeoff over different epochs. Unless I'm missing something, I think acknowledging this limitation would be important.
+
+### Questions
+- Would you expect an emergent tradeoff between identification and similarity performance if you only trained the CNN on either the identification or similarity task over different epochs (akin to the ReLU network case)?
+- Similarly, would you expect such a tradeoff e.g. in different pretrained models?
+- Could you discuss how your insights would apply to e.g. the tasks examined in Campbell et al. (2024)?
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/ZZFNyU3ZSo.md b/human_reviews/ZZFNyU3ZSo.md
new file mode 100644
index 0000000000000000000000000000000000000000..8411eff8ae2dfbfa51fedaf1ad8cbc007f9f3770
--- /dev/null
+++ b/human_reviews/ZZFNyU3ZSo.md
@@ -0,0 +1,119 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes UniMoD (Efficient Unified Multimodal Transformers with Mixture-of-Depths) to address the training efficiency issue in existing unified multimodal transformers. A unified multimodal transformer is a model that integrates and processes both generation and understanding tasks within a single model. The observed training inefficiency stems from token redundancy. The paper empirically demonstrated that token redundancy varies across task type, modality, and layer, and proposed UniMoD as a solution. UniMoD addresses the limitations of applying MoD uniformly to unified multimodal transformers by selectively pruning tokens based on task and layer.
+
+### Strengths
+S1. The paper analyzes the existing token redundancy problem and reveals that it varies across tasks and layers. Based on this finding, it proposes a task-aware token pruning method. The causality between the problem and the proposed modules is clear, and its effectiveness is verified.
+
+S2. The proposed method (UniMoD) experimentally shows that it reduces the computational cost of existing methods while maintaining comparable or even superior performance. For example, it reduces training FLOPs by 15% in Show-o and 40% in Emu3.
+
+S3. The paper considers different modeling approaches of transformers (autoregressive/diffusion) for comparison and verifies the generalizability of UniMoD across various settings.
+
+### Weaknesses
+W1. Only 2 main models (Show-o and Emu3) are thoroughly evaluated: 1) Show-o: 1.4B params, diffusion + autoregressive,
+2) Emu3: 8.5B params, fully autoregressive. Related work mentions MoMa (Lin et al., 2024b) which also integrates MoE/MoD into Chameleon (a unified model). A more direct comparison or clearer differentiation would be beneficial, although the paper notes MoMa lacked results on generation/most understanding tasks.
+
+W2. The method relies on calculating ARank values beforehand to select layers and estimate pruning ratios. This requires running inference on a base model with sample data, adding a preprocessing step and computational overhead before the efficient training can begin.
+
+W3. The pruning ratios appear to be determined statically based on the initial ARank analysis, rather than being learned dynamically during training (though this is acknowledged as a limitation). Performance might be sensitive to the accuracy of this initial estimation.
+
+W4. Although the paper shows a reduction in FLOPs due to the introduction of the proposed UniMoD, it does not provide an analysis of the exact increase in the number of parameters or the computational overhead caused by introducing the method.
+
+### Questions
+Q1. How much computational overhead does the initial ARank calculation add, and how sensitive are the final results to the number and type of samples used for this calculation?
+
+Q2. Could the task-specific routers or pruning ratios be learned dynamically during training, perhaps conditioned on the task type or layer depth, rather than being fixed based on pre-computed ARank values?
+
+Q3. The proposed method was validated by applying pruning to layers with low ARank values. However, it is necessary to show the contrasting effect when pruning is applied to layers with high ARank values. This experiment would clearly demonstrate the causality between ARank, token redundancy, and the proposed method's effectiveness.
+
+Q4. A clear explanation is needed regarding the experiment parameters (pruning layer location and ratio). For example, in the Show-o model's MMU and T2I scaling and pruning ratio selection, were these decisions entirely based on ARank, or were other heuristic criteria also involved?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces UniMoD, an efficient framework for training unified multimodal transformers. It addresses the problem of token redundancy and high computational cost in unified transformers that handle both generation and understanding tasks. By conducting an empirical analysis on attention weights, layer importance, and task interactions, the authors observe that redundancy patterns vary across tasks and layers. UniMoD proposes a task-aware Mixture-of-Depths (MoD) mechanism, equipping each task with its own router to prune redundant tokens adaptively. Experiments on Show-o and Emu3 demonstrate a 15–40% reduction in FLOPs with maintained or improved performance. Moreover, the method generalizes to diffusion-based models such as PixArt and DiT, showing broad applicability.
+
+### Strengths
+1. Novelty and Relevance: The paper tackles the important issue of computational efficiency in unified multimodal transformers, introducing a novel task-aware MoD mechanism.
+2. Comprehensive Analysis: The empirical studies (attention weights, ARank, layer importance, task competition) are thorough and well-motivated.
+3. General Applicability: The approach works for both autoregressive and diffusion-based models.
+
+### Weaknesses
+1. Limited Task Diversity: Only two unified models (Show-o, Emu3) are tested; results on larger or more diverse multimodal architectures would strengthen claims.
+2. Ablation Details: Although some ablation studies are provided, the analysis of router behavior (e.g., routing distributions, token importance dynamics) could be more in-depth.
+3. Limited Discussion on Trade-offs: The paper could elaborate more on how pruning ratios affect different modalities’ representations and downstream tasks.
+4. Theoretical Insight: The method is largely empirical; theoretical guarantees or formal efficiency bounds would further solidify its contribution.
+
+### Questions
+1. How does UniMoD handle potential conflicts when multiple tasks share overlapping token spaces?
+2. How sensitive is performance to router capacity and ARank threshold selection?
+3. Does task-aware pruning affect cross-modal alignment quality?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper introduces UniMoD, a task-aware token pruning method engineered to enhance the efficiency of training unified multimodal transformers that share parameters for both generation and understanding tasks. This work finds that directly applying standard token pruning techniques like MoD leads to suboptimal results because token redundancy varies significantly depending on the specific task and across different transformer layers. Proposed UniMoD addresses this issue by implementing a task-aware approach—it converts dense transformer blocks into specialized MoD blocks and employs a separate router for each task, allowing the pruning process to adapt to the distinct token redundancies of each task. Furthermore, the proposed method uses the ARank metric to quantitatively assess token redundancy and determine layer-specific pruning ratios. UniMoD demonstrates significant gains in efficiency, reducing training FLOPs by approximately 15% in the Show-o model, while successfully maintaining or enhancing performance across various benchmarks.
+
+### Strengths
+- The paper is generally well written. Especially, the clarity of the problem formulation and literature review effectively sets up this novel approach.
+- The paper successfully grounds its motivation in a strong empirical analysis by directly examining attention weight patterns across various tasks and modalities in unified transformers, identifying significant differences in redundancy based on task and layer.
+- This observation, combined with the evaluation of layer importance and token redundancy using the ARank metric, effectively explores the potential for task-aware token pruning.
+
+### Weaknesses
+- While the detailed analysis is provided, some findings, such as the observation that attention weight patterns differ between tasks (Observation 1) or that token redundancy differs based on modeling methods (Observation 3), might be viewed as expected or previously implied in related transformer studies.
+- Similarly, the finding that early layers are more critical for the final outcome (Observation 2) is a phenomenon often observed in general deep neural networks.
+- Although the application of these analyses specifically to token pruning is novel, the paper's reliance on specific results from the Show-o model (e.g., Observation 5) suggests the specific pattern findings might be somewhat specialized to certain model architectures
+
+### Questions
+- What is the performance outcome when the highly task-specific pruning strategy (UniMoD uses task-specific routers and capacities) is applied to a similar task, rather than the exact task it was optimized for?
+- Given that the UniMoD achieves a significantly greater FLOPs reduction in the larger Emu3 model (40%) compared to the Show-o model (15%), why is the approach more effective in reducing computation in Emu3, especially when the empirical analysis of attention showed a more pronounced divergence in redundancy patterns in Show-o and JanusFlow?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/a2XmC7rHIU.md b/human_reviews/a2XmC7rHIU.md
new file mode 100644
index 0000000000000000000000000000000000000000..a5d4dbfee9035489099000d2c701edf083e2977a
--- /dev/null
+++ b/human_reviews/a2XmC7rHIU.md
@@ -0,0 +1,199 @@
+## Human Reviewer 1
+
+### Summary
+LLMs excel at math final-answer tasks (e.g., AIME) but struggle with rigorous proof generation—critical for research/theorem proving. Existing proof benchmarks are small, outdated, or closed, leaving 3 key questions unaddressed: (1) natural vs. formal proof gap, (2) final-answer vs. proof correctness link, (3) best-of-n strategy impact. Several findings are elaborated in the paper:
+- Natural language proofs outperform formal ones (GEMINI-2.5-PRO solves 4x more PutnamBench problems than top formal model).
+- Final-answer accuracy is not equal to proof correctness (O3 loses ~30% accuracy when proofs are required, vs. 8% for GEMINI-2.5-PRO).
+- Best-of-n pairwise ranking boosts accuracy significantly.
+- LLMs match humans in proof judging.
+- LLMs rarely admit uncertainty and struggle to judge their own work.
+
+### Strengths
+- Rigorous proof generation/evaluation pipeline.
+- First large, open, human-validated LLM-proof dataset (OPC).
+- High-Quality Data: Expert judges (IMO background) ensure reliable labels; diverse, competition-sourced problems.
+- Actionable Insights: Quantifies critical gaps (natural vs. formal proofs) and validates best-of-n strategies.
+- Openness: OPC and code are open-sourced; transparent methodology for reproducibility. I think this will be a good resource in theorem proving area.
+
+### Weaknesses
+- Narrow Problem Scope: Most problems are high school-level (IMO/USAMO); few undergraduate/research-level tasks.
+- Outdated Provers: GROK-4/GPT-5 are only used as judges, not prover, which misses latest LLM proof capabilities.
+- Lack of analysis of why formal theorem provers lag behind natural language counterparts. This is an interesting comparison, it would be great if there can be some deeper analysis.
+
+### Questions
+See weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+In this work the authors curated a new dataset called the open proof corpus, which contains 5,062 LLM-generated proofs of 1,010 distinct problems from math contests. These proofs are all incorporated with manual reviews from human experts. They have also done a lot of researches around this dataset, especially on the proof judging capabilities of different LLMs.
+
+### Strengths
+* This work answers a lot of interesting questions in this area.
+
+* This paper provides a comprehensive study on the proof evaluation capability of LLM, fulfilled an important blank in the research of AI4Math.
+
+### Weaknesses
+* The evaluation of proof judgement may be heavily dependent on the judger’s prompt or criteria, so neither the judging accuracy nor the alignment with human graders are accurate enough.
+
+* This work did not cover problems from advanced math or research-level math, where proof problems weigh more importance than math competitions. This limits the contribution of OPC.
+
+* The creation of this OPC heavily depends on manual annotation from experts, which limits the scalability of this work.
+
+### Questions
+* How are the results in Table 2 (Section 5.2) evaluated actually? I did not find any further descriptions of the settings of these experiments around this chapter. If the performance of LLM judges is evaluated by comparing with human labels, then are they directly comparable with human baselines?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper presents large-scale dataset of high-difficulty math problems which includes both correct/incorrect proofs and profound annotations which are represented via human-expert judgements. Based on the dataset, some exciting insights are proposed.
+
+### Strengths
+1. A fairly large dataset of math problems is proposed, with its core value lying in expert annotations. Furthermore, both correct and incorrect proofs are included. It is quite unusual for modern math benchmarks and datasets to contain such annotations, making this contribution valuable to the community.
+2. Some exciting empirical insights are provided. While I do not feel that the exploration of performance differences between natural and formal proof generation is particularly valuable, since the performance degradation in formal setups is largely expected, the examples illustrating the discrepancy between final-answer correctness and proof correctness are important.
+3. The performance of the fine-tuned, moderately sized LLM judge is impressive.
+
+### Weaknesses
+It might be somewhat subjective, but the presentation quality is low, even considering the number of figures included in the manuscript. While it is understandable that the authors tend to include more content rather than placing all figures in the Appendix, the text in each section is highly granular. I think this weakness could be addressed by rethinking the overall structure. The main focus should be on the dataset itself, which is valuable, while the incremental contributions in the form of interesting observations should either be explored more deeply or moved to the Appendix.
+
+### Questions
+1. Can you clarify the guidelines used by judges for borderline proofs? How are omissions or shortcuts treated when deciding correctness?
+2. Could you provide more insight into common errors when models give correct answers but incorrect proofs? Are these mostly algebraic mistakes, logical gaps, or misapplied theorems?
+3. Does this discrepancy vary systematically by problem type or difficulty?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces the Open Proof Corpus (OPC), a dataset of 5,062 LLM-generated mathematical proofs across 1,010 problems from prestigious competitions (IMO, USAMO, Putnam), each evaluated by human judges. Using the OPC, the authors demonstrate: (1) informal proof generation outperforms formal by 4x on PutnamBench, (2) significant gaps exist between final-answer accuracy and proof correctness (especially for o3, dropping from 87.6% to 59.5%), and (3) ranking-based best-of-n strategies achieve 47% accuracy versus 26% pass@1. They also fine-tune an 8B model that achieves 88.1% accuracy in judging proofs, approaching GPT-5's performance.
+
+### Strengths
+- Addresses critical need: First large-scale dataset of human-evaluated LLM proofs, filling a major gap since existing benchmarks focus only on final answers (e.g., AIME, HMMT).
+- Methodology: Well-designed grading pipeline using 13 former IMO participants, clear guidelines, double-grading (90.4% agreement), and clever use of LLM-generated issue summaries to aid grading efficiency.
+- Significant empirical findings: The 4x gap between informal/formal proof generation and the divergence between answer accuracy and proof correctness are important insights. The ranking-based best-of-n showing 21% absolute improvement is practically valuable.
+- High-quality dataset design: Thoughtful splits (MathArena, PutnamBench, best-of-n, generic) enable targeted analyses while preventing test set contamination.
+
+### Weaknesses
+- Binary evaluation loses information: The "5+/7 points counts as correct" threshold is arbitrary and discards nuanced quality differences that partial credit scoring would capture.
+- Unfair formal/informal comparison: Comparing specialized formal proof models against general-purpose LLMs isn't apples-to-apples. The brief mention of Seed-Prover's 50% formal accuracy suggests the gap may be overstated.
+- Missing statistical analysis: No confidence intervals, significance tests, or error bars despite sufficient sample sizes.
+- Insufficient contamination analysis: Section C.2's comparison of "Standard" vs "Non-standard" competitions is suggestive but not conclusive. The performance differences could be explained by difficulty alone.
+
+### Questions
+- Why binary labels? Could you release the raw judge feedback to enable partial credit analysis? This would be valuable for understanding proof quality gradients.
+- Model failure modes: The observation that only 114/1700 incorrect proofs acknowledged uncertainty is striking. Could you analyze whether this varies by problem difficulty or type?
+- Formal proof training: Have you considered fine-tuning informal models on formal proof data to better understand the performance gap?
+Competition selection rationale: Was there systematic criteria for choosing these specific competitions over others (e.g., Putnam over Mathcounts)?
+- Extending beyond competitions: Have you considered including undergraduate textbook problems or research-level lemmas? What would be needed to extend OPC to these domains?
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 5
+
+### Summary
+The authors introduce a set of approximately 1000 contest math problems, drawn from existing competitions, whose LLM proof is humanly rated (binary), to be used both as an eval set and training set. They use the dataset to assess how correct the proof is compared to the (correct) final answer. The dataset, as a training dataset, is validated by fine-tuning an 8B R1-Qwen model, which is claimed to match GPT5.
+
+### Strengths
+The problem assessment pipeline is rigorous.
+
+The single fine-tuned model on OPC is a welcome addition that supports OPC.
+
+The dataset size is sufficiently large to allow finetuning.
+
+### Weaknesses
+- misleading statement: my biggest issue is that apparently not the full dataset was shared, as only USAMO and BMOSL seem to appear in the zipped supplementary (and also for these, not the full dataset? seems quite small), contrary to the claim: "We have included our dataset in the supplementary material, along with detailed descriptions of our methodology and experimental setup to ensure full reproducibility."
+
+- ambiguous claim: "The OPC was specifically designed for broad applicability and downstream usage in proof generation research and is the first to include a substantial number of correct, LLM-generated solutions to problems from prestigious mathematics competitions such as the USAMO and IMO."
+As it reads, it is unclear if the authors claim to be the first ever to create such a dataset, or the first to create such a dataset in the more narrow domain of contest math problems (only the latter is correct). Since this is from the **appendix**, I would urge the authors to rewrite.
+
+- missed important prior literature: Probably the first paper on "pure" autograding was https://arxiv.org/abs/2406.10268, and there is (rather similar) follow-up work by these authors https://arxiv.org/html/2502.13337v1 (it would be good to include this in the related work section). But much earlier work exists implicitly in ML even if not marked as autograding, e.g. in 2024 https://arxiv.org/abs/2402.11111 a more detailed methodology for "LMs as evaluators" was derived (see also more papers on prior such literature), or **2021** in the well-known paper https://arxiv.org/abs/2110.14168, which used what they called "verifiers" All this points to an existing body of work on proof judging that is missing from this paper.
+
+- Wrong claim: "Data contamination poses only a minor risk for proof judging, since generated proofs cannot be present in the training data."
+I am unsure on what information this claim rests - who is to say that the main LLM companies don't exactly do this? They have their LLMs generate outputs on contest-level problems to ensure that their LLMs can potently act as judges, which can be of use for subsequent pipelines that the companies might use, or in case the public wants to use LLMs as judges, and companies are interested in having their LLMs perform well on publicly known problems. This seems entirely plausible to me, so I believe this statement should be retracted.
+
+- in terms of the results, with some exceptions, the paper seems to reinforce known folklore beliefs about how models performance on mathematics.
+
+- Almost no details are given about fine-tuning on R1 Qwen3-8B. In particular, rivalling the performance on GPT-5 is a dubious claim (presumably a heldout subset of OPC was used for this on which R1 Qwen was not train? details are missing)
+
+### Questions
+N/A
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/a3sRspQ62b.md b/human_reviews/a3sRspQ62b.md
new file mode 100644
index 0000000000000000000000000000000000000000..e84e43a19dd1cc12cf68c3ae9620ed3e6aa7b703
--- /dev/null
+++ b/human_reviews/a3sRspQ62b.md
@@ -0,0 +1,174 @@
+## Human Reviewer 1
+
+### Summary
+The authors introduce a flow matching model to generate fluid flow simulations. Their model has two branches, one operating spatially and the other in the frequency space. They also use a pretrained masked autoencoder to improve the generation of high-frequency features.
+
+### Strengths
+- The authors deal specifically with the spectral aspects of fluid flows
+- The experimental section investigates a variety of questions against many baselines
+
+### Weaknesses
+- The core contribution is about generative modeling for turbulence, but the paper only evaluates on 2D data where turbulence does not exist, see [1]. Furthermore, [1] is a closely related work that should be discussed.
+- The samples shown in the appendix all have an unphysical 8x8 block structure
+
+[1] Lienen, M., Lüdke, D., Hansen-Palmus, J., & Günnemann, S. (2023). From zero to turbulence: Generative modeling for 3d flow simulation.
+
+### Questions
+- How many steps did you roll out for Table 1?
+- Line 160: Can you elaborate on this analysis that shows that all state-of-the-art generative models exhibit this?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+FourierFlow is a frequency-aware generative framework designed to address the key challenges of spectral bias and common-mode noise that limit the fidelity of diffusion and flow-matching models in turbulence modeling.
+
+The model enhances the representation of high-frequency turbulent structures—vortices, shocks, shear layers—while maintaining global coherence and physical consistency, outperforming existing state-of-the-art generative and surrogate PDE models.
+
+### Strengths
+The paper presents the first formal spectral-bias analysis of diffusion and flow-matching models in the context of physical PDEs.
+
+### Weaknesses
+Limited Physical Grounding Beyond Frequency Domain
+Heavy Reliance on Learned Frequency Priors
+Computational and Memory Overhead
+Conceptual Ambiguity: Frequency is not from Physics, it is hidden
+
+### Questions
+Would a different diffusion process (e.g., cosine schedule) alter the bias?
+How do these frequencies relate to physical length scales in turbulent flows?
+How do we know FourierFlow’s high-frequency components correspond to real turbulence (not learned artifacts)?
+why we need this? (the simulation for the case if using CFD is going to be cheap.)
+What is the new knowledge in this paper?
+
+What can we learn from the conclusion? "In this paper, we have introduced FourierFlow, a frequency-aware generative framework that addresses key limitations in turbulence modeling, such as spectral bias and common-mode noise. Through a novel dual-branch architecture and surrogate feature alignment, it achieves superior accuracy, physical consistency, and generalization across complex fluid dynamics tasks."
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+FourierFlow proposes a new flow-based generative model for turbulence modelling. It builds upon three methods proposed in previous works to improve the modelling capacity with regards to high frequency features of turbulent flows.
+
+### Strengths
+- The paper is well written and experiments as well as appendix seem polished and extensive.
+- Tackles a meaningful problem: high-frequency fidelity is crucial in turbulence modelling.
+- Methodology is presented concisely and sound.
+- Each component is motivated empirically through an ablation study.
+- Provided code for reproducibility.
+
+### Weaknesses
+My main critique for the proposed method is the motivation and argumentation for the addition of three previously proposed components.
+
+Intuitively I understand the problem of high frequency features. However, the actual arguments and motivations for specific components of the proposed method remain a bit inprecise to me. They mix arguments against diffusion models with arguments for some general components:
+
+- Empirical spectral bias: It seems to me like your approach now fits lower frequency features worse. Not clear to me if we do not just trade-off low for high frequency components.
+- Theoretic standpoint on spectral bias: Even though diffusion and in my opinion also flow matching models favour low and high frequency features at different "timepoints", it does not necessarily imply a problem. In fact, this can actually help the modelling of the different features, arguably a reason why they perform very well on many tasks. Note for example that within the modelling of complex systems there exist a lot of models which also explicitly separate those levels in hierarchical models.
+- Further, the theoretic results are limited in generality. Theorem 4.1 is intuitive and essentially follows from assuming a power-law spectrum for x̂_0(ω) and that diffusion noise variance is frequency-independent. The novelty of this theorem is limited: the argument is not surprising and relies on strong assumptions (power law PSD) that may not hold uniformly across datasets. The authors should (i) explicitly state assumptions and the practical implications/limits and (ii) discuss whether/why flow-matching (deterministic) avoids the same fate (they use flow matching in the method but Theorem is about diffusion).
+- Only arguing about energy preservation, but not showing or constraining it. Would be nice to actually constrain model to physical properties.
+- Missing statistical significance test for results.
+- The paper emphasizes that flow matching yields faster inference, but does not provide wall-clock comparisons (inference time), or ODE solver steps for flow matching vs iterative diffusion baselines.
+
+Overall, my main concern is the actual motivation and novelty of the proposed method, where the main contribution is to combine 3 pre-existing components to show some improvement.
+
+Minor points:
+- Figure 1 different y scales make the figure unintuitive. Fixed scale would actually let their method stand out more.
+- The paper is very crammed, even breaking the ICLR template (e.g. 5.3 section heading, a lot of negative v-space all over the paper).
+- Space hacking let to figure 6 appearing after figure 8.
+
+### Questions
+- Could you report physics-preserving losses. Turbulence modelling values conservation/energy spectra, can you report spectral energy preservation metrics or discuss whether FourierFlow preserves invariants (kinetic energy, divergence-free constraints for incompressible flow)
+- Can you show how your approach actually improves the spectral bias more explicitly?
+- Explain to me the reason for a flow matching vs diffusion model. I.e., the components could be presented for many other methods.
+- Why do the authors only compare to a surrogate model in the generalization experiment?
+- The proposed MAE alignment and FM branch are somewhat heavy solutions. Why did you not consider other approaches to mitigate spectral bias (e.g., spectral weighting in loss, explicit high-frequency loss terms, or directly upweighting residual spectrum in training)?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper has been submitted before and has been extensively provided with feedback. As the authors have chosen to resubmit this paper with only marginal changes (by pdfdiff analysis) I permit myself to recycle my old review. I apologise if this causes minor inconsistencies. But it seems inadequate to me that a paper that despite the work that previous referees have put into their reviews, essentially nothing has changed.
+
+The authors propose an architecture for learning turbulent flow with data generated from numerical solutions of the Navier-Stokes equation as given by some examples picked from The Well and PDEbench. The authors here combine flow matching as a generative model with their architecture for the underlying neural network. The two key components are described as follows. On the one hand there is one branch that is based on the differential attention formalism proposed in [12]. In this branch there is a modeled separation of of low and high frequencies, called attention 1 and 2. The information from these branches is then added and weighted with a parameter. On the other hand, there is a fourier mixing branch network which has FNO-like layers where there is one weight transformation for all modes which is scaled up with some polynomial of the (norm of) the wave vector. Both streams are added up with a learnable, adaptive weighting. In their theoretical analysis, the authors claim there is a fundamental problem for diffusion architectures to reproduce small spatial details of fluid configurations. To substantiate this claim, the authors analyze the signal to noise ratio of the spatial image over the time of noising in the forward direction of a diffusion process. As the applied noise is 'spatially white' all modes are hit by noise in Fourier space of the same size. The authors then assume that the initial conditions fulfill a power law decay in frequency space, which is reasonable for turbulent flow. The signal to noise ratio for each mode can now be computed explicitly and it is shown that the suppressed - higher - spatial modes get a high signal to noise ration earlier. The authors propose, that their flow matching based approach with the one branch that can resolve high frequencies better due to the upscaling of weight sensitivity with the mode vector. While this is not supported with a theoretical analysis, the authors offer three empirical studies for the compressible Navier Stokes equation with different mach numbers. The main evaluation is on initial conditions from the training data set, while the generalization to unseen initial data is a separate study for different values of the viscosity. In their evaluation based on residuals (MSE) and the maximum error, the authors find in almost all cases an reduced MSE compared to various baselines. The authors also provide an ablation study on the effectiveness of their single modules.
+
+### Strengths
++ The paper suggests a new architecture for flow matching (FM) based generation of solutions to the Navier Stokes equation
+ + The numerical evaluation gives visually decent results and the comparison with a large number of other operator learning frameworks shows mostly superior results.
+ + The code will be released in the case of acceptance making the results reproducible
+
+### Weaknesses
+My main criticism against the paper is the way it is prepared. It absolutely lacks precision and puts wordy descriptions in the place of clear scientific arguments supported by facts. To give some examples: There are words like "external representation space" in the section 3.3 where the meaning is never explained, in the context of physics the authors speak about "semantically meaningful [...] features" or the "common mode signal" which's Wikipaedia definition is clearly (completely) out of context, finally calling the rot operator spatial differential is unnecessarily complicated. I believe that this paper has a considerable and respectable technical core (see strengths). It is a pity that the preparation is so poor.
+ Not unrelated, Theorem 1 and the supporting lemmas does not really contribute to the understanding why the model proposed by the authors should be more effective that a diffusion based generative model. The authors argue that in the diffusion noising, high frequencies modes are noised faster (if one accepts the spectral power law for the initial conditions). But that of course does not imply that these modes will be badely reconstructed during generation, but just that the backward process generates them last, which is just as it supposed to be. To make a theoretical problem out of this in my eyes is unfounded. The mathematical argument itself (not the interpretation) is ok and is based on standard arguments of the Itô calculus. The mathematical originality of this part is low.
+ The notation in the theoretical part and Appendix F is very hard to follow. The authors should concisely define the spatial Fourier transform with which they work at least in the appendix and explain their discretization to FFT. Lemmas 1-3 are standard and stuff from stochastic analysis and should rather be in the appendix.
+ In the evaluation, a residual based analysis in a chaotic setting over longer time spans makes little sense. It would be good if this evaluation could be complemented by comparing statistical flow features like power spectra of spatial and temporal correlations, which would be a good additional to the motivation of the paper.
+ The most general version of PDE in the preliminary part is unnecessary, the explanation of the flow matching approach is largely incomprehensible and in many details inaccurate.
+
+### Questions
+* Figure 3 to me is very confusing. Where is the VideoViT in this figure - does the middle module represent the architecture of the learned FM vector field? Like the rest of the presentation, this figure should be cleaned up.
+* Transformers work on a dimension reduced representation anyhow - why do you think that the high frequencies can't be inserted by the VAE part of something like stable diffusion? The GAN loss functions on small patches would be a natural place to improve small structures via a multiresolution approach like in pic2pixHD. Where do you see a serious problem in following this route?
+* Why the generalization over initial conditions is not more in the focus? This is the real application case. How is the initial condition generated in this case differs from those in the training set. Are they just not included in the training set or are they generated with another statistical law?
+* How would you generalize your approach to non periodic boundary conditions?
+
+* Why didn't you work with the feedback from four (!) previous referees and rewrite your paper?
+
+### Soundness
+3
+
+### Presentation
+1
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/a4S1nQay3b.md b/human_reviews/a4S1nQay3b.md
new file mode 100644
index 0000000000000000000000000000000000000000..a58b1eb06349f845f8059ee79bd147afde46a7f1
--- /dev/null
+++ b/human_reviews/a4S1nQay3b.md
@@ -0,0 +1,145 @@
+## Human Reviewer 1
+
+### Summary
+This paper addresses noisy correspondence in real-world multi-view clustering. The authors identify category-level mismatch and sample-level mismatch. The paper proposes a generative framework based on maximum likelihood estimation and optimized via an Expectation-Maximization algorithm. The framework infers a soft correspondence distribution in the E-step (guided by GMM-based marginals and optimal transport) and refines embeddings in the M-step. Experiments on four benchmark datasets demonstrate superior robustness under various noisy settings, including up to 80% mismatch rates.
+
+### Strengths
+1)The paper presents a thoughtful formulation by explicitly distinguishing two realistic types of noisy correspondence in multi-view data, namely, category-level mismatch and sample-level mismatch, providing a solid rationale for why existing contrastive MVC methods fall short under such conditions.
+2)Instead of relying on pairwise contrastive learning, the authors shift to a generative modeling perspective, leveraging an Expectation-Maximization algorithm to uncover latent correspondences. This allows them to model complex many-to-many, probabilistic associations between samples across views.
+3)The method demonstrates consistently strong performance across diverse datasets and under various levels of noise and corruption.
+
+### Weaknesses
+1)The related work section does not adequately cover more recent progress, especially in areas concerning missing modalities and partially view-aligned representation learning.
+2)Although warm-start and momentum updates are mentioned as strategies to stabilize training, the paper does not provide convergence curve analyses.
+3)The paper does not include comparisons with recent methods that also employ optimal transport for multi-view clustering. Incorporating an experimental comparison with approaches such as “PROTOCOL: Partial Optimal Transport-enhanced Contrastive Learning for Imbalanced Multi-view Clustering” would strengthen the work.
+
+### Questions
+1)Could the authors provide a more comprehensive comparison with recent advances on incomplete multi-view and PVP problems, especially those published post 2022?
+2)Can the authors provide quantitative or visual evidence (e.g., convergence plots) to support the stability and convergence behavior of CorreGen’s EM algorithm?
+3)How does CorreGen compare with other OT-based multi-view methods in terms of robustness?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper addresses the challenge of noisy correspondence (NC) in multi-view clustering (MVC), which arises when data collected from the web contains misaligned or unmatchable samples. The authors distinguish two harmful types of NC: 1) Category-level mismatch: samples from the same class treated as negative; 2) Sample-level mismatch: mispaired or unalignable samples. To tackle this, they propose CorreGen, a generative EM-based framework that formulates correspondence discovery as maximum likelihood estimation. In the E-step, they estimate soft correspondence distributions using optimal transport constrained by GMM-guided marginals and augmented with virtual samples to absorb outliers. In the M-step, they update embeddings to maximize expected log-likelihood using these inferred correspondences. Extensive experiments on synthetic and real datasets show strong robustness with substantial improvements under both category- and sample-level mismatches.
+
+### Strengths
+1. This paper shifts from discriminative pairwise reweighting/realignment to a principled maximum likelihood framework, reducing reliance on noisy pre-defined pairs.
+2. The proposed method consistently outperforms state-of-the-art baselines under varying mismatch and corruption rates, especially on the noisy UMPC-Food101 dataset.
+
+### Weaknesses
+1. While the EM-based optimal transport is elegant, they may introduce computational overhead when applied to very large-scale or high-dimensional datasets. The paper would benefit from a more detailed runtime analysis.
+2. The paper should clarify why the posterior weight $Q_{ij}$ is defined as $\frac{\boldsymbol{P}_{ij}^*}{\boldsymbol{p}_i^{(v_1)}}$ in Equation (17).
+3. In Equation (17), the matrix ${Q}$ appears to serve as a re-alignment signal that guides the model's learning. It would be informative to analyze what happens if ${Q}$ is replaced with an identity matrix, and how would performance change if ${Q}$ were substituted with the ground-truth correspondence matrix?
+4. A minor presentation issue: on page 2, the text refers to Figure 2, but it seems this should be Figure 1.
+
+### Questions
+Please refers to the weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+Multi-view clustering (MVC) leverages cross-view consistency but suffers from noisy correspondence (NC), including category-level mismatch and sample-level mismatch. This paper proposes a generative framework, CorreGen, which formulates NC learning as maximum likelihood estimation of underlying cross-view correspondences, solved via an Expectation-Maximization (EM) algorithm. In the E-step, soft correspondence distributions are inferred using GMM-guided marginals to down-weight noisy samples; in the M-step, the embedding network is updated to maximize expected log-likelihood. Extensive experiments on synthetic and real-world datasets demonstrate superior robustness.
+
+### Strengths
+1. This paper introduces a generative framework that reduces reliance on noisy predefined pairs by modeling latent correspondences, enabling more robust semantic structure learning.
+2. This method effectively handles both category-level and sample-level mismatch via GMM-guided marginals and virtual samples, outperforming baselines on complex datasets.
+3. Ablation studies show stable performance across varying curve-shaping parameters and noise rates, reducing hyperparameter tuning burden.
+
+### Weaknesses
+1. This method may incur higher computational cost due to EM iterations, GMM fitting, and optimal transport computations, potentially limiting scalability to very large datasets.
+2. This method relies on GMM assumptions, which may fail to model non-Gaussian embedding distributions, leading to suboptimal marginal estimates in complex data.
+3. The experiments focus on two-view settings, limiting generalization to multi-view scenarios where correspondence inference becomes more complex.
+
+### Questions
+Please refer to the Weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper tackles noisy correspondence in multi-view clustering, arguing that real-world, web-crawled pairs contain (i) category-level mismatches (same class but treated as negatives) and (ii) sample-level mismatches including both alignable mispairs and truly unalignable samples. It proposes a generative objective that maximizes the (marginal) joint likelihood over latent cross-view correspondences and optimizes it with an EM procedure: the E-step estimates a soft, many-to-many coupling via entropy-regularized optimal transport subject to GMM-guided marginals and augmented with a virtual node to absorb outliers; the M-step maximizes a weighted log-likelihood implemented with similarity-normalized scores, unifying InfoNCE as a special case.
+
+### Strengths
+The paper treats cross-view links as latent variables and optimizing a likelihood bound provides a clean alternative to ad-hoc pair reweighting strategy. The design explicitly handles category-level relations (many-to-many couplings) and unalignable samples (virtual node), which prior methods largely ignore.
+
+Experiments on Scene15, LandUse21, Caltech101, and UMPC-Food101 show consistent gains under varying mismatch and corruption rates; visualizations indicate the learned posteriors approach class-level ground truth during training.
+
+### Weaknesses
+1.The proposed method depends on several manually tuned hyperparameters, such as the virtual mass $\rho$ and the number of Sinkhorn iterations. The paper lacks a sensitivity analysis showing how performance varies with these values.
+
+2.While the paper qualitatively visualizes the estimated correspondences in Figure 3, it does not provide any statistics about the intrinsic mismatch level of the datasets used. Without knowing the original category- or sample-level mismatch rate, it is difficult to judge how challenging the benchmark setting is.
+
+3.The introduced EM-style framework, particularly the Sinkhorn-based E-step with virtual-node augmentation, likely incurs non-trivial computational overhead. The paper does not report training time or GPU memory consumption.
+
+### Questions
+1.Please provide a sensitivity analysis for $\rho$ and the number of Sinkhorn iterations?
+
+2.Please report the original category-level mismatch rate in the used datasets.
+
+3.What is the computational cost of the EM procedure? Specifically, how do the training time and GPU memory usage compare with those of DIVIDE?
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/a7Qa4CcHak.md b/human_reviews/a7Qa4CcHak.md
new file mode 100644
index 0000000000000000000000000000000000000000..61e6bb6f306dfe3b151dda1407c738c73fa3889d
--- /dev/null
+++ b/human_reviews/a7Qa4CcHak.md
@@ -0,0 +1,116 @@
+## Human Reviewer 1
+
+### Summary
+The work contributes a new benchmark, with 74 tasks across a range of domains, that test realistic terminal-based software capability. Each task is reasonably carefully reviewed and has undergone several quality checks. While there are no human baselines of these tasks, the creation process involves time and difficulty estimates. The agents tested perform reasonably well, providing confidence that there is some signal, while also not being close to saturation.
+
+### Strengths
+Overall, the paper is exceptionally strong:
+* It is well-presented, with clear information about the tasks, the task creation process, and agent testing methodology.
+* The tasks are well-reviewed, lending confidence that the benchmark is of high quality.
+* A large number of agents were tested
+* Failure analysis provides valuable information.
+
+### Weaknesses
+The paper would have been stronger if:
+* we had human baselines (i.e. an expert or junior engineer was asked to complete the task in the same conditions), instead of time estimates as these might over/under estimate the actual time required (famously this is quite hard to accurately do).
+
+### Questions
+* What happened to the other tasks from the 229 that were not selected? Did they not pass quality checks?
+* Did you verify that the LLM judge that was used in failure analysis was accurate by manually verifying a small sample?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces Terminal_Bench, a benchmark for evaluating AI agents' capabilities in terminal environments. The authors build a test suite containing various real-world terminal tasks, spanning file operations, system administration, and development workflows. Through systematic experiments on mainstream language models, the work reveals that even state-of-the-art models exhibit significant limitations when handling complex terminal interactions.
+
+### Strengths
+1. **Comprehensive task coverage**: The benchmark spans multiple levels from basic file operations to complex system configurations, offering good representativeness of real-world scenarios
+2. **Automated evaluation pipeline**: Establishes a fairly complete automated testing and scoring infrastructure, reducing subjectivity in assessment
+3. **Thorough empirical validation**: Systematic comparison across multiple mainstream models effectively reveals current technological limitations
+4. **Strong reproducibility**: Detailed task descriptions and evaluation scripts facilitate adoption and extension by other researchers
+5. **Insightful error analysis**: Categorizes and discusses failure modes, providing useful guidance for future improvements
+
+### Weaknesses
+1. **Limited diversity in certain categories**: While covering multiple task types, some categories (network configuration, distributed system management) have sparse representation, potentially failing to capture the full spectrum of real-world usage
+2. **Narrow evaluation metrics**: Predominantly relies on binary pass/fail assessment, lacking consideration of execution efficiency, code quality, and other important dimensions. The scoring mechanism for partial completion is insufficiently granular
+3. **Static environment limitations**: Testing environments are relatively static, not adequately simulating dynamic environmental changes, concurrent operations, and other complexities found in production settings
+4. **Insufficient treatment of user interaction**: Terminal operations frequently require user confirmation and interaction, but the benchmark's design doesn't adequately address this aspect
+5. **Security considerations absent**: The paper lacks substantive discussion of security risks associated with AI agents executing terminal commands, and doesn't propose corresponding safety mechanisms
+
+### Questions
+1. For complex multi-step tasks with state dependencies, how do you ensure evaluation fairness? Different execution paths may achieve the same goal - how does your system handle this variability?
+2. What was the methodology for task selection and design? Was there user research or expert consultation to validate task representativeness?
+3. For failed executions, does the evaluation system credit partially correct steps? How do you quantify degrees of "near-correctness"?
+4. Real-world terminal environments vary across system versions and configurations - how does the benchmark account for this environmental diversity?
+5. Have you considered extending the benchmark to include security testing, such as detecting whether models might execute potentially dangerous commands?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper introduces a collection of 74 new agentic tasks that can be completed entirely using the terminal. The tasks were built using a crowdsourcing process with multiple steps of verification and testing. The performance of 18 different models across six different agent scaffoldings were tested on the tasks, showing a maximum average resolution rate of slightly below 35%. An error analysis was performed at both the trajectory and command level, showing that models display a balanced variety of errors when completing tasks, not indicating any single important bottleneck.
+
+### Strengths
+1. Thorough testing and verification process throughout task development, including algorithmic, LLM-powered, and human review.
+1. Builds on standards/checklists from prior work, like MAST and ABC
+1. Used a collaborative crowd sourcing process to build a relatively large number of diverse and difficulty tasks
+1. Developing a simple, shared scaffold as a reasonable point of comparison
+1. Detailed error analysis
+
+### Weaknesses
+1. It's possible that the comparisons would be more fair if the best/preferred scaffold for each agent were used rather than a shared scaffold (which might still favor one model over others).
+1. An LLM judge for error analysis was chosen based on agreement with a human annotator on 20 traces, but there are 74 tasks. I think this leaves open a large possibility of sampling bias.
+1. "Most agents attempt tasks for less than 20 minutes." This seems very limiting, when most of the tasks are estimated to take humans at least an hour. Models are known to suffer from early stopping in agent tasks, it seems this was not controlled for.
+1. The tasks are all public, limiting the longevity of this benchmark
+
+### Questions
+1. "We find that command failures calling executables that are not installed or not in PATH are the most frequent." Are you sure that the environments or agent scaffolds don't simply have bugs? Are the environments missing standard linux packages? Did you have humans try to complete the tasks in the same environment as the agents?
+1. Have you collected data from agents while attempting to limit their tendency to submit early?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/b8TlYh6PN6.md b/human_reviews/b8TlYh6PN6.md
new file mode 100644
index 0000000000000000000000000000000000000000..6a5506678b0e514fbc9530a1729e3b81aee5d0cc
--- /dev/null
+++ b/human_reviews/b8TlYh6PN6.md
@@ -0,0 +1,180 @@
+## Human Reviewer 1
+
+### Summary
+In this paper, the authors propose a characterization of equivalence classes of causal graphs with both latent variables and cycles. To this end, they propose a novel graphical tool of edge ranks (which is dual to path ranks), which makes results cleaner and more intuitive than path ranks do. They further provide a straightforward algorithm to traverse this set of distributionally equivalent causal models.
+
+### Strengths
+1. The classification of equivalence classes of causal models with cycles and latent variables is an important topic.
+2. Edge ranks seem to be a very useful tool for future results.
+3. Despite the complexity of the topic, the paper is clearly written and examples are well-chosen.
+
+### Weaknesses
+1. It would be nice to have a little more description of the algorithm in the main paper, especially the decomposition of global rank constraints into local rank queries.
+2. It is unclear how this method works when we do not have an OICA oracle, and in particular when we don't know the number of latent variables.
+
+### Questions
+1. Your paper currently focuses on minimal DGs, where minimality is measured in terms of numbers of variables. However, one might also be interested in minimally cyclic graphs, at the cost of more latent factors. Is there any way to establish results to determine equivalence classes of such graphs?
+2. Your paper currently makes LiNG assumptions. However, low-dimensional bottlenecks should still be noticeable in linear Gaussian, or in nonlinear settings. What prevents us from generalizing the approach to these cases?
+3. Given this classification of equivalence classes, is there any hope (and need) for a GES-like algorithm to learn the (equivalence class of) the causal graph? Would this provide any benefit?
+4. Would it be possible to explain more about why certain graphs are not equivalent? For example, in the example in section C.2, Figure 5, one could think that the graph $G_1$, but with the edge $X_3 \rightarrow X_1$ removed (equivalently, $G_10$ with the edge $X_3 \rightarrow X_2$ removed) might lie in the same equivalence class.
+
+As a side note, it appears that your sections D.1-D.3 and their contents are currently struggling a little with formatting.
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper studies a fundamental problem in causal discovery: the distributional equivalence criterian of causal structure from observational data when both latent confounders and cycles are allowed, in linear non-Gaussian models. It provides graphical characterization of equivalence class under arbitrary latent structures and loops via path and edge rank constraints. It also provides graphical transformation rules to traverse within equivalence class. An algorithm glvLiNG is proposed for structure learning from data.
+
+### Strengths
+- This work is the first equivalence characterization for causal models with latent variables and cycles, providing the foundation needed for future assumption-free latent causal discovery.
+- It introduces the edge rank constraints, a new local graphical tool complementing path-rank constraints.
+- It provides clean connection between algebraic rank constraints and graph operations.
+- The examples provided in Figure 1-3 are helpful for readers to understand the concepts.
+
+### Weaknesses
+See questions.
+
+### Questions
+- Do the geometric equivalence results in this paper, such as Lemma 3, 5, 6, generalize beyond LiNG models? It seems they also hold in general models.
+- What is formally the faithfulness assumption in Line 440-441 for the proposed algorithm to work?
+- Alhough improving on Lemma 3 from paths to edges, it is still hard to check equivalence via Lemma 5, as one needs to verify for all sets of variables $Z,Y$. The condition is is still not as clean as simply stating something like "same skeleton + v-structures".
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper provides a transformational characterization of observationally equivalent latent linear nonGaussian (possibly cyclyc) directed graphical models, including helpful tools (edge ranks, and an interactive equivalence class explorer) along the way, as well as an ICA-based learning algorithm.
+I think this is a solid paper considering the foundation it provides for future work and the interesting mathematics it uses, but it perhaps falls short in terms of potential for direct impact, due to its theoretical focus.
+
+### Strengths
+- addresses an important open problem
+- provides a rigorous, elegant solution
+- overall well written, including helpful examples
+
+### Weaknesses
+The main weakness is the lack of immediate applicability to real problems. While the paper makes great progress on an extremely challenging problem, it remains unclear to me (and unsupported by the experiments) how useful the current implementation actually is. If the authors could provide a real-data application and show meaningful practical interpretation of the (accurately) learned equivalence class, I would change my mind about this.
+
+### Questions
+The main reason I didn't rate the paper higher is because of limited (direct) potential impact. I think this is inline with how the authors present the work in the paper (e.g., presenting the glvLiNG algorithm as a "proof of concept" rather than a practical tool for causal discovery from real data), but nevertheless answers to the following questions could lead me to increase my rating:
+1. Do the authors have any real-data applications in mind, where the learned equivalence classes are sufficiently informative? I'm thinking of how a CPDAG can still be relatively useful in practice, while it's less clear how useful one of these equivalence classes would be.
+2. Any ideas for an interpretable representative a given equivalance class (analogous to a CPDAG)?
+3. Any ideas for how to refine these to interventional equivalence classes?
+
+The following are suggestions I hope the authors will find useful but that don't require a response and don't affect my rating:
+1. Without providing finite sample guarantees, it doesn't really make sense to talk about "identifying" a graph from data---the graph is rather identified from (parameters of) the data-generating distribution. In many but not all instances, the paper correctly uses "recover" (and "estimate" or "learn" would also be appropriate words) for this case, but there are still some places where "identify" is used incorrectly (including L015, L027, L064).
+2. L211: "share the same latent variables" seems too strong; can the authors justify the step from the same *number* of latents in the previous sentence to the same latent variables here? or use more precise language here if nothing more is meant.
+writing: L238 ("is" -> "are", or "constraints" -> "constraint"), L297 ("to the" -> "in"), L346 ("in edges term" -> "in terms of edge ranks").
+3. reference formatting: ensure all words (e.g., 'Bayesian') are capitalized correctly; use the correct characters in Dénes Kőnig's name.
+4. Consider adding additional citations, e.g., to work on transformational characterizations for other settings [1], [2], [3], [4], [5], and identifiability in nonparametric latent measurement models (without graphical assumptions beyond acyclicity) [6], [7], [8].
+5. Remove the "if not all" part in the second sentence of the abstract. Papers [6], [7], and [8] (and I imagine others) don't make structural assumptions---they just use minimality, which is essentially the author's irreducibility but for identifiability up to nonparametric independence model equivalence rather than up to LiNG distributional equivalence.
+
+[1] Zhang, J., & Spirtes, P. (2005). A transformational characterization of Markov equivalence for directed acyclic graphs with latent variables. In Proceedings of the Twenty-First Conference on Uncertainty in Artificial Intelligence (pp. 667-674).
+
+[2] Chickering, D. M. (1995). A Transformational Characterization of Equivalent Bayesian Network Structures. In UAI (pp. 87-98).
+
+[3] Johnson, J., & Semnani, P. (2025). Characteristic Imsets for Cyclic Linear Causal Models and the Chickering Ideal. arXiv preprint arXiv:2506.13407.
+
+[4] Markham, A., Deligeorgaki, D., Misra, P., & Solus, L. (2022). A transformational characterization of unconditionally equivalent Bayesian Networks. In International Conference on Probabilistic Graphical Models (pp. 109-120). PMLR.
+
+[5] Améndola, C., Boege, T., Hollering, B., & Misra, P. (2025). Structural Identifiability of Graphical Continuous Lyapunov Models. arXiv preprint arXiv:2510.04985.
+
+[6] Markham, A., & Grosse-Wentrup, M. (2020). Measurement dependence inducing latent causal models. In Conference on Uncertainty in Artificial Intelligence (pp. 590-599). PMLR.
+
+[7] Jiang, Y., & Aragam, B. (2023). Learning nonparametric latent causal graphs with unknown interventions. Advances in Neural Information Processing Systems, 36, 60468-60513.
+
+[8] Pearl, J. and Verma, T. (1995). A theory of inferred causation. In Studies in Logic and the Foundations of Mathematics, volume 134, pages 789–811. Elsevier.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper studies characterization and learning of distributional equivalence classes in linear non-Gaussian models with latent confounding and cycles. It first gives a graphical condition under which a latent variable is not reducible and a reduction procedure to the irreducible form. It then relates the rank of submatrices of the mixing matrix $A$ to path rank (a global property that is costly to check) and introduces a local notion, edge rank, proving a duality between the two. Using edge ranks, the paper provides a graphical characterization of equivalence (Theorem 2) and a way to traverse the class. The learning pipeline runs OICA to estimate columns of $A$ up to scaling/permutation and then applies the graphical operations to recover the equivalence class.
+
+### Strengths
+- A local graphical notion (edge rank) that makes rank constraints easier to verify.
+
+- A full graphical characterization of distributional equivalence with latent variables and cycles.
+
+- A constructive traversal algorithm for the equivalence class with the admissible moves.
+
+### Weaknesses
+- As mentioned by the authors, the learning algorithm relies on solving the OICA problem, which, in general, is hard to solve with existing methods. That being said, the result of characterizing the equivalence class has a theoretical contribution regardless of the learning algorithm.
+
+- The evaluation mostly counts class sizes and compares to a MILP baseline for rank-realization under oracle ranks. There is no empirical test in the finite sample case.
+
+### Questions
+- For linear non-Gaussian cyclic models without latent confounding, (Sharifian et al. 2025) characterized the distributional equivalence class and showed it corresponds to perfect matchings in a bipartite graph. It would be valuable to check whether your paper’s equivalence conditions (via edge rank) reduce to theirs in the no-latent case.
+
+- In the acyclic setting with latent confounding, (Salehkaleybar et al. 2020) gave graphical conditions when a model is irreducible. It would be good to clarify that your irreducibility condition matches the one in there in acyclic models.
+
+- Given only a recovered $A$ from OICA, how should we test the coloop condition in Lemma 7? How can we have a robust solution in the finite sample case?
+
+- What is the computational complexity of the two phases in the learning algorithm?
+
+Sharifian, E., Salehkaleybar, S., & Kiyavash, N. (2025). Near-Optimal Experiment Design in Linear Non-Gaussian Cyclic Models. arXiv:2509.21423.
+
+Salehkaleybar, S., Ghassami, A., Kiyavash, N., & Zhang, K. (2020). Learning Linear Non-Gaussian Causal Models in the Presence of Latent Variables. Journal of Machine Learning Research, 21(39): 1–24.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/bxZUPQbvp0.md b/human_reviews/bxZUPQbvp0.md
new file mode 100644
index 0000000000000000000000000000000000000000..3301b2b87e1d1ec26aa9073c0739b45dcd0c7cb8
--- /dev/null
+++ b/human_reviews/bxZUPQbvp0.md
@@ -0,0 +1,197 @@
+## Human Reviewer 1
+
+### Summary
+```
+I used LLM to fix the grammar of the Official Review, but all opinions are my own
+```
+This paper introduces EconAgentBench, a benchmark designed to evaluate large language models (LLMs) such as GPT-5 and Gemini in economic decision-making scenarios. The benchmark focuses on “unknown environments,” where models are not given explicit rules upfront and must learn through exploration and trial-and-error.
+
+While the work is technically solid—it builds a benchmark, runs experiments, and presents results—it lacks clear innovation or strong justification of practical utility. The contribution feels more like a completed academic exercise than a truly impactful advancement. I would lean toward rejecting the paper.
+
+### Strengths
+The idea of assessing LLMs in economic contexts is interesting and timely.
+
+### Weaknesses
+The claimed challenge of “unknown environments” is not compelling. Having agents learn rules through exploration is already common in RL testing; this work merely places such setups in an economic context without deeper innovation on modeling real-world uncertainty (e.g., policy shifts, competition, market shocks).
+
+### Questions
+1. The current scenarios (procurement, scheduling, pricing) are overly simplified. Each task isolates one factor—procurement ignores supplier delays and product quality issues; pricing ignores competition and marketing effects—making the benchmark unrealistic for genuine enterprise applications.
+
+2. The evaluation of GPT-5, Gemini, etc., stops at surface-level score comparisons (“who performs better on which task”) without deeper analysis of why. Are performance differences due to reasoning, planning, or exploration behavior? A comparative study of model strategies would strengthen the findings.
+
+3. The difficulty scaling (simple / medium / hard) is defined by quantity expansion (e.g., 12 products → 100 products), which is a very rudimentary approach. True economic difficulty should involve multi-objective trade-offs—balancing cost, delivery time, and quality—not just scaling task size.
+
+4. The claimed applications are vague. For enterprises, the paper doesn’t specify actionable thresholds—what score means a model is deployable, or in what contexts (small vs. large firms). For researchers, there’s no clear roadmap of future extensions—missing domains like inventory control or supply-chain coordination, or failure modes like memorization-based performance rather than genuine exploration.
+
+5. The writing is overly academic, filled with heavy formalism (e.g., POMDPs, nested logit demand models) while glossing over key insights and takeaways. Long sections describe tool interfaces in detail without articulating what problem they actually solve. This makes the paper feel dense, repetitive, and lacking focus on its core contribution.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+In this paper, the authors present EconAgentBench. They build three small synthetic simulation environments—procurement, scheduling, and pricing—each defined by a known mathematical model and an “optimal” solution that can be computed exactly. They then let various LLMs act as agents in these environments and evaluate their performance (doing so by letting the LLMs call a few predefined tools, functions that read environment data or take an action, for 100 turns). The agents can also write and read notes to themselves between turns. In procurement, the agent buys bundles of goods within a budget to maximize a known utility function; in scheduling, it matches workers to tasks and gets back “blocking pairs” as feedback; in pricing, it sets prices over time in a demand model where price sensitivity changes each period.
+
+### Strengths
+- The authors are pursuing an important and, in my opinion, understudied research direction. The intersection of LLMs and economics is a fruitful area where more work is needed.
+- Benchmark design is methodically implemented: three clearly defined optimization problems with computable optima, synthetic instance generation, and adjustable difficulty scaling are all implemented carefully and transparently.
+- The paper provides complete reproducibility—appendices specify every parameter, generation rule, and prompt, along with cost and timeline details. For benchmarking work, this rigor is valuable.
+- The use of tool-based multi-turn interaction gives a nice lightweight and extensible protocol; any LLM with function-calling capability can be plugged in, which makes the benchmark easily usable by others.
+
+### Weaknesses
+- Lacks substantive novelty. The work offers no new algorithmic, theoretical, or methodological contribution. It aggregates three synthetic optimization problems and frames them as economic benchmarks, without proposing new scientific questions or techniques. This in my opinion does not meet ICLR’s bar for conceptual advancement.
+- The introduction presents the paper as advancing “reasoning in economic environments,” but the experiments feel more like testing in-context trial-and-error on small synthetic tasks. The framing somewhat overreaches what is actually achieved. Seems pretty similar to prior work on ICL and LLMs in economic environments (see https://arxiv.org/abs/2410.08345)
+- Further along lines of the above, some claims in this paper feel somewhat poorly substantiated and not demonstrating a sound expertise in this field. Examples include:
+ - "Organizations increasingly delegate parts of their economic decision-making to LLMs." - could do with more justification
+ - "As the capacity for LLMs to use increasingly large sets of tools advances, one could imagine augmenting LLM agents with additional tools, e.g., a (secure) Python interpreter." - it is extremely common these days for LLMs to use code interpreter tools, and has been for a while (it's offered as a default over OpenAI API). This claim feels somewhat outdated.
+- Poor engagement with prior benchmarks. The paper neglects direct comparisons to major agent benchmarks such as vals.ai Finance Agent Bench, GAIA, etc. If not going to contribute novel methodology (e.g. post-training models to be better at economic policymaking, or producing some theory etc) that's fine, but places this paper in realm of pure benchmark papers where standards these days are high.
+- Questionable economic modeling. The pricing task uses an inconsistent profit formula dividing by the demand-sensitivity parameter, which breaks standard economic logic and may distort the difficulty and scoring of that environment.
+
+### Questions
+- Can you please check the pricing task formula? The division by alpha seems odd to me but I might be missing something.
+- In general, response to the weaknesses pointed out above.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+A suite of economic environments is proposed for evaluating LLM agents, covering canonical economic problems such as procurement, scheduling, and pricing. The environments have configurable difficulties, and a mixture of stationary and non stationary environments. While not formalised, each of the environments can be seen as a POMDP.
+
+### Strengths
+- Using environments as benchmarks rather than typical QA style datasets is an important and timely direction, and the work evaluates how agents operate in an (partially) unknown environment where they must reason under uncertainty and learn through interactions.
+
+- It's good that the benchmark is abstracted away from specific prompts or implementations, and instead operates at the environment level.
+
+- Covers stationary and non stationary settings
+
+- Automatically configurable difficulty levels
+
+- Efforts to prevent data contamination through randomisation and private information
+
+### Weaknesses
+The key weakness is the lack of a formal framing. While POMDPs are mentioned, all environments should be explicitly cast as a POMDP (or similar) to make it much clearer. The paper would significantly benefit from a consistent formal framing specifying states, actions, observations, transitions, and rewards. This would unify the three environments, clarify what information is hidden, and make uncertainty and exploration analysis more rigorous. Currently, it is quite informal, e.g. “The agent sets prices and receives feedback”.
+
+There are just two final results tables and no plots/breakdowns of temporal evolutions, despite all being run over 100 periods.
+
+Smaller weaknesses:
+- Figure 1 is the key description figure. This should be made more generic and clearer. If environments are formalised as POMDPs, this would be easier to see. Keep the figure generic, e.g. actions (tool usage), rewards/env scores, etc. Show periods and the repetition that occurs. Currently it is not very insightful.
+
+- The discussion/conclusion mentions "rich measurability". Currently this analysis in the paper is nascent (just table 3).
+
+- The impact of the notes tools should be furthered studied. This changes the state/obs space by augmenting additional info, and this would be much clearer under the POMDP formalism. Reasoning under uncertainty is mentioned, but not explored explicitly.
+
+- For each environment, a clear description of exactly how the environments prevent data contamination, e.g. the hidden and randomly initialised private info etc, should be added.
+
+See the questions in the section below for more in depth breakdown/clarifications around the weaknesses.
+
+Much smaller points:
+- In the related work section, the proposed benchmark seem to fit within the tool calling and/or game categorisations, rather than needing a seperate definition.
+- The heavy use of footnote reference style is not particularly standard in ICLR, and should be inline where possible.
+
+### Questions
+- Are the environments deterministic given the hidden/private parameters?
+
+- Every environment run is over 100 periods, what do the dynamics look like over the 100 periods? Why 100 periods? Does this give enough time to "converge"? How does the number of periods relate to the difficulty level, the level of uncertainty, etc. There is much room for improvement in this area.
+
+- In section 3.2, "Each period is conducted in a single chat session". Should this not be either "each run", or "all periods"? As I assume it means period 0..100 are all in one chat, which isn't what is currently implied by the wording. More generally, is this not saying the state is the concatenation of all previous states, in which cases the non-stationarity is questionable (see question below). This should be stated more formally.
+
+- The one non stationary environment features a predictable pattern, which makes it simpler than other non stationary environments. Is the time period included in the state/obs space here? (or written as a note?) If so, this env is essentially just stationary. Again, having the envs more clearly formulated as POMDPs would help make this explicit in the paper, as well as seeing the actual temporal evolution so we can see how this changes over time.
+
+- Do the note tools help to reduce uncertainty (e.g. my making more probable outputs, reducing variability or other)? Looking at this level of information availability overtime and the effects that have would be an insightful addition, and relate back to the POMDP, and how much is observable.
+
+- In section 3.3 - Line 164/165, "to earn a perfect score in a non-stationary environment, it suffices for the LLM agent to identify and take an optimal action once". Should this not be "stationary"?
+
+
+
+- Pricing: Why is the success metric just over the last 50 periods, not the full 100? Additionally, when comparing the first 10 periods to the final 50 periods, does changing the sensitivity parameter alpha not change the resulting profits? How can we compare periods under different alphas?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+- The authors propose a new benchmark for evaluating the performance of LLMs in 3 economics-related tasks: procurement, scheduling and pricing. Each task allows for scalable difficulty, offers the LLM specific tools and has associated metrics that can be used to gauge model performance.
+- Experimentally, the authors evaluate various LLMs including GPT-5 and Gemini 2.5 Pro on their benchmark at 3 specific difficulty levels (Basic, Medium and Hard). In particular, the paper attempts to analyze the performance of these models by examining the adaptability and exploration levels of these models.
+
+### Strengths
+- Examining the performance of LLM agents at economics-related tasks is likely to be a worthwhile endeavour given the growing prevalence and agency of LLM agents.
+- The authors test a wide variety of models, at a non-negligible cost, which are representative of frontier model capabilities.
+- The pricing task is well-motivated and a good model of a problem that someone will likely attempt to use LLMs on at some point
+
+### Weaknesses
+- For the procurement and scheduling tasks, the setup feels quite strange. In both cases, the uncertainty over effectiveness/preferences seems unrealistic given the presence of an oracle function that can evaluate proposed bundles/matching.
+ - For procurement, could such an oracle function exists without actually testing out the purchased bundles? If testing is required, the problem should be modelled in an online manner and some measure akin to regret should be evaluated.
+ - For matching, it's unrealistic to be able to know the number of blocking pairs in a matching without knowing the preferences.
+ - Maybe it would make sense to see, given the preferences, how well an LLM can discover a stable matching?
+ - The problems feel almost like the bandit setting with an underlying structure to rewards?
+- The main benefit of using LLMs for economic decision-making over optimization algorithms seems to be in cases where there is a lot of unstructured text data. In such cases, it is unlikely that the LLM will have access to well-structured tools.
+- For all tasks, it would be helpful to have better baselines to get an idea of how hard these problems are (something similar to the naive baseline mentioned in the appendix). Ideally, there would be both the performance of a simple heuristic algorithm and some notion of human performance.
+- The authors mention there is significant variation between runs but there are no error bars or indication of the variability of performance. I understand the runs are expensive (especially on frontier models) but it would be helpful to have some analysis of this effect.
+- The paper could do with a deeper comparison to existing work. While there may not be many economics-related benchmarks many of the tasks do seem more like mathematical optimization problems.
+- It feels like these tasks are evaluating more the ability of these models to infer key parameters of a model and then reason accordingly. However, in the prompts, it doesn't feel like the models are given enough information to be able to perform this inference.
+
+### Questions
+- For the pricing task, is the optimal profit computed given perfect knowledge of the varying demand? If so, can any online algorithm to reach that performance with only partial knowledge?
+- Have you analyzed how well the models perform at using the tools correctly/do they ever fail to generate well-formatted actions?
+- Are the notes used by the models?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/cSpjHOf04S.md b/human_reviews/cSpjHOf04S.md
new file mode 100644
index 0000000000000000000000000000000000000000..499437a9210e588a3a3a067c0d2f9271283267d9
--- /dev/null
+++ b/human_reviews/cSpjHOf04S.md
@@ -0,0 +1,199 @@
+## Human Reviewer 1
+
+### Summary
+The paper introduces a novel fine-tuning approach that repurposes generative models such as Stable Diffusion and Masked Autoencoders for category-agnostic instance segmentation. Despite being fine-tuned only on limited synthetic data (indoor furnishings and cars), these models exhibit strong zero-shot generalization, segmenting unseen object types and image styles -- often surpassing the heavily supervised Segment Anything Model.
+
+### Strengths
+- Demonstrates good performance on unseen object categories and visual domains despite fine-tuning on a very limited dataset.
+
+- Shows that generative models (Stable Diffusion, MAE) encode transferable perceptual grouping abilities, enabling segmentation without large-scale supervision.
+
+- Achieves competitive results to SAM with a lightweight fine-tuning procedure using fewer resources and annotated masks.
+
+### Weaknesses
+- Questionable evaluation protocols
+
+Actually, there exists an established experimental protocol for evaluating click-based segmentation methods, that implies testing on GrabCut, Berkeley, DAVIS, SBD, PascalVOC benchmarks. E.g., SimpleClick referred in the proposed paper as a baseline, reports values obtained in this benchmark. But here, the proposed method is not tested in the same setup, instead, an entirely different experimental protocol is used. Namely, SimpleClick was trained on synthetic datasets with limited number of classes and scenarios, and tested far beyond classes used for training. In such an artificial scenario, its low accuracy, otherwise suspicious, can be indeed expected -- as well as superior performance of a generalist model. When tested in the normal evaluation protocol, SimpleClick yields decent performance, though.
+
+- Using diffusion (and even SD!) for click-based segmentation is not novel
+
+This idea was exploited in the early Conditional Diffusion Network (CDNet) [1] that dates back to 2021. In CDNet, global similarity of features from clicks and potential target regions was used in a diffusion process that spreaded the predicted logits of clicks within locally connected regions. The most recent M2N2 [2] utilizes self-attention maps produced by Stable Diffusion for unsupervised and training-free approach to instance segmentation. None of these works is cited or discussed, which might make a reader to overestimate the novelty of the proposed approach.
+
+[1] Conditional Diffusion for Interactive Segmentation. Xi Chen et al. ICCV 2021.
+
+[2] Repurposing Stable Diffusion Attention for Training-Free Unsupervised Interactive Segmentation. Markus Karmann and Onay Urfalioglu. In CVPR 2025.
+
+- Results are questionable
+
+The method was evaluated against trainable SimpleClick, custom pipeline based on DINO and off-the-shelf SAM. SimpleClick were trained according to custom training procedure, which naturally inhibits concerns about whether there were properly trained -- or their potential was not unleashed due to suboptimal hyperparameters, shortened training schedule etc. DINO was again used as a part of a custom pipeline, so similar concerns are applicable. Results achieved with SD, are significantly inferior to those of SAM on medium-sized and small-sized objects in COCO, DRAM, EgoHOS and PIDRay, in other words, in almost all scenarios, which makes me doubt the practical value of the proposed approach. It seems that on real world applications, it barely could compete SAM.
+
+### Questions
+- Why not use the well known evaluation protocol for assessing quality of click (point-prompt) interactive segmentation?
+
+- Why not compare to pretrained SimpleClick but implement a custom training scheme on synthetic datasets?
+
+- Why SAM and SimpleClick are selected as beaselines? I believe there are some more powerful methods that have been released since; at least SAM2, if not digging deeper [3].
+
+[3] AdaptiveClick: Clicks-aware Transformer with Adaptive Focal Loss for Interactive Image Segmentation. Jiacheng Lin et al. In TNNLS, 2024.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper explores how generative models pretrained for image synthesis can be repurposed for perceptual organization. By finetuning Stable Diffusion and MAE with an instance coloring loss on limited object types, the models achieve strong zero-shot generalization, segmenting unseen objects with high accuracy. Remarkably, they rival or even surpass SAM on fine structures, demonstrating that generative models inherently learn transferable object grouping mechanisms without large-scale supervision.
+
+### Strengths
+1. GenSeg demonstrates that simply finetuning generative models such as Stable Diffusion can yield strong performance in category-agnostic instance segmentation.
+
+2. The paper is clearly written and easy to follow.
+
+3. GenSeg achieves SAM-level performance in certain out-of-distribution segmentation scenarios.
+
+### Weaknesses
+1. The novelty of this work is limited. Previous studies [1][2][3] have already shown that generative models can exhibit open-set segmentation capabilities without task-specific training. This paper mainly extends those ideas to category-agnostic instance segmentation.
+
+2. Methodologically, the paper lacks innovation. Finetuning generative models for segmentation is a well-established approach, and the proposed loss function is highly similar to existing techniques [4][5].
+
+[1] Generative prompt model for weakly supervised object localization[C]//Proceedings of the IEEE/CVF International Conference on Computer Vision. 2023: 6351-6361.
+
+[2] Diffumask: Synthesizing images with pixel-level annotations for semantic segmentation using diffusion models[C]//Proceedings of the IEEE/CVF International Conference on Computer Vision. 2023: 1206-1217.
+
+[3] Open-vocabulary panoptic segmentation with text-to-image diffusion models[C]//Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. 2023: 2955-2966.
+
+[4] Recurrent pixel embedding for instance grouping[C]//Proceedings of the IEEE conference on computer vision and pattern recognition. 2018: 9018-9028.
+
+[5] Efficient and accurate arbitrary-shaped text detection with pixel aggregation network[C]//Proceedings of the IEEE/CVF international conference on computer vision. 2019: 8440-8449
+
+### Questions
+The major weakness of the paper is limited novelty.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This work demonstrates that generative models such as Stable Diffusion and Masked Autoencoders (MAE) can be fine-tuned on a small set of labeled object masks to achieve general-purpose instance segmentation.
+Remarkably, the fine-tuned models exhibit strong zero-shot generalization, accurately segmenting objects of entirely unseen types and styles.
+They also produce sharper boundaries and handle fine-grained structures with notable precision, behaviors that likely stem from their generative pretraining.
+These results suggest that generative pretraining inherently encodes a grouping and compositional understanding of the visual world, enabling segmentation capabilities that are more generalizable and human-like across diverse domains.
+
+### Strengths
+### 1. Surprising zero-shot generalization and conceptual novelty:
+It is impressive that the proposed generative models exhibit strong zero-shot generalization, accurately segmenting objects of entirely unseen types and styles.
+This suggests that generative pretraining inherently encodes a grouping mechanism that transfers across categories and domains, supporting more generalizable and human-like perception.
+This is arguably the first convincing demonstration of the potential of generative segmentation models to surpass traditional discriminative approaches in terms of generalization capability.
+
+### 2. Robustness to visual perturbations:
+The models show high robustness to variations in color, illumination, and texture, indicating that their segmentation ability does not rely merely on low-level visual cues.
+This robustness highlights a deeper structural or semantic understanding learned through generative pretraining.
+
+### 3. Strong qualitative performance:
+Qualitative visualizations (see pages 7–9) show coherent reconstructions and smooth, well-aligned segmentation boundaries.
+The results are visually compelling and provide strong evidence for the model’s superior perceptual grouping and boundary accuracy compared to discriminative baselines.
+
+### Weaknesses
+### 1. Limited performance on small objects:
+As shown in Table 1, the proposed approach performs well on large objects but struggles significantly with small-object segmentation.
+This limitation suggests that the model’s generative priors may bias it toward capturing dominant, large-scale structures, leaving fine-scale, small instances underrepresented.
+
+### 2. Imprecise instance coloring and unclear mask extraction details:
+The color-based instance representation occasionally produces noisy or “dirty” colors, which raises concerns about the consistency and robustness of the predicted masks.
+The paper would benefit from a clearer explanation of how these colored outputs are converted into binary or instance masks, with more explicit technical detail in the Methods section.
+
+### 3. Limited extensibility to semantic or text-guided segmentation:
+Since the framework relies heavily on color-based encoding, its applicability to semantic or text-guided segmentation appears constrained.
+The authors may consider discussing how this approach could be extended to tasks requiring semantic consistency or text/image guidance, which could broaden the impact of the work in future research.
+
+### Questions
+The main concern lies in the model’s difficulty with small-object segmentation.
+Generative segmentation models, while powerful, can be somewhat uncontrollable, as it is often unclear what structures or priors the model has actually learned.
+This may explain why small or less prominent objects tend to be omitted in the predictions.
+
+Could the authors elaborate on how controllability might be improved in such generative segmentation frameworks?
+Additionally, what potential strategies do you envision for enhancing the detection and segmentation of small objects within this generative paradigm?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The authors propose a method to adapt image generation models to perform instance segmentations across diverse classes including those unseen during training. Impressive improvements over strong baselines have been shown in the paper. Image generation models are adapted to output segmentation maps in a single step by training on various image segmentation datasets with novel loss functions. Ablations and analysis is also included.
+
+### Strengths
+The performance gains are good over baselines trained on the same data. The authors also test on unseen domains such as luggage X-ray images where they observe similar trends. Qualitative comparison is very helpful to understand these claims and quite impressive. The fact that the model performs so well on unseen domains makes the contribution of the novel losses and method design strong.
+
+### Weaknesses
+According to evaluation, the Stable Diffusion variant of their model is performing the best. However this a old model and it would be good to see how the performance scales when used with recent DiT based models such as SD3 and Flux.
+
+The authors hint at part level understanding in Figure 3. It would good to perform evaluation on some part segmentation datasets [1,2] to check generalization of these models to finer granularity levels.
+
+Training is conducted on a relatively small and limited diversity dataset. It would be good to explore the effect of expanding the dataset, eg. using SA-1B (or a subset).
+
+
+[1] Saha, O., Cheng, Z. and Maji, S., 2022, October. Improving few-shot part segmentation using coarse supervision. In European Conference on Computer Vision (pp. 283-299). Cham: Springer Nature Switzerland.
+
+[2] Vedaldi, A., Mahendran, S., Tsogkas, S., Maji, S., Girshick, R., Kannala, J., Rahtu, E., Kokkinos, I., Blaschko, M.B., Weiss, D. and Taskar, B., 2014. Understanding objects in detail with fine-grained attributes. In Proceedings of the IEEE conference on computer vision and pattern recognition (pp. 3622-3629).
+
+### Questions
+Will the pretrained models also generalize to medical segmentation scenarios?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/cVX3VqO8BO.md b/human_reviews/cVX3VqO8BO.md
new file mode 100644
index 0000000000000000000000000000000000000000..ff1fd60c6f91f6d082edc49692329e5ba41feaec
--- /dev/null
+++ b/human_reviews/cVX3VqO8BO.md
@@ -0,0 +1,171 @@
+## Human Reviewer 1
+
+### Summary
+This paper explores the use of multimodal large models for cross-embodiment dexterous manipulation. The main contributions are as follows:
+1. Constructed a dexterous manipulation dataset encompassing multiple heterogeneous dexterous hands, based on human manipulation datasets.
+2. Proposed a language-guided, multimodal large model-based framework for cross-embodiment dexterous manipulation.
+
+### Strengths
+1. The proposed dataset features highly aligned grasp poses with semantic annotations for cross-embodiment manipulation, which is quite a contribution to the community.
+2. Proposes and validates a viable methodology for applying Multimodal Large Language Models (MLLMs) to the challenging problem of high-DoF dexterous manipulation generation.
+3. Achieving promising results in real-world deployment on high-DoF dexterous embodiments using only human demonstration videos, providing a positive signal for addressing the issue of expensive data collection.
+
+### Weaknesses
+1. The selected tasks are relatively simple. On one hand, many demonstrated actions (e.g., opening a drawer) can be performed by simpler, lower-cost two-fingered grippers, failing to highlight the advantage of dexterous hands. On the other hand, the tasks designed for dexterous hands (e.g., picking and placing objects) involve overly simplistic semantics, lacking part-level manipulation or interactions with clear subsequent intent (e.g., "handing the scissor handles to the user" or "grasping the teapot lid", which are feasible in OakInk). We expect to see complex manipulation sequences that are hard to do for non-dexterous hands and feature richer semantic hierarchies.
+2. The evaluations in simulation are primarily analytical metrics. I believe success rates for the manipulations are essential.
+
+### Questions
+1. In real-world deployment in open-world scenarios, high-fidelity 3D assets of the objects being manipulated are unavailable. Could this affect the performance of the physics-guided dynamic refinement?
+2. The experiments just include comparisons with several human motion generation models. What about the performance of language-guided Hand-Object Interaction models [1] or language-guided grasp models [2, 3] (which can extend to the setting of this paper) on the current dataset.
+
+[1] Cha, Junuk, et al. "Text2hoi: Text-guided 3d motion generation for hand-object interaction." Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 2024.
+
+[2] Wei, Yi-Lin, et al. "Grasp as you say: Language-guided dexterous grasp generation." Advances in Neural Information Processing Systems 37 (2024): 46881-46907.
+
+[3] Zhong Y, Huang X, Li R, et al. Dexgraspvla: A vision-language-action framework towards general dexterous grasping[J]. arXiv preprint arXiv:2502.20900, 2025.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes a unified pipeline for language-conditioned, sequential dexterous-hand manipulation. The method comprises: (i) a Unified Dexterous-Hand Tokenizer (VQ-VAE) that maps heterogeneous hand morphologies into a shared discrete codebook and decodes back to hand-specific joint trajectories; (ii) a VLM-based generator that, given RGB-D input, an instruction, object point clouds, and tokenized history, autoregressively produces manipulation tokens; and (iii) a physics-guided dynamic refinement that enforces contact and temporal smoothness while adhering to the generator’s intent, yielding physically feasible, executable trajectories. Experiments on DexYCB and OakInk show consistent improvements over strong motion-generation baselines (TM2T, MDM, FlowMDM, MotionGPT3) and higher real-robot success rates; ablations demonstrate each module’s contribution.
+
+### Strengths
+The paper proposes a strong framework that incorporates a cross-dexterous-hand representation, language-conditioned sequence generation, and a physics-guided dynamic trajectory refinement module.
+
+The authors perform extensive experiments across multiple datasets, covering both seen and unseen settings, with comprehensive evaluations and ablations.
+
+### Weaknesses
+Tokenizer evaluation limited to a single hand. Although a unified dexterous-hand tokenizer is proposed, both the HOI and real-world experiments appear to use only one hand type. A broader evaluation across multiple robot hands would more convincingly validate the tokenizer’s generality and cross-hand transfer.
+
+Underspecified sequence-generation metrics. The paper introduces a manipulation sequence generator, but the evaluation protocol for sequences is insufficiently detailed. Please clearly define the quantitative metrics and how they are computed.
+
+Missing text–motion alignment evaluation. Given the language-conditioned setup, include explicit Text–Motion Alignment assessments is necessary. Please provide both quantitative measures and qualitative analyses (e.g., human judgments of instruction adherence).
+
+Minor issues.
+
+Line 075: “Language -guided” → “Language-guided”.
+
+Line 115: missing space before “introduces”.
+
+Line 377: only five metrics are listed
+
+### Questions
+See weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+In this work, the authors propose a novel framework for manipulation that generalizes across different dexterous-hand morphologies. Furthermore, the proposed method can generalize over unseen objects. The method consists of three main stages: first, the motion is tokenized in a morphology-independent way. Second, a token sequence is generated based on combined text, perception, and token history. Finally, the motion is generated by using physics-aware decoding. The authors report results that show that their method is superior to baselines on existing datasets, as well as in real-world evaluations.
+
+### Strengths
+The paper is considering a relevant problem of generalization to different hand morphologies. The authors proposed a comprehensive framework that shows good results across multiple metrics and in real-world robot setups. They successfully manage to combine and benefit from existing models, such as PointSam and CLIPort, and integrate them into their framework. Overall, the approach is well-defined, and evaluation supports the claims.
+
+### Weaknesses
+The main weakness of the approach is the complexity of the method. Currently, the approach consists of multiple parts and many different pre-trained models that need to be finetuned.
+
+The authors do not provide code. It is unclear which simulation environment they have used.
+
+The authors mention some terms without providing sufficient explanation in their context or a reference to related work. Such terms are MANO poses (line 153), vector-quantization operator (line 187), knowledge distillation (line 203).
+
+Smaller writing comments and typos:
+- In the introduction, the authors listed 4 core capabilities, and 4 contributions. However, they almost identically, and their repetition is not well motivated. Therefore, the authors should either differentiate them better, or combine them in order to improve legibility.
+- Line 045: No space before AffordDexGrasp
+- Line 272: No space between sentences (generation.A practical)
+- Table 1, 2, and 4: The arrow pointing to right next to Diversity is unintuitive, and its meaning might confuse readers, who did not read the evaluations section in detail.
+
+### Questions
+Have you tried different VLMs?
+
+Have you tried others pretrained models instead of PointSam and CLIPort?
+
+Have you tried different capacities of the Codebook?
+
+Which simulation engine have you used? In the Appendix D it is mentioned that Sapien is used for visualization.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper presents a VLM approach for unified dexterous manipulation. Their approach consists of multiple components. First, a unified tokenizer is learned for multiple hand morphologies using a VQ-VAE codebook. The tokenizer is learned in such a way that all morphologies share the same codebook but different encoder and decoders. For the VLM training, qwen 0.6B is used as base modell. The VLM is trained to ouptut the hand configurations given the object target trajectory and the point cloud of the object. For inference, the point cloud is inferred using PointSAM and the target trajectory using CLIPort. Finally, the hand poses are refined via optimization using a cost function that aligns contact normals with surface normals of the point cloud as well as produces smooth motions. The approach is tested on several benchmark datasets as well as real robot tasks.
+
+### Strengths
+- First VLM for unified (multi-embodiment) dexterous manipulation
+- The VLM can be trained purely from human data
+- Performance seems to be competitive
+- Real robot experiments are convincing
+
+### Weaknesses
+- Some sections are unclear and missing detail (see questions)
+- The paper would benefit from further ablations. E.g. the different parts of the cost function. Or the benefits of using a unified latent space. Here, the (maybe naive) alternative would be to learn everything in a single space (e.g. MANO) and retarget the output of the VLM afterwards. Such a comparison would be insightful.
+- There is no further information on the costs of the optimization of the grasp. How long does it take? Is it real-time capable?
+
+However, I think the approach is interesting and shows a promising performance. The strengths do outweight the weaknesses.
+
+### Questions
+- I got confused in section 3.3 as its unclear how the mathematical objects in Eq. 7 and 8 look like. Could you please add more information here and clarify what T_tar and P_obj is (also formally, what is the dimensionality)?
+- Is the target trajectory the 6D pose trajectory of an object or the 3D positions of a keypoint?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/cZ74yWoKYr.md b/human_reviews/cZ74yWoKYr.md
new file mode 100644
index 0000000000000000000000000000000000000000..abaf43728c102169d0c00984c1099191c4a9387f
--- /dev/null
+++ b/human_reviews/cZ74yWoKYr.md
@@ -0,0 +1,157 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a plug-and-play method to enhance existing KV cache eviction strategies. Concretely, it heuristically sets a fraction factor α = 0.5: 50% of the KV budget is evicted using an existing method, and the remaining budget is selected based on A*|V|_1 to approximate output perturbation importance. Experiments on LongBench and Ruler show some improvements over baselines.
+
+### Strengths
+1. This paper is generally well-written.
+2. The performance improvements over baseline methods on Longbench and Ruler are notable.
+
+### Weaknesses
+1) The paper claims that recent efforts are empirical and lack formal grounding, and that this work presents a formal study from the perspective of output perturbation. However, reasoning from output error is the most straightforward approach; the reason the field often avoids it is the high computational cost of evaluating A*V. The proposed “formal” method in practice is a heuristic: keep half of the budget with an existing method and allocate the rest via a relaxed A*|V|_1 criterion. Moreover, prior methods such as Quest and MagicPig also consider output-level effects.
+
+2) Let's go further from last point and discuss the soundness of the proposed method. Quest also uses an approximate A*V to select important tokens, but it is more justified because it makes on-the-fly decisions during inference, step-by-step, conditioned on each incremental output (I'm not asking the authors to compare Quest since its a selection method). By contrast, this paper’s formulation is built around the output of a single token at the end of prefilling. That is naturally aligned with single-turn QA settings like LongBench and ruler where most information resides in the prompt, but it is too narrow for real-world scenarios. In my view, such output-perturbation–based scoring is better suited for cache selection rather than eviction. The paper should include results on datasets like PG-19 and SCBench that feature multi-turn dialogue or long-horizon modeling.
+
+3) Efficiency evaluation is unconvincing. The paper uses time-to-first-token (TTFT) in the prefill phase (including eviction) as the efficiency metric. Under the current evaluation setting, where full prefilling is followed by a one-shot eviction based on some metric, then decoding with the remaining KV, I think the TTFT does not make sense at all. With one-shot removal, the complexity of the scoring method hardly matters; one could even use a full A*V and see little difference in TTFT compared to what is reported. What would be meaningful is: (a) chunk-wise acceleration during prefilling, or (b) on-the-fly acceleration during long-context decoding. At minimum, please quantify the latency/memory overhead per decoding step for the proposed approximate selection, since Quest found such approximations to be costly and thus opted for block-wise computation.
+
+4) Clarity and presentation. The paper is not that easy to follow. The method is simple enough to be described clearly in a few paragraphs as the core idea is to introduce an approximate A*V to guide the first-step output perturbation for cache eviction. The mathematical proofs seem unnecessary.
+
+5) Naming. The method needs a proper name. Referring to it as “ours” throughout the paper is unhelpful for readers and subsequent citations.
+
+### Questions
+Please see the above part.
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper presents a formal and theoretically grounded framework for identifying critical Key-Value (KV) cache entries during large language model (LLM) inference. Unlike prior empirical cache-eviction methods that depend solely on attention weights (e.g., H2O, SnapKV, AdaKV, HeadKV), the authors analyze the output perturbation caused by cache compression.
+They derive an upper bound on the worst-case perturbation (Theorem 3.3), showing that both attention weights and projected value states (through $W_O$) are essential.
+Based on this insight, they design a two-stage perturbation-constrained selection algorithm that can be plugged into existing eviction frameworks.
+Experiments on Ruler (13 synthetic long-context tasks) and LongBench (16 real-world datasets) demonstrate consistent performance gains—reducing compression loss by more than half across three models (Llama-3.1-8B, Mistral-7B, Qwen2.5-32B) and three cache-eviction baselines.
+The method adds negligible computational overhead.
+
+### Strengths
+1. The authors are the first to formalize KV cache criticality through output perturbation analysis. The derivation of an upper bound provides solid theoretical insight missing in prior work.
+2. The algorithm integrates seamlessly with multiple state-of-the-art eviction methods (SnapKV, AdaKV, HeadKV) and consistently improves them without modifying their architectures.
+3. Extensive experiments on 29 datasets across 3 model families (7B–32B scale) show robust improvements, with detailed ablations over cache sizes, layers, and heads.
+
+### Weaknesses
+1. Although Appendix B claims robustness to α, the main paper only presents results for α = 0.5. A sensitivity analysis in the main text would improve credibility.
+2. The writing is mostly clear but sometimes verbose. Sections 3.4–3.6 mix implementation and theoretical statements, which could be reorganized for readability.
+
+### Questions
+How sensitive is the method to α across very small cache budgets (<10%)?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper first argues that many existing methods reduce the KV cache size by pruning or evicting KV entries that are considered to be less important, relying on attention weights. In contrast, this paper proposes a new perspective: the output perturbation should be the gold metric. Based on this idea, the paper aims to find a set of b KV entries, under a given cache budget B, to minimize the output disturbance. Theoretically, this paper shows that it is suboptimal to select key items only depending on attentions, and the influence of V and W^O must be considered at the same time. A two-stage greedy algorithm is proposed to find the critical KV, which is also a plug-and-play module, with negligible computational overhead.
+
+### Strengths
+1. Experiments confirm that the algorithm can effectively reduce the output disturbance and provide good performance under different cache sizes.
+
+2. Good writing and illustrations.
+
+3. Comprehensive experiments.
+
+### Weaknesses
+1. Some kV entries may be important to maintain long-distance dependency or semantic coherence, even if they contribute little to the l_1 loss of the current output. Could you provide some discussion about this point?
+
+2. The greedy strategy does not guarantee finding the global optimal solution. Could you provide some output L1 result comparisons between the greedy strategy and exhaustive search? Is it possible?
+
+3. The conclusion of the output difference relies on attention weight, V, and W^O is straightforward. However, this article has spent a lot of space proving this, which makes me puzzled.
+
+4. Why must this paper use 50% of the budget to select the KV pair with maximum attention weights? Why not use the adjusted attention containing output differences directly (In Alg. 1)?
+
+### Questions
+Please see Weaknesses.
+
+I think this paper is a good paper and the overal logic are self-motivated.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper studies KV cache eviction in LLM inference from an output perturbation perspective. To this end, the authors devised a perturbation-constrained objective to retain token caches that preserve the output distribution. In particular, given a total budget b, the authors divide b into two parts: the first part directly evicts caches with lower attention weights; the second part considers the L1 norm of value cache rows to identify important entries. Experiments demonstrate the effectiveness of the proposed method.
+
+### Strengths
+1. The proposed method is plug-and-play and easy to use.
+2. The experimental results show clear improvements over baseline methods.
+
+### Weaknesses
+1. Some recent baselines are not compared [1, 2].
+2. I believe the authors' definition of perturbation is too narrow—it is defined only based on the output at the current step, and the proposed method is built on this foundation. However, cache eviction is static. Although the perturbation may be reduced at the current step, the KV cache pruned based on this step's perturbation might become important again in subsequent steps. Therefore, how should the perturbation in future steps be measured? Also, how does the proposed method perform in multi-turn dialogue or ultra-long sequence scenarios?
+3. The proposed method shares strong relevance to Quest [3]. Quest approximates attention computation based on the maximum and minimum KV values, while the proposed method uses the L2 norm for approximation. However, the authors do not provide any discussion or comparison with Quest, even though Quest employs a dynamic selection approach.
+4. The comparison of inference speed is not sufficient. There should be results on acceleration for both 128K pre-filling and inference, similar to the presentation in DuoAttention [1].
+
+[1] DuoAttention: Efficient Long-Context LLM Inference with Retrieval and Streaming Heads. In ICLR, 2025.
+[2] PyramidKV: Dynamic KV Cache Compression based on Pyramidal Information Funneling. In Arxiv, 2024.
+[3] Quest: Query-Aware Sparsity for Efficient Long-Context LLM Inference. In ICML, 2024.
+
+### Questions
+See weakness
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/dbYvP2BKCM.md b/human_reviews/dbYvP2BKCM.md
new file mode 100644
index 0000000000000000000000000000000000000000..6fd8a1321a01e2bd9496536e473288a2d1262d7e
--- /dev/null
+++ b/human_reviews/dbYvP2BKCM.md
@@ -0,0 +1,153 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces ZNet, a novel deep learning framework that addresses the critical challenge of unobserved confounding in causal effect estimation from observational data. Its primary contribution lies in automatically constructing valid instrumental variables (IVs) by decomposing observed variables into latent representations that satisfy core IV assumptions—relevance, exclusion restriction, and unconfoundedness. Unlike existing methods that require pre-specified candidate IVs, ZNet's architecture explicitly encodes the structural causal model of IVs, enabling it to function as a plug-in module for various two-stage IV estimators. Experimental results demonstrate that ZNet can both recover ground-truth instruments when available and generate proxy latent instruments that effectively reduce estimation bias when no explicit IVs exist, offering a flexible solution for causal inference in general observational settings where unconfoundedness cannot be verified.
+
+### Strengths
+The paper demonstrates significant originality by shifting the paradigm from selecting candidate instruments to constructing them directly from observed data. Unlike methods that require pre-specified IV candidates, ZNet automatically decomposes covariates into valid instrumental and confounder representations through a structurally-informed architecture, creatively combining deep learning with causal constraints.
+
+This conceptual contribution is well-supported by high methodological rigor. ZNet's losses directly enforce IV assumptions, and comprehensive experiments show it both recovers true instruments and constructs effective proxies when none exist. Its robust performance across diverse settings—including when unobserved confounding is absent—underscores its practical significance as a reliable, plug-in causal estimator.
+
+### Weaknesses
+While the paper positions ZNet as a novel paradigm for IV construction, the core idea of learning instrumental variable representations from data is an established research direction. Several prior works have the explicit goal of generating valid IVs from observed covariates without pre-specified candidates, using variational and mutual information-based approaches. The architectural difference of ZNet—learning a decomposition based on an SCM—is a technical contribution but does not constitute a paradigm shift.
+
+A more critical weakness is the exclusive reliance on semi-synthetic datasets for experimental validation. While useful for controlled testing with known ground truth, this setup fails to demonstrate the method's applicability to real-world problems. Furthermore, the absence of an evaluation on a real-world dataset with no ground-truth effect (e.g., a standard observational causal inference benchmark) leaves the practical utility in doubt. For the method to be considered a "plug-in" solution, it must be validated in settings that mirror the true uncertainty of observational studies.
+
+"Moreover, all code to generate models, synthetic data, and experiments will be made public upon publication." I suggest publish in the review period.
+
+### Questions
+Please see my concerns in weakness.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper addresses the practical challenge of identifying valid instrumental variables (IVs) by proposing ZNet, a decomposition-based framework that learns latent representations satisfying the standard IV assumptions. When real instrumental variables exist in the data, ZNet is able to recover them; when no explicit IVs are available, ZNet can construct proxy latent IVs to facilitate causal effect estimation.
+
+### Strengths
+1.The proposed method is conceptually simple and easy to understand.
+
+2.The experiments are comprehensive and cover diverse data scenarios.
+
+### Weaknesses
+1.Lack of clear novelty. Recovering instrumental variables from observational data is a well-known open problem, and several prior works (e.g., DIV.VAE, GDIV, AutoIV) have explored similar directions. The authors should clarify the key distinctions between ZNet and these existing approaches in terms of motivation, design, or theoretical guarantees.
+
+2. Equations 5 and 6 fail to demonstrate the lack of confounding in instrumental variables. In Equation 5, the outcome variable Y is directly predicted using the covariate X and the treatment variable T, which inherently incorporates confounding factors. Furthermore, in Equation 6, the meaning of Y - \hat_{Y} is unclear. Why does its uncorrelated nature with Z guarantee that the instrumental variable Z is free from confounding?
+
+3. Similarly, exclusivity and relevance cannot be satisfied. Crucially, how does the author ensure that f(X) and g(X) capture the confounding factor C and the instrumental variable Z, respectively? Without clarifying this key point, the validity of Equations 7–9 cannot be guaranteed.
+
+4. The superiority of ZNet cannot be assured. Based on the experimental data in Table 1, ZNet does not demonstrate outstanding performance.
+
+5. The definition of an IV ("An IV is a variable that influences the treatment but has no direct effect on the out come or influence from
+ unobserved confounders.") in abstact is wrong.
+
+6. The second condition, i.e., "Exclusion restriction" (page 2) is wrong. It should be Z⊥Y|(T,C, e_Y).
+
+7. CATE(C)=E[Y|do(T)=1,C]−E[Y|do(T)=0,C], and ATE=E_C[CATE] seems to be wrong. Based on the standard definition of ATE,
+ATE should be E[Y|do(T)=1]−E[Y|do(T)=0], rather than CATE(C).
+
+### Questions
+See Weaknesses.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+this paper proposes a method for decomposing the observed variables to find a representation which satisfies the standard IV assumptions of relevance, exclusion restriction, and unconfoundedness. The experiments validates the effectiveness of ZNet.
+
+### Strengths
+Generally clear and readable; figures and tables are informative;
+
+### Weaknesses
+1. Results are synthetic; real-world case studiesare absent.
+2. In some regimes/methods ZNet is not best. A deeper error analysis would help users decide when ZNet is reliable
+
+### Questions
+N/A
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+1
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes a novel method to learn instrumental variables from the confounders in the dataset. With the help of the learned instruments, treatment effects can be identified and estimated even in the presence of unobserved confounders. Based on an additive loss including multiple single-task losses, the final estimate is forced to comply with the necessary assumptions of IVs. The paper empirically validates the new method ZNet.
+
+### Strengths
+- The paper includes a rather extensive empirical evaluation.
+- To the best of my knowledge, the idea of learning instruments (not instrument representations) from the existing dataset, fulfilling the necessary requirements for valid IVs, is novel.
+
+### Weaknesses
+- The paper does not include any mathematical guarantees for the validity of the method. Therefore, it cannot be guaranteed that the learned IVs are actually valid IVs, potentially rendering the causal effect unidentifiable. I consider this the main and very severe weakness of the work.
+- The paper assumes that there exists a subset of the confounders that can serve as instruments. However, this is not necessarily the case in practice.
+- The paper makes the strong assumption that the instrument is sampled from a normal distribution. The reasoning behind this assumption is neither explained nor is the validity discussed.
+- The provided loss is only suitable for valid IVs if the final loss terms related to independence requirements are truly 0. However, this is neither shown nor discussed (neither theoretically nor empirically).
+- Evaluation: The method is only evaluated for ATE estimation based on the mean error. For better (and fairer) comparison, the method should also be evaluated for CATE estimation based on the PEHE.
+
+### Questions
+- Very likely, the confounders will not include suitable instruments. How does the method (theoretically) behave in this failure mode? In this case, the treatment effect is theoretically still not point-identified.
+- Lemma 1: With which justification can Z be assumed to stem from a normal distribution? How would one define the variance of the distribution?
+- Lines 235-237: What is the reasoning behind this model specification?
+- Why is the PC-loss a good choice for the loss term? Why not use the HSIC? This is not discussed. Furthermore, to evaluate the loss, the covariance and standard deviations need to be estimated. What happens if the estimation is incorrect?
+- How does the method perform for continuous treatments? Here, the representations might be more difficult to learn.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/doxBjZ88H3.md b/human_reviews/doxBjZ88H3.md
new file mode 100644
index 0000000000000000000000000000000000000000..bc299aeec3106b714db7ed0e03b2bb83a0a2db6a
--- /dev/null
+++ b/human_reviews/doxBjZ88H3.md
@@ -0,0 +1,186 @@
+## Human Reviewer 1
+
+### Summary
+The paper puts forth a mathematical formalism for experimentally distinguishing between encoding of likelihood or of posterior at the level of neural populations via decoding, provides an information gap metric for the discriminability of the two, and optimizes in the space of tasks for designs which most clearly separate between the two hypotheses. This paves the way for a more precise experimental validation of various bayesian accounts of perception and associated neural implementation in the brain.
+
+The basic setup assumes a family of tasks where the animal needs to estimate and report a one-dimensional latent variable theta conveyed by a sensory stimulus, in two (known to the animal) contexts corresponding to different theta distributions. given the responses of a population of sensory neurons r, from which different probabilistic information (according to an experimentally matched ideal observer) is decoded via flexible deep learning models. Assumptions about the different models are incorporated in the network's architecture following Walker et al 2020. The information gap between them is the KL between the two possible encoded quantities (using discretized random variables for easy computation). The question then becomes how to optimize the distance and degree of overlap for priors in the two contexts to maximize discriminability
+
+### Strengths
+Interesting question, given precise mathematical form.
+
+Novelty and significance: both likelihood and posterior hypotheses make qualitatively similar predictions in traditional experimental designs which has hampered the ability to experimentally adjudicate between probabilistic coding theories. New ways to design experiments for maximal discriminability would circumvent this problem. To my knowledge no formal framing for such experimental design exists to date.
+
+the idea that crossentropy-based decoders trained on ground truth stimulus identity are linked to ideal observer posterior uncertainty for the same data distribution seems generally useful
+
+Numerical validation of theoretical results in the limit of enough data
+
+### Weaknesses
+While i think the general framework is sensible and fruitful, I have concerns about the details of the execution.
+
+Although the writing overall is overall pretty clear, the key text with the description of the information gap is difficult to parse and ambiguous. the logic of the construction is not clearly enough explained in that part of the text.
+The appendix explains it better that the goal is to link crossentropy of different decoders to ideal observer posteriors arguing that a mismatched decoder will achieve overall less crossentropy performance but the main text cannot really be understood on its own
+
+But the weakness is that the punchline is rather weak: the results do not seem to provide much insight into how one could design better experiments beyond giving ranges of possible d' parameters that look good c.f. the theory. It is not clear if the (not negligible) experimental data collected in this setup is outside that regime so that experimentalists would know to do something differently.
+
+### Questions
+How does the animal's own added sensory uncertainty get incorporated in the procedure ? can the (unavoidable) model mismatch bias the conclusions in any way or are there formal guarantees that it will not?
+
+In particular, what if the local neural population encodes beliefs about related random variables but not the exact parametrization of the experiment? I am mentioning this because successful neural sampling (posterior-based) probabilistic accounts of V1 responses use a high dimensional distributed representation (think probabilistic versions of factor analysis or gaussian scale mixtures) related to orientation but not beliefs about theta per se
+
+i got a little confused about terminology, e.g. "true posterior ...of a ideal likelihood decoder"? i think what is meant is an optimal decoder of likelihood or posterior beliefs from neural responses
+
+As defined, the information gap seems to come from the ability of the agent to correctly know or infer contex, some more discussion on that would be helpful
+
+Please explain the need for hypothesis specific information gaps, what assumptions it makes about context unknown r, and what it implies for experimental design: do you assume data exists for both a single/cued context version and an inferred/uncued context version of the same task? The elements of the math on the bounds of decoder crossentropy performance described in A1 are individually more comprehensible but the big picture logic and assumptions remain to be inferred between the lines
+
+Eq3: i did not manage to follow the logic of restricting the sum to special subpairs since it seems incompatible to the traditional KL definition
+
+Why not optimize the KL difference between the signal predicted by the two theories in a more direct way? There may be a good reason for the extra complexity but it's not coming across from the text
+
+given concerns about data limitations, is there a way to take into account co-occuring behavioral responses as a way to improve precision or at least to address model mismatch?
+
+How does the number of neurons enter the information gap expressions ? It seems counterintuitive that one can achieve the assymptotic precision for representing a continuous variable with 10 neurons... does that depend on the precision of the x discretization in a substantial way?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+Different theories have been proposed for the neural representations of early visual areas during perceptual decision making tasks. Some proposed that neural population activity represents the likelihood function over the stimulus variable (likelihood theory), while others argued that neural activity represents samples from the posterior distribution of the stimulus variables (posterior theory). So far, it has been difficult to adjudicate between these theories, or falsify both. This theoretical paper proposed a information-theoretical approach toward better ways to distinguish these theories experimentally, although no experimental results were given or analyzed in this paper. Specially, the authors proposed a metric called information gap, that captures the performance difference between the likelihood decoder v.s. posterior decoder. They were able to analytically derive the information gap under certain conditions. Numerical experiments were used to validate these results. They further used this approach to analyze some simple perceptual decision making tasks and made suggestion about how to better design experiments to test the different theories mentioned above.
+
+### Strengths
+This paper seeks to address a problem that has been difficult to make progress on in the field. The proposed approach is sound.
+
+The proposed analytical approach and the results are new, although they only seem to work under some relatively simple task conditions.
+
+The numerical simulations in the paper were thorough and served to validate the analytical results.
+
+The approach may provide some useful guide for the design of future experiments to testing the likelihood theory v..s posterior theory of the neural responses (although there may be some questions of practically how to find the optimal design as the optimal design seems to depend on some parameters, e..g, noise in the system, that might not be easily measured in the experiments).
+
+### Weaknesses
+— While the authors clearly spent efforts to articulate the theoretical settings and to justify the importance of the problem, I felt there was still some ambiguity. For example, the two theories outlined were the theory of representing likelihood v..s sampling-based code. However, here sampling seems to be an additional assumption. It would be cleaner if the comparison was simply a presentation of likelihood v.s. a representation the posterior. One can also consider a theory of sampling from the normalized likelihood (which would be equivalent to posterior assuming a uniform prior). It was unclear wether sampling is essential in the model comparison.
+
+— the paper only consider prior imposed during the task. It seemed that the results were based on the assumption that the task prior can be learned perfectly. Yet, this assumption may be too strong.
+
+-- What about the long-term priors (or natural priors) the observers already learn? Can the theoretical framework also apply to these? Or would these complicate things?
+
+
+-- My most substantial concern is that the authors only considered a specific path for a relatively narrow setting (although under these settings, the results seem to be solid). I am not sure if the approach would indeed be fruitful or whether there might be easier and more fruitful approach for adjudicating between the different theories. In particular, from Section 4, I am under the impression that practically it would still be difficult to distinguish these theories (Correct me if I have the wrong impression). I wonder if there would be more fruitful path that would also be easier. For example, instead of using a static setting, how about considering a learning paradigm instead? Suppose we start with a baseline condition, and measure the neural responses. Then we teach the observers to learn a different prior. Under the likelihood theory,, the neural representation in V1 should not change. In contrast, based on the posterior theory, the neural representation in V1 should change according to the prior learned. So the question is, what is the advantage of the approach proposed in the current paper compared to such an alternative approach?
+
+-- The paper would be stronger if some empirical results from experiments can be shown. Even a re-analysis some previously reported experimental data to demonstrate the advantage of the current method would be useful.
+
+### Questions
+In fig. 2c, top row, why would one still incorporate the priors given it is a likelihood decoder? Also, were ground truth prior assumed there?
+
+Line 249, what does the “task-marginalized” estimator mean? Please unpack the idea.
+
+What was the ground truth posterior/likelihood in the simulation studies? Were neural noise considered in addition to the stimulus noise?
+
+From Fig. 6, it appears that the optimal experimental design depends on the noise in the system. Practically how can we determine the noise level before designing the experiments to test the theories?
+
+Fig. 6, what are the units on the x- and y-axis?
+
+The authors show the using heavy-tailed priors would not help better distinguish different models. Would using distribution with thinner tail than Gaussian help? What about uniform priors?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The authors develop a framework for designing a pair of stimulus ensembles that are optimized to differentiate two models of probabilistic sensory representation for Bayes-optimal observers: the "likelihood" model, and the "posterior" model. They show through a number of simulations that the method can successfully distinguish the two models.
+
+### Strengths
+* Optimal experimental design is an important and under-studied area.
+
+* The problem posed, of developing an analysis to compare two standard models proposed for Bayesian inference in the brain, and using this to derive optimal stimulus ensembles for experimental determination of a "winner", is relevant and I'm not aware of any published solutions.
+
+### Weaknesses
+* The development is, in my view, over-formalized given the intended use and implementation. Why is it not sufficient to seek two stimulus ensembles that produce the largest discrepancy in estimates produced by the two models? And how do the results depend on the design and training of the deep neural network decoders that are used to obtain likeilihoods or posteriors from the neural population?
+
+* The paper is built on the direct comparison of two models (likelihood encoding vs. posterior encoding), but there are other proposals in the literature as to how prior probabilities might be embedded in neural systems. In particular, Ganguli & Simoncelli (2010/2014) propose that inhomogeneous populations of tuning curves encodes the prior, the spiking responses form a likelihood, and a weighted nonlinear decoder can approximate Bayesian estimates. There's reasonable experimental support for these components, but it's not clear how this formulation would be categorized in the context of the authors' proposed experimental test.
+
+* The authors' formulation relies on a highly simplified description of how an organism (human or otherwise) adapts to a sensory environment. In particular, they assume the posterior observer is aware of the true prior, and is able to use it properly for inference, which seems inconsistent with the large literature on adaptation. Perceptually, adaptation to an ensemble leads to changes in perceived value (biases) as well as changes in discriminability (variance), but the changes reported in the literature are diverse (especially changes in discriminability), and highly dependent on the perceptual attribute being tested, the adaptation stimuli, the duration of exposure, etc. In fact, perceptual adaptation effects have been described as "anti-Bayesian", because adapting to one stimulus (or a distribution concentrated in one region of the the stimulus space) leads to perceptual repulsion rather than attraction toward this modified "prior". Physiologically, the most commonly observed effect of adaptation is a reduction in gain, but many reports describe shifts or distortions (e.g., flank suppression) of tuning curves. Again, these effects are quite variable, and depend on details of adapting stimulus ensemble, duration, etc. Recent work by Tring et. al. (2024) provides a compelling explanation for observed adaptation effects in terms of coding efficiency, but this seems at odds with either the "likelihood" or "posterior" hypothesis of the current paper. So my concern is that experimental design proposed by the authors will lead to inconclusive results, because adaptive changes in perceptual systems are substantial (so not aligned with the "likeilihood" model), but are also inconsistent with a change in prior.
+
+* In describing prior literature, the paper should make mention of work on optimal stimulus design for estimating perceptual discrimination thresholds [eg: Quest (watson/pelli 1983), Pest (Medigan 1987), Information-theoretic stimulus optimization for neurophysiology (Lewi etal 2006/2009), Quest+ (Watson 2017)]. Perhaps more relevant, work by Machens et al 2005 adaptively sought a stimulus ensemble for which a neural population (grasshopper auditory receptors) provided an optimally efficient code. Not the same as Bayesian decoding, but analogous in spirit.
+
+### Questions
+See above.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper suggests a framework, i.e. testing KL Divergence of different decoders, to determine which hypothesis is true about the perceptual coding in the brain, likelihood or posterior. Tested on simulated data on gratings with different orientations and contrast levels, it illustrates the potential use of the method for real experiments.
+
+### Strengths
+The paper is well written, specifying the problem, process, and limitations clearly. It also gives a good coverage of the literature.
+
+### Weaknesses
+Using KL-divergence and decoding performance is pretty common in modelling in neuroscience, so I don't think using it for a specific problem could be considered a huge contribution. Furthermore, the paper lacks empirical results. There are multiple public data sets that actually contain gratings with different orientation and contrasts, for example Allen Brain observatory visual coding Neuropixel data set( https://portal.brain-map.org/circuits-behavior/visual-coding-neuropixels). So I think testing the practicality of the approach is feasible for the authors. While it is kind of acknowledged in the paper, the method relies on a lot of assumptions, and most importantly optimality of the neual code. There are multiple studies showing that the code is not perfectly optimal, including those referenced in the paper, e.g Haefner, et al, Neuron 2016 in which they explained a Bayesian approach that models the bias toward early observations. Overall, many studies on perception has shown that the neural activity is too complicated to be easily interpreted by models (and that's why we don't know what exactly going on as the authors mentioned too). I can't see how this approach could give a practical solution to that.
+
+### Questions
+- Do the simulation results hold when tested on the actual neural data (e.g on Allen data set mentioned above)?
+- How does the firing rate and noise affect the results?
+- How does the approach handle arousal, running, or other phenomena that affect the neural code in the visual cortex?
+- Decoding approaches especially by powerful methods like deep neural networks are not trustable to many neuroscientists, as the presence of information is different from using the information. For example, one might give all the neural activity in the retina to a deep neural network and infer high-order features such as objects, just like how they can do it on raw images directly. This does not mean that the retina perform object recognition. how does this affect the feasibility of the presented approach?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+1
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/e26MPyczN9.md b/human_reviews/e26MPyczN9.md
new file mode 100644
index 0000000000000000000000000000000000000000..970ed0a992570db46eaf568036bda0f135aa6033
--- /dev/null
+++ b/human_reviews/e26MPyczN9.md
@@ -0,0 +1,213 @@
+## Human Reviewer 1
+
+### Summary
+This paper presents a re-revaluation of the popular claim that "programmatic policies generalize better than neural network policies". The core thesis is that the previously observed generalization gap stems not from fundamental differences in representation, but largely from experimental confounds.
+
+In this paper, authors revisit three benchmarks (TORC, Karel, Parking). They demonstrate that by applying "minor modifications" to the neural policy learning setup, their out-of-distribution (OOD) generalization can match or even exceed that of programmtic policies.
+
+The paper concludes by using a custom Karel task (learning a stack/queue) to highlight the real benefit of programmatic policies. It argues this advantage is not broad generalization, but the specific, superior ability to execute explicit algorithmic logic.
+
+### Strengths
+1. Directly challenging a widely acknoweledged conclusion and attributing it to "experimental confounds" is a valuable contribution to the community. Researchers are always encouraged to examine and revisit.
+2. The effort to re-evaluate three core benchmarks is convincing w.r.t. corresponding algorithms. Concrete experimental evidence (e.g., sparse observations in Karel) to support its central argument: generalization gap stems not from fundamental differences in representation, but largely from experimental confounds.
+3. I am also a bit surprised that slightly tweaking the experimental settings can achive better performance and generalization ability for neural policies. This may be a good lesson for RL researchers that a better formulation of the policy network (even a simple modification) could help the entire experiment.
+
+### Weaknesses
+1. I understand the ambition of this paper but the title seems too "huge". First of all, the claim of programmatic policies generalize better should be explained throughly and more work should be discussed and cited. Programmatic policies are utilized in many other works [1, 2, 3, 4, 5] involving different benchmarks and learning methods. A comprehensive re-evaluation is not realistic and expected, yet discussions are appreciated.
+2. I am not fully convinced by the "minor modifications" as tweaking reward function or observation setting are injecting inductive bias, this is not a trivial change to learning of an neural network policy. Also, DSL is a perfect method to inject inductive bias, have you considered tweaking DSL and conduct some experiments?
+3. From my understanding, programatic policies and neural policies are not contradict to each other and can be composed together, this is verified by previous works [1, 6]. Moreover, neural networks are specialized to have better perceptual generalization, yet programmatic policies are suitable for systematic generalization. I believe this aligns many of your research statement, it would be better to discuss this in your revised paper.
+
+[1] Qiu and Zhu, Programmatic Reinforcement Learning without Oracles, ICLR 2022
+
+[2] Cui et al., Reward-guided synthesis of intelligent agents with control structures, PLDI 2024
+
+[3] Kohler et al, Interpretable and Editable Programmatic Tree Policies for Reinforcement Learning, EWRL 2024 Workshop
+
+[4] Guo et al., Efficient Symbolic Policy Learning with Differentiable Symbolic Expression, NeurIPS 2023
+
+[5] Qiu et al., Instructing Goal-Conditioned Reinforcement Learning Agents with Temporal Logic Objectives, NeurIPS 2023
+
+[6] Qureshi et al, Composing Task-Agnostic Policies with Deep Reinforcement Learning, ICLR 2020
+
+### Questions
+1. See weaknesses 2
+2. The modified synthetic Karel tasks seems too ad-hoc and artificial. Come you come up with other tasks or modifications to strengthen your claims?
+2. How much effort did you made to find different tweaking of these neural policies? How easy for FunSearch to find a Python policy that generailzes better?
+3. Can you discuss the combination of neural policies and programmatic policies? Can neurosymbolic methods solve the problems from both sides?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper re-evaluates the out-of-distribution (OOD) generalization properties of programmatic policies found by different search algorithms (e.g., NDPS, LEAPS, PSM). In previous literature, these policies were often reported to generalize better than neural policies trained with gradient-based methods (e.g., DDPG, PPO, DQN). This paper demonstrates that in several environments (TORCS, Karel, Parking) , straightforward modifications to the neural policy's training allow them to match or exceed the generalization of programmatic policies.
+
+The paper argues that often both neural and programmatic representations can
+*in principle* encode a generalizing policy (a property the paper later calls "Expressivity"). The reported gap in prior work stemmed from "uncontrolled experimental factors" that made finding this solution _in practice_ (a property called "Discoverability") more difficult for the neural policy's search algorithm (i.e., gradient descent). The paper then argues that a true advantage for programmatic policies exists in environments where neural networks struggle to encode generalizing policies even _in principle_. This often involves tasks requiring algorithmic solutions, such as learning specific data structures like a stack or queue. One such environment ("SparseMaze") is shown as a proof-of-concept : a GRU policy trained with PPO fails to learn or generalize, whereas a programmatic policy found by FunSearch discovers a breadth-first search algorithm and provably generalizes.
+
+### Strengths
+- The paper provides a valuable corrective to some claims in the literature about the superior OOD generalization of programmatic policies over neural ones.
+- The re-evaluation experiments in TORCS, Karel, and Parking appear sound and clearly demonstrate how the exact experimental setup impacts generalization .
+- The distinction between a representation's _expressivity_ (containing a solution) and the _discoverability_ of that solution by a search algorithm can aid further discussion of generalization.
+
+### Weaknesses
+While the paper's re-evaluation of prior work is valuable, its main positive claim feels limited. The paper argues that the _true_ advantage of programmatic policies lies in their _expressivity_ for tasks requiring complex algorithmic structures (like memory or data structures), which common neural network architectures lack .
+
+In my view, this is a well-understood distinction, and the "SparseMaze" proof-of-concept serves more to confirm this known limitation of standard recurrent networks than to provide a new, surprising insight. It would be similarly straightforward to design an environment where neural network policies generalize better (e.g., an environment based on classifying handwritten digits, where the task is perceptual and the underlying "program" is unknown).
+
+The paper wants to guide future evaluation of OOD generalization in RL. However, the main take-away message seems to be "programmatic policies are better when the task requires an explicit algorithm," which is not a particularly novel conclusion. For this reason, the contribution feels limited, which is why I vote for a weak reject.
+
+### Questions
+Below I list more details in the form of questions and comments:
+- Section 5 asks the question, "Can programmatic representations better generalize to OOD problems?". This question seems ill-posed, as I have argued above. Clearly, in some environments, programmatic representations generalize better, and in others, neural representations will. More reasonable questions might be: "What are the properties of environments that make programmatic representations more suitable than neural representations, and vice versa? For a given complex environment, how can we determine in advance which kind of representation will generalize better? What representations will generalize better in relevant real-world problems?" The paper _does_ suggest an answer to the first question—that the key property is the need for algorithmic structures like memory manipulation, stacks, or queues. However, it doesn't provide a general framework for identifying these properties in advance in complex, high-dimensional problems (like NetHack, which it mentions ), which would be a more significant contribution. Do the authors have further insights on this?
+- In Section 2, the paper formally introduces Markov Decision Processes (MDPs) . However, for the KAREL environment, it explicitly investigates "the partially observable version" and even shows a classic state-aliasing diagram (Figure 4) where different states lead to the same observation. Shouldn't the Partially Observable MDP (POMDP) formalism also be introduced for completeness?
+- The paper introduces the core concepts of its argument—that a representation must (i) include a generalizing policy and (ii) the search algorithm must be able to find it—in the abstract and introduction. However, it only formally names these concepts "Expressivity" and "Discoverability" in Section 5 . It would significantly improve the paper's clarity and impact to use these terms consistently from the introduction onwards.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper challenges the idea that neural policies necessarily generalize worse in out-of-distribution scenarios than programmatic policies. To do so, the authors rerun experiments from three existing papers that previously reported better generalization capabilities from programmatic policies and demonstrate that as good out-of-distribution generalization can be obtained by neural policies if one adds a sparsity metric, alters the reward function or changes the inputs given to the neural policies. Finally the paper concludes by modifying one of the (Maze navigation) tasks to make it more challenging for neural policies and showing that a search algorithm leveraging an LLM can generate a program that solves any kind of such mazes and outperform neural policies trained with PPO.
+
+### Strengths
+The paper revisits existing experimental setups and refutes some of their claims or at the very least provides more complete explanations of why neural policies were not generalizing as well in prior experiments.
+
+### Weaknesses
+I am not sure I completely agree with the claim that previously reported advantages of programmatic policies are only due to experimental confounders. I am not sure any of the previous papers claimed that programmatic policies would always generalize better than neural one, only that they can provide a favorable inductive bias for certain tasks. That a similarly efficient inductive bias can be injected to neural policies by adding a sparsity regularization or by modifying the reward function does not necessarily contradicts the previous statement. It only shows that there are multiple ways of injecting prior information that would help generalization beyond the choice of the policy class.
+
+Along the same line, I find the experiment in Sec. 5 to be too extreme the other way around: while PPO with a GRU seems to fail to learn a good policy for these Maze problems it does not constitute imo conclusive evidence that neural policies cannot generalize to these type of mazes as stated around line 463. It could very well that the neural architecture was ill-chose or the training procedure could be improved. Especially since the programmatic policies on the other side are trained with a completely different algorithm leveraging much large models.
+
+Overall, I do like the general direction of the paper. Looking at abstracts of referenced material, prior work do tend to put forth the generalization capabilities of programmatic policies (although it is not always the central claim and interpretability is also discussed prominently), and this paper brings nuance to such claims. In the process however, some of the claim in this paper are perhaps a bit too strong (Sec. 4) are lack supporting evidence (Sec. 5). I would be willing to revise my score if the authors can modulate a bit these claims or provide for instance more evidence on why they believe that neural policies will never be able to generalize to problems in Sec. 5.
+
+### Questions
+See previous section.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper re-evaluates the claimed out-of-distribution (OOD) generalization of programmatic policies compared to RL-trained neural policies. The paper attempts to answer what causes the generalizability.. The author conducted their experiment on three domains, TORCS, KAREL, and PARKING. In TORCS, the author modified the reward function to test their hypothesis and show DRL algorithms can generalize to OOD environments. In KAREL, the author utilizes the last action and augmentation for policy training, demonstrating better generalization performance compared to existing baselines. In PARKING, RL shows better performance in training against the programmatic state machine, but has similar performance in the testing stage, showing the poor generalization ability of neural policies. The experimental results show that the programmatic representation and neural representation have similar performance in terms of generalization. The authors designed a new task, SparseMaze in KAREL, and utilized FunSearch to search programmatic policies with a large language model, resulting in better generalization against neural-based policies. Based on the evidence, the authors suggest that future benchmarks should consider the advantages and disadvantages of policy representation.
+
+### Strengths
+1. Recent programmatic reinforcement learning shows out-of-distribution (OOD) generalization. The paper shows that with carefully curated training techniques, neural-based policies can also generalize to OOD testing sets.
+2. The author proposed a new task called SparseMaze that needs search algorithms to find the target. Using an existing search algorithm can find a solution, whereas PPO cannot find a good policy in the training stage.
+
+### Weaknesses
+1. In section 5, the author tries to use expressivity and discoverability to define the existence of a generalized solution and a well-developed algorithm for searching the generalized solution. A neural net is a universal function approximator. It is not trivial for a program to have a more generalized solution. Discoverability may be the key advantage for the programmatic policies.
+2. The advantage of using a data structure is limited to navigation problems like KAREL. For the control problems like TORCS and PARKING, which data structure is needed to solve these problems more generally?
+3. The paper discusses some aspects of the generalization. Clearly state each environment's focus on those kinds of generalization. For instance, the PARKING environment discussed the distribution shift generalization, and the KAREL environment discussed the input-scale generalization.
+4. Following 3, Liu et al. [1] compose programs in the KAREL environment to solve the tasks with h reward signal. The compositional generalization of policies is not discussed in the paper.
+
+### Questions
+1. In section 4.2 and table 3, there are two versions of the environment, one fully observable and the other partially observable. Which baselines use the fully-observable setting and which baselines use the partially-observable setting?
+2. There are six tasks proposed by Trivedi et al. [2], and an additional four tasks proposed by Liu et al. [1]. Why were these five tasks chosen in Table 2?
+3. In Table 3, you should add the standard deviation to Successful-on-100 and Success Rate.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 5
+
+### Summary
+Good ideas but poor paper. This paper claims that neural network policies transfer better to new tasks w.r.t programmatic policies than previously shown. They claim that poor transferability compared to programmatic policies was the result of cofounding factors in experiments. However this paper itself is poor.
+
+### Strengths
+Good number of environments and baselines. Interesting topic.
+
+### Weaknesses
+The most important weakness of this paper is the lack of formalism and rigor.
+
+The claims are not defined and I believe they are tautology. From the abstract ' We argue that a representation enables OOD generalization
+if (i) the policy space it induces includes a generalizing policy ', I understand it as: our problem has a solution if there is a solution to our problem.
+Similarly, claim (ii) is trivial, 'if an algorithm can find a solution to our problem, our problem has a solution'.
+
+OOD generalization, which is the key metric of this paper is not defined.
+
+Programmatic policies as presented in this paper are mostly non-Markovian, e.g. the programs for the TORCS can query past sensor states in e.g. peek(, -2). This could also be a confounding factor when comparing to Markovian DRL policies.
+
+Authors do not show any convergence curves which is problematic when claiming properties of trained policies.
+
+I don't understand why changing the reward function in the TORCS experiment can explain anything about generalization capabilities of DRL policies. By doing so, you simply changed the problem. In that case you could claim: there exist problems for which DRL policies can generalize as well as programmatic policies.
+
+I do not understand neither how the other experiments help support the claim that neural network generalize as well or better than programs! what if your training curves did not converge?
+
+Overall I am not convinced by the problem at hand, the claims, nor the experiments. Key confounding factors include: markovianity of policies (even though it is partially adressed in table 2), potential non-convergence of training, DDPG and PPO were never meant to train policies that generalize OOD so training algorithm choice is also a key confounding factor.
+
+### Questions
+Can you show training curves of DDPG , NDPS, PPO, and LEAPS please?
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/fBc9v8CVvm.md b/human_reviews/fBc9v8CVvm.md
new file mode 100644
index 0000000000000000000000000000000000000000..3cabd2896f134910993372667deabef1a9441bc8
--- /dev/null
+++ b/human_reviews/fBc9v8CVvm.md
@@ -0,0 +1,140 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a new one-step generation method named TwinFlow. The method applies a self-adaversarial manner: First, it extend the common $[0,1]$ time interval into $[-1,1]$. Then it uses the $[0,1]$ and $[-1,0]$ interval for training a true and fake diffusion model, respectively. And a loss is used to minimize the difference of the true and fake velocities. Experiments show that the proposed method achieves strong performance on text-to-image tasks, and also verify its scalability on a 20B model.
+
+### Strengths
+- I like its feature where only one model is trained, and that it achieves good performance on T2I models without GAN. Compared to SiD and VSD, it combines the pretrained teacher and the true score net, while makes the fake score net online, which is a good improvement.
+- The performance is strong, especially for the scalabity on large-scale (20B) models.
+
+### Weaknesses
+- This method is similar to existing distillation methods like SiD, DMD and VSD, for example, DMD requires a trained diffusion teacher and a online-training generator, corresponding to the $t\in [0,1]$ part of TwinFlow; the auxiliary fake score network corresponds to the $t\in[-1,0]$ part. The authors should provide a detailed comparison in their paper.
+- Since this approach integrate the function of the three models in DMD into one model, there is potential performance degration since the total model capacity is limited.
+- Though with better performance, the forward and backward pass of TwinFlow seems much more complicated than consistency training, the authors are expected to provide the theoretical and practical training cost comparison (also see questions).
+
+### Questions
+- How do you generate $\\boldsymbol{x}^{\text{fake}}$? I suppose $\\boldsymbol{x}^{\text{fake}}=\\boldsymbol{x}\_t+(0-t)\\boldsymbol{F}_{\theta}(\\boldsymbol{x}\_t,t,0)$ under the OT-FM framework. If so, is the sample generated by the diffusion ODE idential to that generated by the generator trained wiith DMD loss (rectify loss in the paper) in particle or just in distribution? How do this loss boost the 2 or more-step performance?
+- In DMD and VSD, the training is alternatively (fake score net and generator). Why can your method be free from alternate training?
+- I found that the authors did not discuss the usage of CFG in the method, and I also notice that in Figure 3, the TwinFlow results are without CFG. I wonder if CFG is applicable in TwinFlow, or can CFG improve the performance further if applicable?
+- Is the DiT model on ImageNet trained from scratch or with teacher weights loaded? And, what is the 1-step performance? Also, are the results with or without CFG? If the $2.05$ FID is arrived without CFG, that is impressive.
+- While there are multiple scores reported for 1-step generation, there are very few 1-step visualizations. Can you provide some (it won't affect my evaluation)?
+- In consistency training/finetuning, the additional training cost compared to diffusion models is one forward pass. In your method, the extra cost seems much more. Can you elabarate the extra cost, and compare the practical memory and speed with consistency training (e.g., on ImageNet)?
+- The $\lambda$ parameter only adjust the effect of $\mathcal{L}_\text{TwinFlow}$; do you also need to adjust the effect between adv loss and rectify loss?
+- Is there a missing "-" in Eq. (6)?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+TwinSteps is a framework that aims to reduce the number of inference steps in diffusion / flow matching models to as few as 1 step. It bypasses the need for distillation and avoids standard adversarial training (e.g. GAN style). The approach strongly builds on the RCGM method, but adds three main additional components: extending the time domain from [0,1] to [-1,1] and adding an adversarial as well as a rectification loss. On text-to-image tasks, the method outperforms multiple baselines and is shown to be scalable by applying it on the largest open-source multi-modal model, Qwen-Image-20B.
+
+### Strengths
+- While many distillation or few step approaches leverage additional trained or teacher networks, this method does not require any additional separate network.
+- While strongly leveraging ideas by the DMD (Distribution Matching Distillation paper) paper, the authors found an elegant way to implement the idea of an adversarial network component into the existing flow matching / diffusion frameworks by extending the time domain to [-1,1] where [-1,0] corresponds to the fake data domain.
+- The presented method shows strong results on the image generation benchmarks GenEval, DPG-Bench and WISE
+
+### Weaknesses
+- Intuition and explanation:
+While the intuition of an adversarial component is clear in DMD is clear, certain design choices had to be taken to make this method work:
+a) Representing fake data by negative time steps
+b) Having the adversarial loss learning the negative trajectory
+c) A rectification loss that should straighten the trajectory
+Further, during training N=2 is adopted, meaning 2nd order approximations are done in the RCGM framework, giving a strong few-step prior.
+The paper does not fully explain why the negative time trajectory is required and why the rectification component ultimately converges to a single step solution. If this was not investigated but only empirically observed, this needs to be clearly pointed out
+The strength of the method could be better explained in more simple settings such as CIFAR10 or Image1K.
+
+- Evaluation and Results:
+Almost all evaluations have been done on text-to-image benchmarks. This comes with additional complexity in the evaluation as e.g. diversity of images for the same text prompt multiple times (as pointed out by the authors in Table 2). While not explicitly mentioned in the main paper, the method seems to perform worse on other (simpler) benchmarks as e.g. Image-1K 256x256. In fact the 2 step FID of Twinflow trained for 801 epochs mentioned in the appendix (FID=2.05) is larger than the pure RCGM FID value after 424 epochs (FID=1.92, see https://github.com/LINs-lab/RCGM/blob/main/assets/paper.pdf).
+Qwen-Image-Lightning is 1 step leader on the DPG benchmark and should be marked like this in Table 2
+
+- Distillation / Fine Tuning vs. Full training method:
+Qwen-Image-TwinFlow (and possibly also TwinFlow-0.6B and TwinFlow-1.6B, see question below) leverages a pretrained model that is fine-tuned. In this case the pretrained model somehow acts as a “teacher” adding stability to the fine-tuning i.e. as the fake data predictions.
+However, when training from scratch the optimization problem becomes significantly harder. Possible stability issues and their solutions are not discussed in the paper.
+
+- Unclear writing:
+In several parts of the paper, i.e. the methodology section, it is not always easy to follow the equations as variable names are not always defined or used in a consistent manner (see questions below)
+
+### Questions
+- In Eq. 1 it is not defined what $f_\Theta-$ is?
+- In Eq. 2, does $z^{fake}$ correspond to $z$ that is also used in the base component of the loss to ensure alignment?
+- Eq. 2 has the objective to learn the negative time time trajectory. Why is it chosen differently to the normal base loss?
+- In Eq. 8 and 9: Did I understand correctly that $x_t$ corresponds to $x_{t’}^{fake}$?
+- On intuition and explanation of weaknesses: Can you give more information on the addressed point?
+- Instead of using a negative time trajectory, would a simple boolean condition as model input that indicates fake or real data also work?
+- Given the adversarial components do help the 1 / 2 step predictions, do they also help to improve many step predictions e.g. 50 or 100 NFE’s ?
+- On the Qwen-Image-Lightning diversity discussion: The shown results in the appendix support the “almost identical image” claim, but do - not seem sufficient. Can you quantify or provide more examples to support this claim?
+- In Table 2: Why is the performance increase of the method better on Qwen-Image than on OpenUni for 1 and 2 steps?
+- Can you clarify if TwinFlow-0.6B and TwinFlow-1.6B leverage a pretrained backbone that is full parameter finetuned or if these two models are trained ab-initio / from scratch? What about the ImageNet-1K results mentioned in the appendix?
+
+- Minor comment:
+Typo in Line 201: “to match with us”, probably “to match each other”?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper introduces TWINFLOW, a novel framework for training one-step generative models that achieves efficient inference without requiring auxiliary discriminators or frozen teacher models. The key innovation is the "twin trajectory" concept, which extends the time interval from [0,1] to [-1,1], creating paired trajectories for real and fake data generation. By minimizing the velocity field differences between these trajectories, the method achieves self-adversarial training. The authors demonstrate TWINFLOW's effectiveness by successfully applying it to Qwen-Image-20B, achieving competitive 1-NFE performance that matches 100-NFE baselines while reducing computational costs by 100×.
+
+### Strengths
+- Successfully applying the method to 20B parameter models demonstrates promising scalability.
+- The 1-NFE performance closely matching 100-NFE baselines is impressive.
+
+### Weaknesses
+- Theoretical flaws. If I understand correctly, the paper trains a model with a single-timestep condition to handle generation at arbitrary steps. **However, such a model is no longer a score model, and using it in reverse KL to compute the gradient of logp is theoretically flawed**.
+- BLIP-3o-60K contains samples carefully generated using GenEval prompts, and training on BLIP-3o could yield very high GenEval scores. GenEval score is the primary metric used in this paper and highlighted in the abstract, which leads to an unfair comparison in this paper.
+- I think the benefits of integrating the real score, fake score, and generator—three models together—have been overly claimed. Particularly in the Qwen 20B example cited by the authors, all models use LoRA. For the distillation by reverse KL method, integrating two LoRAs onto the same model backbone does not bring about notable memory costs. And the GAN loss is an additional benefit; we can directly remove it and still achieve high performance.
+- The combination of reverse KL and consistency-like RCGM is straightforward. Besides, similar combinations have been explored in sCM [a].
+- The "twin trajectory" has been explored in FACM [b]. However, no discussion is found in the paper.
+
+[a] Simplifying, Stabilizing and Scaling Continuous-Time Consistency Models.
+[b] Flow-Anchored Consistency Models.
+
+### Questions
+See Weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/gTMzRm8fb0.md b/human_reviews/gTMzRm8fb0.md
new file mode 100644
index 0000000000000000000000000000000000000000..77c45851d30170ba553521a146bd88564e6f0223
--- /dev/null
+++ b/human_reviews/gTMzRm8fb0.md
@@ -0,0 +1,156 @@
+## Human Reviewer 1
+
+### Summary
+The paper proposes GoalRank, a novel framework for training a single-stage, large-scale ranking model to replace the inefficient traditional two-stage Generator-Evaluator (G-E) paradigm. The G-E paradigm suffers from performance saturation due to the vast combinatorial ranking space. GoalRank introduces the Group-Relative Optimization Principle, using a pre-trained Reward Model and relative normalization within a group of lists to construct a Reference Policy. This allows the single-stage model to be trained effectively, achieving a superior approximation of the optimal policy. The framework is theoretically proven to surpass finite G-E systems and validated on a massive industrial platform, showing significant lifts in core business metrics.
+
+### Strengths
+1. This work provides a strong theoretical proof that a sufficiently large single-stage ranker can achieve a strictly lower approximation error than any finite two-stage system, confirming its strong potential for scaling laws.
+
+2. The Group-Relative Optimization is an practical solution for training against the unobservable optimal policy in large-scale production environments.
+
+3. It achieved significant and convincing lifts in key business metrics during large-scale online A/B testing on a platform with over 500 million daily active users.
+
+### Weaknesses
+1. The paper’s academic context is weakened by placing related work in the appendix, and its scope is blurred between the ranking and re-ranking domains, leading to an incomplete set of comparative baselines. See details in Questions 2
+
+2. The theoretical proof is contingent on the optimal strategy $\pi^{*}$, which is substituted by an approximate Reward Model $\hat{r}$ in practice. While the paper claims robustness against bias in $\hat{r}$, the inherent difficulty in training a truly optimal reward model means this approximation gap remains a potential bottleneck, limiting the performance ceiling achievable in the real world.
+
+3. The overall reproducibility is a concern and the scalability experiments fails to demonstrate that other, more sophisticated single-stage solutions (beyond simple DNNs) cannot also achieve similar or superior scaling behavior.
+
+### Questions
+1. Placing the Related Work section entirely in the appendix detracts from the integrity of the main paper structure, making it difficult for the reader to immediately contextualize the work against existing literature during the initial review.
+
+2. The paper's claimed field focus is sometimes ambiguous. While positioned as a solution for ranking, many of its baselines and related works cited (e.g., DLCM, PRM) are strongly associated with the re-ranking. If the work truly aims to target the ranking field, it should include comparisons against more foundational CTR-prediction methods and other contemporary Large Ranking Model (LRM) approaches like RankMixer: Scaling Up Ranking Models in Industrial Recommenders. If this work focuses on reranking, why not use some datasets and experimental settings more commonly used in the reranking field, such as Avito and Kuaishou?
+
+3. Key engineering details, such as the specific construction of the Auxiliary Ranking Policy Group ($\mathcal{B}$) and the exact large model architecture, are either simplified or omitted.
+
+4. The scalability experiments primarily focus on demonstrating superiority over the two-stage (G-E) paradigm, which quickly saturates. However, the comparison within the single-stage paradigm only includes simple DNN baselines. The paper fails to demonstrate that other, more sophisticated single-stage solutions (beyond simple DNNs) cannot also achieve similar or superior scaling behavior.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes GoalRank, a novel ranking framework that replaces the complex Multi-Generator-Evaluator paradigm with a single large generator model. The contributions are threefold: theoretically, it proves that a sufficiently large generator can better approximate the optimal ranking policy than any finite M-G-E system, with error decreasing via scaling laws; methodologically, it introduces group-relative optimization, which trains the generator using robust relative comparisons within list groups rather than absolute rewards; empirically, large-scale offline and online experiments demonstrate consistent and significant improvements over state-of-the-art baselines, validating the framework's effectiveness and scalability.
+
+### Strengths
+1. The paper provides a rigorous theoretical proof that a single large generator can surpass any finite M-G-E system, with a clear scaling law. This theory is strongly supported by empirical results, creating a cohesive narrative.
+2. The proposed group-relative optimization is an innovative solution for training large rankers. It effectively leverages relative comparisons within groups to create a robust training signal that is resilient to reward model bias.
+3. The paper offers thorough validation, from offline benchmarks to large-scale online A/B tests on a major platform. The consistent and significant improvements across both academic and business metrics convincingly demonstrate real-world impact.
+
+### Weaknesses
+1. The training process itself is complex and resource-heavy, The proposed method shifts complexity to the training stage, requiring a costly and intricate pipeline, especially for large-scale industry recommendation systems.
+2. The architectural details and specific implementation of the generator model itself are not sufficiently elaborated, making it difficult to fully assess the proposed method's design choices and reproduce the results.
+3. The monolithic generator is inherently less adaptable to new business objectives compared to the more modular M-G-E paradigm, which allows for quicker adjustments.
+
+### Questions
+1. If you need the model to optimize for a new goal (like promoting new content instead of maximizing watch time), how would you adapt GoalRank without having to retrain the whole model from scratch?
+2. How important is the quality and variety of the helper models used to create the candidate lists? Could a poorly chosen set of helpers limit how good GoalRank can become?
+3. Since GoalRank learns from the reward model's relative rankings, is there a risk that it could also learn and even amplify any biases that exist in that reward model?
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes GoalRank, a framework advocating for a shift from multi-stage Generator-Evaluator (G-E) ranking paradigms to a single-stage, "Generator-only" (G-only) model. The authors present a theoretical argument that a single large generator can better approximate the optimal ranking policy than any finite G-E system. For training, they introduce "Group-Relative Optimization," which uses a reward model to create a reference policy from a group of candidate lists, serving as a learning target.
+
+### Strengths
+1. Empirical Validation: The inclusion of a online A/B test on a major commercial platform is a significant strength, providing real-world evidence of the model's effectiveness in a production environment.
+2. Clarity and Scope: The paper is well-written, clearly articulating its motivation and methodology. The experiments are extensive, covering multiple datasets and demonstrating a clear scaling law, which adds valuable empirical data to the field.
+
+### Weaknesses
+1. Experimental Fairness: The experimental comparison between GoalRank and the G-E baselines raises fairness concerns.
+- The GoalRank framework relies heavily on a powerful, pre-trained Reward Model to provide its training signal. This reward model is functionally equivalent to an evaluator, albeit used offline.
+- For a fair comparison, the G-E and MG-E baselines should have been equipped with the exact same reward model to serve as their online evaluator. Without this, the observed performance lift of GoalRank may not stem from the superiority of its "G-only" architecture but rather from the fact that it was trained by a more powerful "teacher" (the reward model) than the evaluators used by the baselines.
+2. Positioning of the paper: The fundamental goal of both GoalRank and listwise learning to rank (LTR) is the same: to learn a function that can optimally order an entire list of items by considering the items collectively, rather than in isolation. What are the differences between them?
+3. Practicality and Online Feasibility: While the paper demonstrates strong online performance, it omits a critical discussion of the training cost. The "Group Construction" step requires generating and evaluating multiple lists for every training sample, which implies a training cost that could be orders of magnitude higher than for the baseline models. This potentially prohibitive cost could severely limit the model's practical applicability in industrial settings that require frequent retraining.
+
+### Questions
+Please refer to the weakness section.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes GoalRank, a single-stage large-model ranking method based on Group-Relative Optimization. The authors demonstrate that a sufficiently large generator model can more closely approximate the optimal ranking strategy compared to the traditional two-stage "generator-evaluator" framework. GoalRank is trained by constructing a reference policy using a reward model, significantly outperforming existing methods on multiple public datasets and industrial-grade online tests, and exhibiting good scaling law and improved real-world business performance.
+
+### Strengths
+Theoretically Superior: It has been theoretically proven that a single large-scale generator model can approach the optimal ranking strategy more closely than the traditional multi-generator-evaluator framework, and it exhibits scalability (scaling law).
+
+Simpler Structure: Employing an end-to-end architecture with a single-stage generator eliminates the evaluator stage, avoiding inconsistencies between multiple stages and making model design and training processes more unified.
+
+### Weaknesses
+Limited Adaptability: As a single generator model, it lacks the flexibility of an independent evaluator. When business objectives or optimization metrics change frequently, model adjustment costs are high, making it less adaptable than a two-stage architecture.
+
+Strong Dependence on Reward Model: The training process relies on a reward model trained based on user feedback. If the reward model is biased or noisy, it may lead to inaccurate reference strategies, affecting overall ranking quality.
+
+High Training and Resource Costs: GoalRank's core advantage comes from large-scale models and group optimization, but this also means higher computational resources and training costs, making it less friendly to small- to medium-scale application scenarios.
+
+Lack of Strong Baseline Comparisons: The lack of comparisons with baselines for solving large candidate ranking, such as Onerec and Tiger, makes the paper's experimental results less convincing.
+
+The paper's writing is confusing and difficult to understand.
+
+### Questions
+See the weaknesses.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/i9q9xDMjG7.md b/human_reviews/i9q9xDMjG7.md
new file mode 100644
index 0000000000000000000000000000000000000000..e59e098a53ab781b2f74bdc7d53372786f1959e7
--- /dev/null
+++ b/human_reviews/i9q9xDMjG7.md
@@ -0,0 +1,152 @@
+## Human Reviewer 1
+
+### Summary
+This paper systematically investigates when and why graph structures benefit retrieval-augmented generation systems, introducing **GraphRAG-Bench** to evaluate GraphRAG models across hierarchical knowledge retrieval and deep contextual reasoning, and providing empirical insights and guidelines for their practical application.
+
+### Strengths
+1. This paper addresses the key research question of when graph structures truly improve RAG performance.
+2. This paper provides extensive experimental evidence through the new GraphRAG-Bench benchmark.
+3. This paper offers concrete recommendations and design principles for advancing the GraphRAG community.
+
+### Weaknesses
+1. **The implementation details of the evaluation metrics are not clearly specified.** It seems that both *Faithfulness* and *Evidence Coverage* rely on external judgment models, such as *LLM-as-a-Judge*, but the paper does not disclose the exact implementation of this component.
+
+2. **The scale of retrieved content among methods appears inconsistent**. According to Section H.2 *Configuration*, the retrieval strategies of RAG and different GraphRAG variants are not aligned—for example, RAG restricts the Top-K to 5. This inconsistency may affect the fairness of performance comparisons.
+
+3. **The potential mechanisms through which *Graph Indexing content* influences various tasks deserve further study**. Statistics in Table 15 show that different GraphRAG strategies employ distinct types of indexed content, such as text chunks, communities, entities, and relationships. For instance, could the inclusion of *community* information better support *contextual summarization* tasks?
+
+4. **How corpus characteristics affect the choice of GraphRAG remains an open question**. Although the paper thoroughly investigates when to use GraphRAG from the perspective of task properties and performance, Sections C.1 and D further discuss the traits of the selected *Medical* and *Novel* corpora, as well as the yet-unexplored *Legal* and *Financial* domains. Extending the study of "When to use GraphRAG" to domain-specific corpora would significantly strengthen the work.
+
+### Questions
+As discussed above in Weakness.
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes GraphRAG-Bench, a comprehensive benchmark for systematically evaluating GraphRAG models in terms of hierarchical knowledge retrieval and deep contextual reasoning.
+
+This benchmark covers both tightly structured domain data (medical data from NCCN guidelines) and loosely organized texts (novels from Gutenberg library), and focuses on 4 tasks with different difficulty levels, from easy to difficult, including fact retrieval, complex reasoning, contextual summarize, creative generation. This paper provides an evaluation framework with clear quantitative metrics that assesses graph construction, retrieval, and generation performance.
+
+This paper conducted extensive experiments to evaluate multiple GraphRAG methods against RAG, with GPT-4o-mini and Qwen-2.5-14B as base LLMs. The experiments show that GraphRAG outperforms RAG in complex reasoning, summarization, and creative tasks, while it does not hold an advantage in simple retrieval. Based on the experimental results, the paper offers practical guidelines, indicating that GraphRAG is suitable for multi-hop reasoning and knowledge integration tasks, while it is not applicable for single-step retrieval or latency-sensitive scenarios.
+
+### Strengths
+- This benchmark focuses on tasks with different difficulty levels, reflecting real-world scenarios demanding complex logical synthesis.
+- This benchmark provides a comprehensive evaluation for GraphRAG with clear quantitative metrics, including graph structure, retrieval performance, efficiency, and final output quality.
+- Based on thorough experiments across multiple GraphRAG methods, LLMs, and tasks, this paper offers clear and practical guidelines on when GraphRAG outperforms traditional RAG.
+
+### Weaknesses
+- The calculation process for some evaluation metrics is simplistic and unclear. For example, the paper does not explain how it determines whether a claim $c$ is supported by the context $C$ when calculating EVIDENCE RECALL and FAITHFULNESS.
+- The process of Logic and Evidence Extraction is not clearly described either in the main text or the appendix. While the use of GPT-4.1 is mentioned, the specific extraction procedure and output format are not illustrated clearly.
+
+### Questions
+Refer to Weaknesses.
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper systematically investigates when graph-based retrieval augmentation (GraphRAG) surpasses traditional RAG, revealing that GraphRAG excels in complex reasoning and structured knowledge integration while RAG remains more efficient for simple retrieval tasks.
+
+### Strengths
+This work tackles the key open question of when graph-based retrieval truly benefits RAG systems, bridging a major gap in empirical understanding. Through dense, well-controlled experiments across domains and tasks, it provides strong, data-driven evidence supporting its conclusions and design insights.
+
+### Weaknesses
+1. The proposed four-level task hierarchy is claimed that task difficulty increases along the retrieval difficulty and reasoning complexity. However, this paper do not provide formal or operational definitions for these levels—there are no explicit thresholds for evidence quantity, reasoning steps, or context length that determine the boundaries between levels.
+
+2. The benchmark does not disclose the absolute corpus size for the Novel and Medical datasets. Consequently, it remains unclear how GraphRAG’s performance scales with corpus size. Without controlled experiments across small, medium, and large datasets, the current results cannot confirm whether the observed improvements stem from the graph structure itself or from differences in data volume and density.
+
+3. The paper does not empirically analyze how different indexing contents—such as entities, relationships, phrases, or communities—affect GraphRAG performance. Although Table 15 summarizes the indexing types used by various implementations, these differences are only descriptive and intertwined with other design factors like retrieval strategies and graph density.
+
+4. The paper does not evaluate GraphRAG on time-sensitive or temporally evolving datasets. The current study’s exclusive focus on static corpora (medical guidelines and classical novels) means it cannot assess how graph-based retrieval performs under temporal drift or continuous knowledge refresh.
+
+### Questions
+As discussed above in weakness.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper discusses and tests the advantages and disadvantages of GraphRAG compared to vanilla RAG. To achieve this goal, the authors discusses the limitations of existing benchmarking datasets for GraphRAG/RAG-related systems and propose GraphRAG-Bench, a benchmark on knowledge retrieval and contextual reasoning. GraphRAG-Bench not only focus on testing a model’s ability to correctly retrieve necessary information, but also tests the model’s ability to reason in complex scenarios. It contains 4 types of tasks: Fact Retrieval, Contextual Summarize, Complex Reasoning and Creative Generation. The process of constructing the dataset is also introduced, with 6-steps - Corpus collection, Logical Mining, Evidence Collection, Question Generation, Check, and Refinement. With this benchmark, authors systematically checked the condition when a series of GraphRAG works.
+
+### Strengths
+1. This paper studied a fundamental and important problem. GraphRAG is trending, demonstrating good motivation. The proposed benchmark provides rooms to systematically examine the advantage of different GraphRAG systems.
+
+2. This manuscript identifies key limitations of existing RAG benchmarking datasets, including neglecting the evaluation of logical reasoning, limited corpus coverage, and focusing only on end results.
+
+3. Apart from general QA, the proposed benchmark includes a set of tasks, including Fact Retrieval, Contextual Summarize, Complex Reasoning and Creative Generation, which allows users to comprehensively evaluate retrieval and reasoning capabilities of RAG systems from different perspectives.
+
+### Weaknesses
+1. The dependence of GraphRAG on LLM ability. The authors tested two models (GPT-4o-mini and Qwen2.5-14B) on the benchmark. However, the analysis of how GraphRAG depends on the ability (size) of LLMs is missing. It would be nice if the author could give some analysis on the minimum size for a successful GraphRAG.
+
+2. Some of the multi-hop QA datasets, which contains QA pairs with various question types and different difficulties, such as CWQ, MuSiQue, and 2WikiMultihopQA, are not discussed in this manuscript.
+
+3. This paper lacks a concrete explanation of how the raw text corpus is organized into an ontology by GPT-4.1. This task can be challenging, hence one may need to recognize entities and relations, and then perform necessary disambiguation procedures.
+
+4. The proposed benchmark does not evaluate the efficiency of graph construction. Ignoring graph construction efficiency is justifiable only if the constructed graph can be reused across a wide range of scenarios.
+
+### Questions
+1. This reviewer is interested to know the reason why some GraphRAG systems, such as ToG, ToG2.0, GNN-RAG, SubgraphRAG are not taken into comparison.
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/ikthqd3qF4.md b/human_reviews/ikthqd3qF4.md
new file mode 100644
index 0000000000000000000000000000000000000000..8db9d29dfdc183f065dcd7049b8e3966c4dd88d1
--- /dev/null
+++ b/human_reviews/ikthqd3qF4.md
@@ -0,0 +1,197 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces a novel unsupervised evaluation method for anonymous record linkage, addressing the key challenge of assessing model performance without labeled training data. The approach derives observable lower bounds on precision and relative recall by leveraging a structural constraint namely, the limited number of positive outcomes (matches) a single individual can have. This framework enables principled model selection and hyperparameter tuning for linkage tasks where labels are unavailable. The authors demonstrate their method on the Home Mortgage Disclosure Act (HMDA) dataset, detecting “cross-applicants” who submit multiple loan applications without the use of personal identifiers. Their approach achieves 92.3% precision with minimal relative recall loss, showing strong practical utility for privacy-preserving linkage tasks.
+
+### Strengths
+1. The work directly tackles the fundamental challenge of evaluating record linkage in anonymized or unlabeled settings, a recurring issue in privacy-preserving data integration.
+
+2. The derivation of lower bounds on observable precision and recall is elegant and grounded in sound probabilistic reasoning, ensuring a strong theoretical foundation.
+
+3. By avoiding the need for labeled data, the approach is highly applicable to sensitive domains (finance, healthcare, census) where privacy laws restrict data linkage supervision.
+
+4. The empirical case study provides a realistic and policy-relevant use case (loan applications), illustrating the method’s feasibility in detecting duplicate or related records.
+
+### Weaknesses
+1. The evaluation is based solely on HMDA data, which may not represent broader linkage challenges across diverse domains (e.g., healthcare, e-commerce, or census data).
+
+2. The method relies on the assumption that each individual can have only a limited number of positive outcomes, which might not hold in certain contexts (e.g., multiple affiliations or family-linked entities).
+
+3. The paper does not explore how the model behaves under record duplication errors, partial overlaps, or noisy features, which are common in real-world datasets.
+
+4. While “relative recall” is useful when ground truth is unavailable, its interpretability for practitioners is limited compared to traditional recall metrics.
+
+### Questions
+1. How tight are the proposed lower bounds on precision and recall under different data distributions?
+2. Have you analyzed how these bounds behave under class imbalance or varying linkage density?
+3. How sensitive is the framework to violations of the “limited positive outcomes per individual” assumption?
+4. Could false assumptions lead to overly optimistic or pessimistic estimates of performance?
+5. How easily can this method generalize to other types of anonymous linkage problems, such as medical patient records or transactional data, where the constraint structure differs?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes a novel framework for evaluating unsupervised record linkage algorithms without labeled training data. The authors derive observable lower bounds on precision and relative recall by exploiting a structural constraint: individuals can have at most one positive outcome (e.g., originate only one first-lien mortgage). They demonstrate their approach on HMDA mortgage data using hierarchical agglomerative clustering to identify cross-applicants (individuals submitting multiple applications), claiming 92.3% precision at their preferred specification.
+
+### Strengths
+**S1**- Novel Theoretical Contribution: The derivation of observable lower bounds on precision and relative recall without labels (Theorem 1 and Corollaries 1-2) is genuinely innovative. The key insight—exploiting structural constraints where individuals can have atmost one positive outcome, is elegant and addresses a real gap in unsupervised learning evaluation.
+
+**S2**- Domain-Agnostic Framework: The method is algorithm-agnostic and generalizable beyond mortgages to insurance, college admissions, job applications, etc., which significantly broadens its impact.
+
+**S3**- Computational Efficiency: Using the nearest-neighbor chain method for hierarchical clustering with $O(l^2)$ complexity is practical for large datasets.
+
+**S4**- Strong Empirical Validation: The simulation results (Figure 3a, 4a) show close correspondence between true precision and bounded precision, validating the theoretical framework.
+
+### Weaknesses
+**Criticals**
+
+**CW1**. Assumption 1 (independence of origination decisions across borrowers) ignores supply constraints, market-level shocks, and spatial correlation in mortgage markets. Assumption 2 (monotonically increasing origination probability) contradicts observed credit score degradation from multiple inquiries. **Neither assumption receives empirical validation**.
+
+**CW2**- Theorem 1 provides Pr[False] ≤ Pr[Mult]/p², but the gap between the lower bound (92.3%) and true precision remains unquantifed. Lemma 1 only shows Pr[Mult|False] ≥ p², not equality. the expectation is the simulation data with ground truth should quantfy this gap.
+
+**CW3**- All clusters with >2 applications are dropped without justification. This limitation leaves critical questions unanswered: What fraction of true cross-applicants submit 3+ applications? How does this affect recall? The theory should extend to larger clusters or justify the restriction.
+
+**CW4**- The paper lacks any comparison to established methods: Fellegi-Sunter probabilistic linkage, deep learning entity resolution, alternative clustering algorithms (DBSCAN, spectral clustering), or existing evaluation methods for record linkage without labels. **Cannot assess whether the approach is actually useful**.
+
+**CW5**- Testing 96 combinations of distance functions and tolerance parameters with no principled selection criteria. Partition variables (census tract, property type, race, sex, age) lack sensitivity analysis for misreporting or changes. **No guidance for practitioners on feature selection for new applications**.
+
+**CW6**- Selection Bias from Filtering False Positives: dropping clusters with multiple originations improves precision but creates selection bias—the bound in Equation (1) applies only to the filtered sample, conflating "identifying cross-applicants" with "removing obvious errors." This undermines the evaluation framework's integrity.
+
+**Minors**
+
+**MW1**- Validation Using Behavioral Patterns is Circular: Figure 7 "validates" the results by showing: applications in clusters are close in time (Figure 7a) and denied applicants improve their profiles (Figures 7b-d). But these patterns are exactly what the clustering algorithm was designed to find! This is not independent validation.
+
+**MW2**- No Ground Truth Validation Subsample: The paper has access to confidential HMDA data. Why not:
+
+ - Create a subsample with validated matches (manual review, SSN matching if available)
+
+ - Test the bounds against ground truth
+
+ - Validate Assumptions 1-2 empirically
+
+### Questions
+Weak points and following questions:
+
+**Q1**- Lemma 1 Proof: The proof shows ∂g/∂k ≤ 0, but the calculation seems to have a sign error. With g(p,k) = (1-p)^(k-1)(1 + p(k-1)), shouldn't the derivative with respect to k include the product rule more carefully?
+
+**Q2**- Why Complete-Linkage?: The paper uses complete-linkage clustering (maximum distance within cluster ≤ ε) but doesn't justify this choice over single-linkage or average-linkage. Complete-linkage is sensitive to outliers—is this desirable?
+
+**Q3**- How are Ties Handled?: When d(xj, xj') = ε exactly, are applications clustered together or separated? This could materially affect results at the boundary.
+
+**Q4**- Corollary 2 Interpretation: The weighted F-score bound depends on unknown Ptot. The paper claims you can "maximize" the bound, but without knowing Ptot, how is this operationalized?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes a method to evaluate anonymous record linkage without labeled data by exploiting structural exclusivity constraints, such as the one-loan-per-borrower rule for first-lien mortgages. Predicted links are produced by agglomerative clustering within partitions defined by variables presumed constant for an individual, and performance is lower-bounded using the observed frequency of clusters with multiple originations and the unconditional origination rate. The empirical application to confidential HMDA demonstrates that the approach can tune clustering hyperparameters to trade precision against sample size and reports high implied precision at the preferred setting. The simulations + diagnostics help illustrate the mechanism and the practical choices in distance metrics and hyperparameter thresholds.
+
+### Strengths
+The central idea of converting an exclusivity constraint into observable bounds on precision and relative recall is useful when ground truth is unavailable. The theoretical connection between multiple originations in a cluster and a lower bound on precision is simple but general. The framework is method-agnostic with respect to the label generator, which makes it potentially compatible with many record-linkage pipelines. The empirical exercise is large-scale and carefully engineered, and the precision–sample-size frontier usefully visualizes the tuning trade-off. The application to cross-applicants has clear downstream consequences for auditing and market monitoring.
+
+### Weaknesses
+- The approach does not, I think, engage much with existing approaches seeking to do something similar (e.g., Enamorado et al. 2019 or the long-standing Bayesian record linkage literature). Some of the methods among those existing approaches could be important points of empirical comparison. It is not clearly how proposed method compares against existing baselines.
+
+- The approach relies on an accurate unconditional origination probability despite likely heterogeneity across observables and time. Because the bound uses a single p, subpopulations with lower approval rates will have fewer multiple-origination events even when merges are spurious, which could make the bound optimistic in those strata.
+
+- The assumptions of independence across borrowers and monotonicity in the number of applications are possibly strong in mortgage settings where tract-, lender-, and time-level shocks could induce correlation; the direction of bias will vary with the sign of these correlations, so sensitivity analyses would be helpful.
+
+- The empirical validation is confined to mortgages. The framing and notation are tailored to this case, which risks overstating generality; the paper would be stronger with a second, unrelated domain where an exclusivity rule holds.
+
+- As noted earlier, the clustering component is narrow relative to the entity-resolution literature. Agglomerative complete-linkage with an L2-style distance is a reasonable baseline, but there is little comparison against alternative linkage strategies such as Bayesian or probabilistic record linkage, graph-based community discovery, or modern embedding-based similarity, which makes it hard to assess performance.
+
+- The practice of dropping clusters with multiple originations both changes downstream estimands and the lower bound on algorithm precision, while introducing researcher discretion; the paper derives an adjusted bound, but it would help to articulate ex-ante decision rules or heuristics.
+
+- The claim that the rate of clustering merges is itself informative about quality is asserted in prose but not fully substantiated empirically; more direct evidence or illustration would clarify how this guidance should be operationalized.
+
+- Finally, the empirical section could be clearer about the nature of second applications—whether they are rejected-then-resubmitted cases or different-lender near-duplicates—since this affects the interpretation of some of the results.
+
+### Questions
+- How sensitive are the precision and recall bounds to replacing the single (I believe) unconditional origination rate with subgroup-specific or time-varying rates, for example, by tract, month, lender, or applicant score bins, and does this materially change the chosen tuning parameter, epsilon?
+
+- Can the independence assumption be relaxed by allowing within-cell correlation and reporting bounds as a function of an intraclass correlation parameter, along the lines of a worst-case analysis?
+
+- What happens when there are essentially no true matches in a partition or dataset? A negative-control-style exercise would help ensure the procedure does not fabricate cross-applicants.
+
+Can the authors provide head-to-head comparisons with representative alternatives from probabilistic record linkage, Bayesian entity resolution, and embedding-based similarity, or other clustering strategies?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes a basic distance base method to cluster records and identify mortgages that may be submitted by the same individuals
+
+### Strengths
+The problem is interesting and some theoretical results are provided.
+
+### Weaknesses
+The approach is evaluated on only a single dataset, which limits the strength and generalizability of the conclusions. There exists a rich body of literature on the record linkage problem, along with many publicly available benchmark datasets that could have been leveraged to provide a more comprehensive evaluation.
+
+More importantly, there is no comparison with other established baselines. It would be useful to include comparisons with both simple heuristic methods and more advanced approaches, such as those incorporating embedding-based similarity measures, to better assess the effectiveness of the proposed method.
+
+### Questions
+None.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/k6nTUFoqeT.md b/human_reviews/k6nTUFoqeT.md
new file mode 100644
index 0000000000000000000000000000000000000000..58c6fc3c14bbea9d9dddba19ce87684228d97cfb
--- /dev/null
+++ b/human_reviews/k6nTUFoqeT.md
@@ -0,0 +1,173 @@
+## Human Reviewer 1
+
+### Summary
+The paper introduces FASTer, an approach for discrete-token action generation for VLA policies:
+
+- **FASTerVQ (tokenizer)**: A transformer autoencoder with residual VQ (RVQ) over an action patchifier. Training uses a dual-domain reconstruction loss (temporal L1 + DCT-domain L1) to preserve both low and high-frequency motion. The result is a compact, balanced code usage with improved reconstruction.
+
+- **FASTerVLA (policy)**: An autoregressive (AR) policy that (i) adds an action-expert head, (ii) uses RoPE spacing augmentation to avoid positional overfit on fixed horizons, and (iii) employs Block-wise Autoregressive (BAR) decoding with a coarse-to-fine order under a block-causal mask. The paper additionally sketches a “real-time chunking (RTC)” regime for asynchronous control via stochastic training and lightweight logit ensembling.
+
+Across simulators and real-robot setups, the method reports higher success rates and lower inference latency than prior AR tokenizers (e.g., FAST/FAST+), with competitive results to continuous flow/diffusion policies in some regimes. Ablations examine tokenizer design (codebook sizes, RVQ depth, losses) and decoding choices, and provide analysis on vocabulary utilization and reconstruction-error vs compression.
+
+### Strengths
+- While built from known parts (transformer RVQ with time+DCT loss, block-wise causal masks for AR, coarse-to-fine action decoding), the specific combination is novel for VLA setting and practically impactful for AR control policies.
+- Extensive tokenizer analysis (codebook utilization, reconstruction vs compression rates) and sensible ablations on RVQ/codebook design choices. Reported latency reductions are compelling for real-time control discrete AR policies.
+- Method components are described clearly. Design choices are well-motivated (e.g., position overfitting on fixed horizon actions, the coarse-to-fine decode order is intuitive and naturally follows RVQ) accompanied by real world and simulation benchmarks supporting the method.
+- Improving throughput/latency without giving up success is valuable in robotics. The work should be useful to groups deploying AR VLAs where continuous policies are costly to train.
+
+### Weaknesses
+It is known that diffusion/flow based are slower to train compared to autoregressive models, the paper should report compute comparison between baselines to accurately place the gains in context. I still believe given sufficient compute continuous diffusion/flow policies would outperform discrete AR policies. AR action heads trained with cross-entropy are brittle for real world control, exhibiting unpredictable bin prediction switches with little observation noise. CE loss is non-metric, it only cares about the probability on the ground-truth bin, no matter how the remaining probability mass is distributed among nearby vs far bins. Continuous policies avoid this by design as they directly penalize errors proportional to deviation. How much does the FASTerVQ tokenization mitigate this?
+
+### Questions
+- How does Block AR differ from similar approaches used in discrete diffusion literature (see Block Diffusion [1])? It would be good to position this paper appropriately and add references.
+- It would be good to have comparisons against $\\pi$-0.5 which is an improved version of $\\pi$-0 with better generalization.
+- Was a single policy trained for all LIBERO task suite or each LIBERO suite had a separate policy? OpenVLA-OFT attains higher success rate when using a single policy setting, so the paper should clarify here and update the results accordingly. OpenVLA-OFT also has a FiLM variant which improves language grounding. Please take a look at Appendix in [2] for details and update accordingly.
+- There seems to be some discrepancy in reported latencies for different models and OpenVLA-OFT paper Table III, some clarification here would be helpful. also the main paper should include inference time analysis, detailing out inference latency, action chunk size used and max control frequency supported.
+- Could you provide some insight on Figure 5 (c)? Why compression ratio is so different for different dataset?
+
+
+[1] Block Diffusion: Interpolating Between Autoregressive and Diffusion Language Models
+
+[2] Fine-Tuning Vision-Language-Action Models: Optimizing Speed and Success
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper studies the action tokenization problem, which is valuable for performance and efficiency of autoregression-based policy. The authors propose FASTer, an improved version upon FAST, by incorporating learnable vector quantization (instead of fixed procedure) to improve the compactness and fidelity of action tokenization.
+
+### Strengths
+- The paper studies an important problem that carries strong practical applications.
+- The proposed method makes sense, is simple yet effective.
+- The proposed method is extensively evaluated with different metrics, in diverse robot environments, including real-world.
+
+### Weaknesses
+- The texts in many figures are quite small and not easy to read especially when printed, particularly in Fig. 2 and Fig. 3.
+
+- Page 4 details the action tokenization process and components. I believe it would be easier for readers if there is an algorithm block that outlines this procedure, like FAST does. Currently, it takes some effort to gather everything from text.
+
+- [1] is a recent work that incorporates autoregressive action chunk generation without an explicit action tokenizer, and its proposed technique is very relevant to the block-wise autoregression. The authors are recommended to include this in the related work. [1] Autoregressive Action Sequence Learning for Robotic Manipulation (RAL 2025)
+
+### Questions
+- How does it work with diverse robots and action types? If I train a single FASTer tokenizer for multiple robots, does this mean (1) a slower encoding/decoding process, (2) a less compact coding?
+
+- Fig7 shows FASTer underperforms than Pi0 in in-distribution tasks. I understand the emphasis is OOD performance in that figure, but why is that?
+
+- Does the space augmentation only change position embedding, or actually change the sequence values? If the latter, is there an example of the space augmentation?
+
+- Regarding the block-wise autoregression, I am very interested in the step size (block size) in the autoregression. In the paper, the step size = B (size of one codeblock). But what would the performance possibly be if the block size is 1 or N, or other number? Does a irregular granularity will affect autoregression performance?
+
+- Is it possible to provide some failure cases and related analysis?
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper is about making (auto-regressive) vision language action models more useful in contexts like robotics where fast inference and precise reconstruction are important for overall system performance and inference time impacts which action frequency tasks can have. The main focus is on the action tokenization part. The approach designs action tokens (action representation) by performing residual vector quantization and trains reconstructing action sequences in the time and frequency domain (loss functions). This is supposed to result in compact and highly compressed action sequences. The inference approach infers multiple tokens in parallel by block-wise decoding. The paper also establishes a larger benchmark, collecting several real robots and simulations.
+
+Importantly, this approach is supposed to surpass non-auto-regressive models in inference speed and reconstruction accuracy.
+
+### Strengths
+- The paper is nicely written and pedagogical, especially the introduction section and the related work section.
+
+- The general idea of patchifying the continuous actions seems very reasonable.
+
+- RVQ is generally very suitable for this problem.
+
+- Adding the DCT to the step-wise reconstruction loss makes sense for capturing the overall trend as long as the action sequences behave with trends within horizon H.
+
+- The paper contains a large set of experiments and evaluations which provide insight in the performance and tradeoffs of the proposed method.
+
+### Weaknesses
+- The reusability in some figures is low due to the choice of colors, lack in contrast, and lack of clear captions. Page 7 is a good example for this issue. Red-green contrasts should be avoided in general.
+
+- There are a few types in the manuscript, repeated words, and wrong references (e.g. to Fig. 5 on page 7).
+
+### Questions
+- When introducing the VRR measure for evaluation, the authors write that a parameters is set "corresponding to an allowed error of approximately 1cm". It is not clear what this means. Is this 1 cm Euclidean error at the end-effector pose (in case of manipulation)? For many robotic tasks, 1 cm error is substantial and means that the execution of the task will fail. The authors might want to elaborate on the VRR. What happens if the threshold is set of 0.5 cm or 1 mm?
+
+- The related work section makes little effort to contrast the proposed method with the state of the art. While the experiments speak for themselves in terms of quantitative results, it would be an improvement if the authors could also argue the improvement over the state of the art conceptually.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes a new learnable tokenizer scheme based on residual vector quantization (RVQ) for robotic manipulation datasets. A custom action patchifier is used to group timesteps and physically similar action dimensions together which is subsequently fed into an RVQ model learning a coarse-to-fine representation of action signals. The tokenizer is trained on a combination of RVQ losses alongside local and global action reconstruction objectives. Furthermore, a custom VLA architecture utilizing the new tokenizer is presented which adds block-wise autoregressive prediction of multiple tokens with a custom decoding order to speed up inference.
+
+### Strengths
+- Overall, the paper is well written and clearly motivates the drawbacks of previous tokenizer designs in VLA models. It encompasses the most relevant previous work and gives a clear outlook of which open problems in the field it tackles.
+- The proposed tokenizer (FASTer) for VLA models addresses relevant challenges of action tokenization, such as achieving good reconstruction quality with high compression rates. The choice of RVQ for this task seems adequate and timely: Learnable tokenizers have shown strong initial results in robotics but rely on partially manual design for converting continuous signals into discrete codes.
+- The use of a custom decoding order in combination with the RVQ tokenizer is well thought out, resembling the strengths of diffusion-based action prediction heads (going from low frequency to high frequency reconstruction) without the need for diffusion training.
+- An extensive list of experiments is conducted, comparing FASTer VLA with relevant baselines such as pi0 using the FAST tokenizer on a wide range of benchmarks. Aside from inference speedups, FASTer VLA achieves broad success rate improvements across the board with only VLABench lacking behind, suggesting strong generality of the method.
+- The performance of the FASTer tokenizer itself is also analyzed properly, showing good scalability and generalization to out of distribution data.
+
+### Weaknesses
+- Aside from the LIBERO experiments in Table 1, most results seem to combine FASTer VLAs blockwise autoregressive decoding (BAR) with the FASTer tokenizer, making it difficult to judge the impact of the tokenizer itself on success rates. Optimally, a tokenizer should be mostly agnostic to the choice of architecture. This is partially shown in Figure 6 with different VLM backbones but still might rely on custom decoding schemes (see first question).
+- The encoding times of the FASTer tokenizer seem high (150ms on LIBERO) compared to the runtime of the base pi0 model. To the best of my understanding, the paper does not isolate the tokenizer runtime as a standalone metric in the inference speed results.
+
+### Questions
+- It seems that BAR decoding in combination with FASTer leads to significantly higher success rates than just using FASTer. Could we expect similar gains when using BAR in combination with other tokenizers? I would be curious to see the performance when using the FAST tokenizer with BAR to fully determine the benefits of FASTer versus FAST.
+- Similar to the previous question, I would be curious how much using BAR decoding offsets the potentially slow tokenizer.
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/lJ7zecny2e.md b/human_reviews/lJ7zecny2e.md
new file mode 100644
index 0000000000000000000000000000000000000000..f7947674e5be8c48ee8e5059c8a9c26f4adfe591
--- /dev/null
+++ b/human_reviews/lJ7zecny2e.md
@@ -0,0 +1,293 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces the Perceptually-Grounded Geospatial Chain-of-Thought (Geo-CoT), a framework intended to add verifiability to remote sensing VLMs by forcing them to link reasoning steps to visual evidence. The authors create a new dataset, Geo-CoT380k, by using GPT-4V to generate structured rationales for existing RS data. They propose a two-stage training strategy (SFT and GRPO) to train their model, RSThinker, on this new dataset. The resulting model, which outputs a reasoning trace, is shown to achieve strong performance on several remote sensing benchmarks.
+
+### Strengths
+1. The paper addresses the important and well-motivated problem of model verifiability, which is a significant barrier to using VLMs in high-stakes remote sensing applications.
+2. The proposed "Planning-Grounding-Synthesis" cognitive architecture is a promising and intuitive structure for modeling geospatial analysis.
+3. The public release of the Geo-CoT380k dataset is a potentially useful artifact that could spur further research into reasoning-based remote sensing models.
+4. The ablation studies clearly demonstrate that training with the CoT-structured data (SFT w/ CoT) yields significant performance gains over a baseline fine-tuned on answers alone (SFT w/o CoT).
+
+### Weaknesses
+1. The related work section is incomplete, failing to cite or discuss relevant prior work on CoT frameworks in other geographic contexts, such as GeoChain (Yerramilli et al., 2025) and Gaea (Campos et al., 2025).
+2. The paper's central claim of "faithfulness" is largely unsubstantiated. The Geo-CoT380k dataset, which underpins the entire method, is generated by GPT-4V. The authors' claim that this "ensures faithfulness by design" is a strong overstatement, as the LM may be generating post-hoc justifications that are plausible but not faithful, a bias the authors briefly acknowledge.
+3. The evaluation metrics do not actually measure faithfulness or verifiability. The paper presents strong accuracy metrics (mAP, MAE, Acc) but mistakes this for faithfulness. High accuracy does not prove the reasoning trace is correct or causal; the lack of any direct evaluation of rationale quality is a major omission.
+4. The methodological novelty of the training process is questionable. The description of Group Relative Policy Optimization (GRPO) appears to be a standard application of PPO rather than a novel algorithm.
+5. The SOTA comparisons are potentially flawed. RSThinker is fine-tuned on 380k CoT rationales, while the baselines were not. The performance gains may be a result of this massive, task-specific fine-tuning dataset, not a superior reasoning architecture.
+
+### Questions
+1. Given that "faithfulness" is the core claim, why was no human study conducted to validate the quality of the GPT-4V-generated rationales in Geo-CoT380k?
+2. How can you be sure the model's reasoning trace is causal to its answer, and not just a plausible justification generated in parallel to a "black-box" prediction?
+3. Can you clarify how GRPO is algorithmically novel compared to a standard PPO implementation with reward normalization?
+4. Wouldn't a fairer baseline comparison involve applying few-shot CoT prompting to the baseline models using exemplars from your dataset?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper addresses a critical limitation of current Vision-Language Models (VLMs) in the remote sensing domain: their tendency to function as "black boxes" that produce plausible but often incorrect and unverifiable responses. To foster more trustworthy AI, the authors introduce the Geo-CoT (Geospatial Chain-of-Thought), a novel framework that mandates a structured, step-by-step reasoning process where each analytical step is explicitly grounded in visual evidence from the image.
+
+To train models in this new paradigm, the authors have constructed Geo-CoT380k, a large-scale dataset of nearly 380k structured reasoning examples, by retrofitting verifiable rationales onto existing public datasets. They then propose a two-stage training strategy: first, Supervised Fine-Tuning (SFT) is used to instill the foundational cognitive architecture of Geo-CoT, followed by Group Reward Policy Optimization (GRPO), an outcome-based reinforcement learning stage, to incentivize the factual correctness of the reasoning. Their resulting model, RSThinker, demonstrates state-of-the-art performance across a comprehensive suite of multiple remote sensing benchmarks, validating the effectiveness of their approach.
+
+### Strengths
+1. **Addresses a Critical and High-Impact Problem:** The paper tackles a fundamental and highly relevant issue. The lack of interpretability and faithfulness in current VLMs is a major barrier to their adoption in high-stakes domains like disaster response and security. By emphasizing verifiable reasoning, this work makes a significant and timely contribution toward building more transparent and trustworthy AI systems for Earth Observation.
+
+2. **Novel and Well-Designed Framework:** The proposed Geo-CoT framework is a key innovation. It moves beyond generic Chain-of-Thought by requiring each reasoning step to be explicitly linked to visual evidence (perceptual grounding), a powerful concept for ensuring faithfulness. This forces the model to justify its claims with specific pixel regions, a common failure point for many VLMs.
+
+3. **Massive and High-Quality Dataset:** The creation of the Geo-CoT380k dataset is a monumental contribution in its own right. Its scale, diversity, and meticulous annotation process make it an invaluable resource for the entire remote sensing community. The semi-automated pipeline used to create it is a clever and practical approach to large-scale data generation.
+
+4. **Strong and Comprehensive Empirical Validation:** The paper provides a thorough and convincing experimental evaluation. RSThinker is benchmarked against a wide array of state-of-the-art models across a diverse set of tasks, ranging from object counting to complex VQA. The consistent and significant performance gains provide strong evidence for the superiority of the proposed approach.
+
+### Weaknesses
+1. **Methodological Novelty:** While the application of the two-stage training pipeline (SFT followed by RL) is highly effective, the paradigm itself is not new to the machine learning community. The primary contribution of this paper lies in the novel Geo-CoT framework and the creation of the dataset, rather than in the invention of a new training methodology. Acknowledging this and framing the work more explicitly as a novel application and extension of an existing paradigm would be beneficial.
+
+2. **Potential for "Faithful Hallucination":** The model is trained to generate plausible-looking reasoning chains. A potential failure mode is that the model could learn to generate a syntactically correct and seemingly logical reasoning chain that is, in fact, disconnected from the actual visual evidence. While the two-stage training process is designed to mitigate this, a more in-depth analysis of this potential failure case, perhaps through a targeted error analysis, would strengthen the paper's claims of faithfulness.
+
+### Questions
+Could you provide a more detailed error analysis to investigate the failure mode of "faithful hallucination," where the model generates a structurally correct but factually ungrounded reasoning chain? What mechanisms in your framework are most effective at preventing this?
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper introduces Geo-CoT, which explicitly injects verifiable intermediate evidence into multimodal reasoning. During SFT, the model learns spatially anchored reasoning traces (with boxes/coordinates); afterward, GRPO uses task metrics as rewards for alignment. The authors claim improvements in faithfulness and interpretability across several vision–language tasks.
+
+### Strengths
+The idea of tying visual localization to the reasoning chain so that intermediate evidence is checkable is intrinsically valuable.
+
+The framework is evaluated across diverse remote-sensing tasks (detection, counting, VQA, captioning)
+
+### Weaknesses
+1. The approach can largely be summarized as “structured CoT + RL with task-level rewards.” Compared with recent CoT+RLHF/RLAIF and visual-CoT lines, this feels more like an engineering integration than a conceptual/algorithmic advance.
+2. The collapse of the output format without KL suggests that the model may be learning templates rather than reasoning logic.
+3. The relevant work section should further elaborate on the differences in concepts and implementation between these recent visual CoT / RLAIF / GRPO-style methods
+4. Lack of specific failure cases and cause analyses
+5. Lack of few-shot or zero-shot (on broader datasets such as OPT-RSVG[1]) performance analysis
+6. I would like to know that the implicit understanding ability (like SegEarth-R1[2]) of the proposed method
+
+[1] Language-guided progressive attention for visual grounding in remote sensing images[J]. IEEE Transactions on Geoscience and Remote Sensing, 2024, 62: 1-13.
+[2] Segearth-r1: Geospatial pixel reasoning via large language model[J]. arXiv preprint arXiv:2504.09644, 2025.
+
+### Questions
+See Weaknesses
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces RSThinker, a vision–language model designed for faithful reasoning in remote sensing. The key idea is the Perceptually-Grounded Geospatial Chain-of-Thought (Geo-CoT) framework, which reformulates remote-sensing analysis as a multi-stage, verifiable reasoning process: planning → evidence collection → synthesis.
+
+To train such reasoning ability, the authors propose a two-stage alignment pipeline:
+ 1. Supervised Fine-Tuning (SFT) on a newly constructed Geo-CoT380k dataset, which contains structured reasoning traces aligned with spatial evidence;
+ 2. Group Relative Policy Optimization (GRPO) reinforcement learning, using task-specific metrics (mIoU, mAP, MAE, CIDEr) as direct rewards to encourage factual consistency.
+
+Experiments across six remote-sensing benchmarks (VG, detection, counting, classification, captioning, VQA) show consistent and sometimes striking improvements over both general and remote-sensing-specific VLMs. The paper claims that these gains stem from explicitly grounding reasoning steps to verifiable spatial evidence, rather than from larger training data or model size.
+
+### Strengths
+1) Problem significance: addresses the lack of verifiable reasoning in remote-sensing VLMs—a recognized bottleneck for high-stakes applications (disaster response, environmental monitoring).
+2) Conceptual integration: unifies planning–evidence–synthesis reasoning with spatially grounded supervision and metric-aligned RL—a combination rarely systematized before.
+3) Dataset & framework completeness: Geo-CoT380k provides the first large-scale, structured reasoning corpus in Earth observation; the pipeline is end-to-end reproducible.
+4) Empirical performance: substantial and consistent improvements across tasks; ablations confirm that both SFT and GRPO contribute.
+5) Broader impact: opens a pathway for “auditable” reasoning in multimodal models, extending beyond remote sensing.
+
+### Weaknesses
+1) Fairness and data leakage risk:
+Some evaluation benchmarks (e.g., VRSBench-VG, DIOR-RSVG) appear in the SFT or RL training corpus (Table 1 & 2), yet the baselines may be zero-shot.
+Without clear disclosure and matched fine-tuning, large performance gaps could reflect training data advantage.
+→ Action: provide a detailed train/test mapping table and equal-training baselines.
+2) Missing comparison to strongest related paradigms:
+Section 2.2 mentions MM-CoT but omits direct references to Grounded-CoT / Argus.
+→ Action: add a method-level comparison table clarifying differences (e.g., explicit spatial grounding, task-specific RL, remote-sensing scalability).
+3) Evaluation scope:
+The claim of “faithful reasoning” would be stronger with human or automated evidence–conclusion consistency scores.
+4) Reward design details:
+GRPO uses end-task metrics as rewards, but credit assignment to intermediate reasoning steps is under-specified; ablation on reward sensitivity is missing.
+5) Lack of failure-case analysis:
+The paper reports uniformly strong results but shows no failure examples or discussion of limitations.
+→ Action: include representative failure cases and categorize typical errors (e.g., grounding misalignment, reasoning inconsistency, hallucinated evidence).
+
+### Questions
+1) Please provide a complete table mapping each evaluation benchmark to its presence in the training corpus (SFT/RL), specifying which splits were used and ensuring no test leakage.
+2) Were baseline models fine-tuned on the same data or evaluated zero-shot? If fine-tuned, what settings were used?
+3) Could you report Seen vs Unseen benchmark results and a leave-one-benchmark-out generalization experiment?
+4) How is the GRPO reward computed per sample? Is it normalized by sample difficulty? Any instability observed when optimizing with heterogeneous metrics?
+5) Do you have any evidence-consistency or hallucination evaluation to support the claim of “faithful reasoning”?
+6) Please clarify whether RL rewards ever touched validation/test splits (they should not).
+7) For fairness, consider adding at least one grounded-CoT / Argus-style baseline to demonstrate that the gain is not purely due to data scale.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 5
+
+### Summary
+Authors propose a two-stage training strategy to obtain a reasoning model in the RS domain. First, they constructed a large-scale (380K) dataset of structured Geo-CoT rationales to SFT the base model, GLM-4.1V. Geo-CoT380K includes data from tasks such as VQA, Image Captioning, Scene Classification, Visual Grounding, Object Counting, and Object Detection. Then the SFT model is further trained via GRPO. The RSThinker model shows impressive performance on Grounding, Counting, Classification, VQA, and Captioning tasks, with reasonable, interpretable thinking process. The paper is well written and straightforward.
+
+### Strengths
+1. The RSThinker model shows impressive performance on Grounding, Counting, Classification, VQA, and Captioning tasks, with reasonable, interpretable thinking process.
+
+2. The prompts for generating Geo-CoT380K are well designed. Geo-CoT380K should be a high-quality SFT dataset for teaching the model to think.
+
+3. The tasks included in this paper are quite complete.
+
+4. In the RS domain, this is the first work I have seen that makes CoT-SFT + GRPO pipeline work.
+
+### Weaknesses
+1. The ablation study is quite brief. More analysis could be elaborated. (1) Is 380K CoT data necessary for teaching the model to generate CoT? (Are 50K, 100K, or 200K enough? Is this CoT-SFT stage mainly for activating the base model’s parameters to learn the reasoning pattern, or for injecting RS knowledge into a general base model?) (2) GLM-4.1V is already quite impressive on RS tasks, even in a zero-shot manner. Will this CoT-SFT + GRPO pipeline work for other base models such as InternVL-3.5 or Qwen3-VL?
+
+2. A crucial training detail is not disclosed. After SFT, do the authors train GRPO for each task independently or for all tasks jointly? For example, for the VG task, is the model tuned with GLM-4.1V + Geo-CoT380K (Stage I, SFT) + Geo-CoT380K-VG + Additional Dataset in Table 2 (Stage II, GRPO)? Or is it GLM-4.1V + Geo-CoT380K (Stage I, SFT) + Geo-CoT380K + Additional Dataset (Stage II, GRPO)?
+
+3. From Table 8, it seems GRPO does not improve the model capability very much after training with Geo-CoT. Is this improvement actually from GRPO, or from continued training?
+
+### Questions
+1. The result in Table 4 is not reproducible. I tried the GLM-4.1V-Thinking (zero-shot in VG) in a new conda GLM env, and only got 50.67 (compared with 63.8 in Table 4). The prompt is taken from GLM4.1V paper: "Tell me the position of the referred object in the picture. {Question} Answer in [x1,y1,x2,y2] format." and the corrdinate is normalized to 0-1000. It would be appreciate if authors can provide inference script (including prompt).
+
+2. I SFT the GLM-4.1V with the training set of VRSBench using llamafactory, the result is 62.06 (miou), which is far away from 87.7 in Table 8. It would be appreciate if authors can provide some of Geo-CoT data (VRSBench's training part) to verify.
+
+3. Is 380K CoT data necessary for teaching the model to generate CoT? (Are 50K, 100K, or 200K enough? Is this CoT-SFT stage mainly for activating the base model’s parameters to learn the reasoning pattern, or for injecting RS knowledge into a general base model?)
+
+4. GLM-4.1V is already quite impressive on RS tasks, even in a zero-shot manner. I wonder will this CoT-SFT + GRPO pipeline work for other base models such as InternVL-3.5 or Qwen3-VL in RS tasks? Will it works for weaker model like Qwen2.5-VL? Grounding task solely should be enough to verify.
+
+5. After SFT, do the authors train GRPO for each task independently or for all tasks jointly? For example, for the VG task, is the model tuned with GLM-4.1V + Geo-CoT380K (Stage I, SFT) + Geo-CoT380K-VG + Additional Dataset in Table 2 (Stage II, GRPO)? Or is it GLM-4.1V + Geo-CoT380K (Stage I, SFT) + Geo-CoT380K + Additional Dataset (Stage II, GRPO)?
+
+6. Will training all tasks jointly benefit the model capability?
+
+7. From Table 8, it seems GRPO does not improve the model capability very much after training with Geo-CoT. Is this improvement actually from GRPO, or from continued training?
+
+I will certainly raise the score if authors address (some) my concerns.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 6
+
+### Summary
+This paper introduces Geo-CoT, a perceptually grounded chain-of-thought framework aimed at enhancing the faithfulness and interpretability of vision-language models in remote sensing. The authors propose a large-scale dataset (Geo-CoT380k) containing multimodal reasoning chains for tasks like Visual Question Answering (VQA), Visual Grounding (VG), Counting, and Captioning. They also introduce a two-stage training approach combining supervised fine-tuning (SFT) and GRPO-based reinforcement learning, leading to the development of RSThinker, a model that demonstrates strong performance across a range of remote sensing tasks.
+
+### Strengths
+The Geo-CoT380k dataset is constructed with clear annotation rules and a consistent generation process. The two-stage training strategy (SFT + GRPO) is straightforward and effective, with experiments showing that both stages contribute to factual consistency and spatial grounding.
+
+The study shows steady performance gains across VQA, captioning, and visual grounding, and highlights the value of verifiable reasoning for applied geospatial AI.
+
+### Weaknesses
+Overall, I do not agree with the authors’ claim that Geo-CoT can serve as a solution to the “critical gap” between existing works such as MM-VoT and the field of remote sensing observation. My main concerns are twofold:
+
+1. The authors emphasize that there is a huge gap between MM-CoT and geoscience (lines 89–90), and they propose a concept called an “intention-driven active perception process,” claiming that this represents a “critical gap” in Earth observation. They also highlight *Perceptually-Grounded Geo-CoT* as a new paradigm in their contributions. However, I believe this emphasis is overstated. The so-called new paradigm essentially “mandates a verifiable link between each analytical step and its corresponding visual evidence,” which has already been extensively explored in follow-up works after MM-CoT (2023). I can list several such studies [1–3], and the authors should conduct a more thorough review of these. Over the nearly two years since MM-CoT was proposed, numerous works have investigated the correspondence between reasoning steps and their associated visual evidence. The authors do not clarify how their approach differs from these, but instead focus only on MM-CoT (2023) and emphasize thinking with corresponding visual evidence is the “critical gap” in remote sensing field which is already widely recognized in common field. The Geo-CoT paradigm does not clearly demonstrate any distinction between the remote sensing observation domain and the general domain. The authors even state in the related work section (lines 143–147) that existing studies focus on reasoning over whole objects, while remote sensing involves “a verifiable log of fine-grained perceptual operations.” However, if the authors examined recent works on visual reasoning from the past one to two years, they would see that this kind of “fine-grained perceptual operation” has already been addressed in many general-domain studies. The fact that the authors list this as the first of their three main contributions suggests they may have deliberately overlooked related works in order to overstate the novelty of their approach.
+
+2. There are serious issues with the evaluation metrics used in the downstream tasks, which I hope the authors will clarify. Specifically, the authors use mAP and mIoU as evaluation metrics for the Visual Grounding (VG) task. I will detail these concerns in my comments, but this choice raises significant doubts about the reliability of their downstream task evaluations.
+
+[1]Visual CoT: Advancing Multi-Modal Language Models with a Comprehensive Dataset and Benchmark for Chain-of-Thought Reasoning
+
+[2]V*: Guided Visual Search as a Core Mechanism in Multimodal LLMs
+
+[3]CMMCoT: Enhancing Complex Multi-Image Comprehension via Multi-Modal Chain-of-Thought and Memory Augmentation
+
+### Questions
+1.Visual Grounding is essentially a single-instance localization problem conditioned on language, not an object detection task requiring multiple candidate boxes with confidence scores. The paper reports both mAP and mIoU as evaluation metrics for the Visual Grounding (VG) task. While mIoU is understandable as it directly measures localization accuracy, the use of mAP is conceptually unclear.
+
+2.The Geo-CoT380k dataset is a key contribution, consisting of 380k reasoning traces generated by GPT-4V. However, the paper lacks any quantitative or qualitative validation of these traces. Prior CoT work often applies explicit quality control—e.g., multi-sample consistency (self-consistency), deductive stepwise verification, or human expert spot-checking—when using LLM-generated chains (e.g., [1], [2], [3]). But the paper does not mention such validation, making it unclear whether the reported improvements stem from the quality of reasoning chains or simply from the large data volume. This casts doubt on the true impact of Geo-CoT on reasoning faithfulness.
+
+[1]Wang X, Wei J, Schuurmans D, et al. Self-Consistency Improves Chain of Thought Reasoning in Language Models. ICLR, 2023.
+
+[2]Ling Z, Fang Y, Li X, et al. Deductive verification of chain-of-thought reasoning. In Proceedings of NeurIPS 2023.
+
+[3]Wang Y, Zeng Y, Zheng J, et al. VideoCoT: A Video Chain-of-Thought Dataset with Active Annotation Tool. CoRR, 2024.
+
+
+(1)Have the authors explicitly distinguished the task boundary between “visual grounding” and “object detection” in the paper? If so, where; if not, please clarify and justify why mAP is an appropriate metric for a language-conditioned single-instance Visual Grounding task.
+
+(2)In the Visual Grounding task, each sample corresponds to a single referring expression without predefined object categories or multiple predictions. Under this setting, how are confidence scores for mAP computation obtained? If the model outputs only one bounding box per query, the definition of precision–recall and mAP becomes ambiguous. Could the authors clarify this evaluation setup?
+
+(3)Could the authors clarify whether any quality control was performed on the GPT-4V-generated reasoning traces? If not, how can we be confident that the improvements are due to reasoning supervision and not just data scale effects?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/liDUSnwUVP.md b/human_reviews/liDUSnwUVP.md
new file mode 100644
index 0000000000000000000000000000000000000000..6456174bc7482b15b3f3ab3431d4ce2342b8c041
--- /dev/null
+++ b/human_reviews/liDUSnwUVP.md
@@ -0,0 +1,133 @@
+## Human Reviewer 1
+
+### Summary
+The paper proposes a technique for forecasting the early stages of pandemics. The approach is based on residual CNNs. The paper claim that the proposed approach outperforms both traditional compartmental models and CNNs in the accuracy of predictions with limited data.
+
+### Strengths
+* Improving the prediction of pandemics is a worthy goal.
+
+### Weaknesses
+* The literature review section of the paper is very limited. The scale and impact of the COVID pandemic was so large that many thousands of papers were published, effectively trying every single technology available. Resnet being a very popular model, it was used in many papers. The combination of deep learning with compartmental models was also one of the most popular (and natural) techniques for prediction.
+* As a result of the previous weakness, the paper does not clarify what is the novel contribution in this extensively explored subject.
+* The paper does not explain the choice of the residual CNNs, versus other CNN techniques, or newer techniques such as attention models, diffusion models, LLMs etc.
+
+### Questions
+* Please see weaknesses.
+
+### Soundness
+1
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper presents a framework where the neural network predicts parameters of a compartmental epidemiological model. The neural network learns from historical data on epidemics, and the authors test the trained neural network during the early stages of the COVID-19 pandemic.
+
+### Strengths
+Early-stage pandemic forecasting is a critical and under-explored challenge where data scarcity is the norm.
+
+The method is sound, and the results show it is promising.
+
+### Weaknesses
+The central idea of using neural networks to predict the parameters of a compartmental model is promising, but it is not novel. The authors appear to be unaware of a substantial body of prior work in this area, as the main methodological contribution of the paper has already been proposed in earlier studies, particularly in [1] and [2], and in a slightly different form in [3]. Related extensions have even been explored in the context of agent-based modeling (e.g., [4]). The paper’s contribution largely centers on this existing technical idea, with the additional element that the neural network learns from data across multiple diseases. While this cross-disease transfer concept is interesting, it does not constitute a technical innovation. I would recommend that the authors consider submitting this work to an epidemiological or applied modeling venue, where the empirical findings and early-pandemic insights would be more appreciated. To strengthen the experimental analysis, the paper should also compare its approach with alternative methods for calibrating compartmental models, such as approximate Bayesian calibration. Additionally, I suggest exploring other compartmental models to showcase the generalizability of the approach. Overall, I do not find the current level of technical contribution sufficient for publication at a leading AI/ML venue such as ICLR.
+
+[1] Arik, S., Li, C.L., Yoon, J., Sinha, R., Epshteyn, A., Le, L., Menon, V., Singh, S., Zhang, L., Nikoltchev, M. and Sonthalia, Y., 2020. Interpretable sequence learning for COVID-19 forecasting. Advances in neural information processing systems, 33, pp.18807-18818.
+
+[2] Arık, S.Ö., Shor, J., Sinha, R., Yoon, J., Ledsam, J.R., Le, L.T., Dusenberry, M.W., Yoder, N.C., Popendorf, K., Epshteyn, A. and Euphrosine, J., 2021. A prospective evaluation of AI-augmented epidemiology to forecast COVID-19 in the USA and Japan. NPJ digital medicine, 4(1), p.146.
+
+[3] Qian, Z., Alaa, A.M. and van der Schaar, M., 2020. When and how to lift the lockdown? global covid-19 scenario analysis and policy assessment using compartmental gaussian processes. Advances in neural information processing systems, 33, pp.10729-10740.
+
+[4] Chopra, A., Rodríguez, A., Subramanian, J., Quera-Bofarull, A., Krishnamurthy, B., Prakash, B.A. and Raskar, R., 2023, May. Differentiable Agent-based Epidemiology. In Proceedings of the 2023 International Conference on Autonomous Agents and Multiagent Systems (pp. 1848-1857).
+
+### Questions
+N/A
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The authors propose a model that combines a CNN with a deep compartmental model for early-stage pandemic forecasting. The CNN outputs interpretable parameters (e.g., transmission rates) that drive the compartmental ODEs. They use historical pandemic data with metadata to guide parameter inference and claim superior early-stage forecasting.
+
+### Strengths
+· The T-DCM ablation (HG-DCM without historical data/metadata) clearly shows performance degradation, providing strong empirical evidence that integrating historical pandemic signals improves early-stage forecasting stability and accuracy.
+
+· The authors compiled a novel dataset spanning six major outbreaks since 1990 (COVID-19, Ebola, SARS, Dengue, Monkeypox, seasonal influenza) across 258 global locations, including country-level development indicators and epidemiological metadata (e.g., transmission pathways). This is a valuable community resource.
+
+### Weaknesses
+· This work lacks any rigorous theory or mathematical notations for the explanation of the overall model and simply seems to be an incremental work that simply fuses a CNN with DELPHI. The authors need to distinguish between the contributions they make here. Table 1 seems to just be an ablation study.
+
+· The authors claim that the COVID-19 Forecasting hub models “lack publicly available, reproducible codebase, and the shared forecasting outputs do not include early-stage results”. This is false as all the forecasting has been made publicly available since the early stage of the pandemic. Please see https://github.com/epiforecasts/covid-us-forecasts . Unfortunately the authors use none of these models as baselines. Talking about early stage forecasting, there are also works[1,2,3] that are deep-learning based and also incorporate physics.
+
+
+· The motivation that prior pandemics are equally important to make predictions in a new pandemic is a bizarre assumption by any means. I am not sure why the Dengue Fever outbreak dynamics will be useful for predicting the COVID pandemic.
+
+· Coming to the details of the methods, there are some critical issues that drew my concern:
+
+o You define "Last Day of Augmentation (LDoA)" using the peak of the first wave → future knowledge, which seems to be data leakage.
+
+o ResNet-50 on 1D time series ignores temporal dynamics and risks over-fitting.
+
+· There are no SOTA comparisons like EpiFNP [4], DeepGLEAM [5], or NeuralODE [6].
+
+· Predictions do not have uncertainty estimates. Are multiple runs not done for Table 1?
+
+· No code provided, so I have reproducibility concerns.
+
+[1] Rodriguez, Alexander, et al. "Deepcovid: An operational deep learning-driven framework for explainable real-time covid-19 forecasting." Proceedings of the AAAI Conference on Artificial Intelligence. Vol. 35. No. 17. 2021.
+
+[2] Rodríguez, Alexander, et al. "Einns: epidemiologically-informed neural networks." Proceedings of the AAAI conference on artificial intelligence. Vol. 37. No. 12. 2023.
+
+[3] Motavali, Amirhossein, et al. "DSA-BEATS: dual self-attention N-BEATS Model for forecasting COVID-19 hospitalization." IEEE Access 11 (2023): 137352-137365.
+
+[4] Kamarthi, Harshavardhan, et al. "When in doubt: Neural non-parametric uncertainty quantification for epidemic forecasting." Advances in Neural Information Processing Systems 34 (2021): 19796-19807.
+
+[5] Wu, Dongxia, et al. "DeepGLEAM: a hybrid mechanistic and deep learning model for COVID-19 forecasting." arXiv preprint arXiv:2102.06684 (2021).
+
+[6] Kosma, Chrysoula, et al. "Neural ordinary differential equations for modeling epidemic spreading." Transactions on Machine Learning Research (2023).
+
+### Questions
+Please address the weaknesses listed above.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+0
+
+### Confidence
+1
\ No newline at end of file
diff --git a/human_reviews/ngfIm9aPsH.md b/human_reviews/ngfIm9aPsH.md
new file mode 100644
index 0000000000000000000000000000000000000000..abb47d7cc85f152ed27d154a0f8be8570e4e0f8e
--- /dev/null
+++ b/human_reviews/ngfIm9aPsH.md
@@ -0,0 +1,172 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes an object fidelity diffusion method, which extends the layout-to-image paradigm into the remote sensing sense. This method combines many existing modules to achieve controllable image generation.
+
+### Strengths
+1. This is a layout-to-image generation method for the remote sensing field.
+2. The proposed method integrates an online-distillation strategy and DDPO fine-tuning to achieve high-fidelity image generation.
+
+### Weaknesses
+1. The proposed OF-Diff is primarily an assembly of existing, well-known components: ControlNet for conditioning, a form of online distillation for feature alignment, and DDPO for fine-tuning.
+2. The central claim of "reducing reliance on real images" is misleading; the method heavily depends on real images during training to extract shape masks via RemoteSAM and to train the teacher model in the distillation process. The "prior shape extraction" is essentially semantic segmentation, which is a standard technique. The paper fails to convincingly demonstrate what the key, novel insight is, beyond a specific combination of these existing blocks.
+3. The comparison methods discussed in the paper (such as LayoutDiffusion and GLIGEN) were not specifically designed for remote sensing imagery. Applying them directly to remote sensing scenarios and using them as baselines is unfair. Furthermore, the authors did not provide sufficiently detailed training configurations (such as whether all comparison methods underwent adequate adaptation to remote sensing data), which may have led to biased comparison results.
+4. Although the paper demonstrates improvements in mAP for object detection tasks, it does not explicitly prove whether these gains stem from enhanced image quality or merely increased data volume. There is a lack of quantitative analysis regarding the actual contribution of generated images during detector training, such as through visualization or feature distribution alignment analysis.
+5. The entire pipeline is critically dependent on the quality of masks produced by the ESGM, which itself relies on external models (RemoteCLIP, RemoteSAM). The paper provides no analysis of what happens when this module fails or produces noisy/incorrect masks, which is inevitable in practice. How robust is OF-Diff to errors in the initial shape prior? If the extracted mask is distorted, will the generation process fail catastrophically? This is a major point of practical vulnerability that is completely unaddressed.
+6. The proposed system is exceptionally complex, involving multiple stages: ESGM, a dual-branch diffusion model with online distillation, and a subsequent DDPO fine-tuning step. The computational cost, memory footprint, and training time must be enormous compared to baselines like AeroGen. The paper completely omits any discussion of efficiency, training time, or inference speed. The practical utility is questionable if the method is an order of magnitude more expensive to train and deploy.
+
+### Questions
+1. Can you precisely state the novel algorithmic contribution of OF-Diff, distinct from the existing components (ControlNet, distillation, DDPO) it builds upon?
+2. Have you attempted to fine-tune the CC-Diff baseline on your specific datasets to ensure a fair comparison? Could its distribution shift be mitigated?
+3. How does the performance of OF-Diff degrade when the input shape masks from ESGM are noisy or partially incorrect? Please provide a robustness analysis.
+4. Can you provide data on the computational cost (e.g., GPU hours, memory usage) of training OF-Diff compared to the key baselines?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This work proposes a a method for generating satellite images conditioned on object layouts. Motivation for this work is the need of augmenting existing training datasets, thus, proposing a method for generating additional label-image pairs. Furthermore, this work focuses specifically on instance/object level generations (instead of the commonly adopted semantic maps conditioning or text conditioning).
+
+### Strengths
+- Authors identify a lack in current literature: few works sucessfully tackle instance-level generation given the difficulty of the task. Instance-level (layout-to-image paradigm) gives more precise control over the generations and alignment with the ground truth conditions.
+- Authors propose a realiable pipeline for achieving high layout fidelity generations by DDPO finetuning, and without the need of using real control images.
+- Authors provide ablation studies for the design decisions.
+- Extensive evaluation is carried out.
+- Qualitative results look strong compared to other models.
+
+### Weaknesses
+Authors do not provide any dataset augmentation experiment for OOD-datasets. Such experiment would be useful to prove the usefulness of the model beyond their training dataset distribution, to see if their generations are actually useful for other downstream datasets. I believe this is an important experiment that should be carried out, as it determines the overall usefulness of the generated images not just within the training distribution.
+
+I suggest authors to select some other dataset (not DOTA or DIOR) and compare a baseline model trained on the original dataset and an augmented version of the target dataset.
+
+In fact, Tables 6 and 7 show very small downstream improvements in terms of trainability when compared with other methods. Could authors provide some intuition why generations are not always profitable for training? Trainability is an important part of the work carried out. Authors could provide more ablation experiments showing whether the generated images are usefulness for training.
+
+### Questions
+- Given a baseline model trained on DIOR/DOTA default dataset, authors show downstream improvements when baseline model is trained with original + OF-Diff generations (Figure 5). It would be interesting to see the AP evolution given different amounts of synthetic vs real data. For instance:
+ - Train a baseline model on 100% real images
+ - Train a baseline model on 100% generated images
+ - Train a baseline model on 50% real + 50% generated images
+ - etc.
+ - Train a baseline model on 100% real + 50% generated images
+ - Train a baseline model on 100% real + 100% generated images
+ - Train a baseline model on 100% real + 200% generated images
+ - etc.
+- Do authors have any intuition when the baseline model performance plateaus? In other words, the point at which generating more images will not improve downstream performance?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes Object Fidelity Diffusion (OF-Diff), a novel diffusion-based model for layout-to-image generation in remote sensing (RS). The key idea is to improve object fidelity and layout controllability without relying on real-image references at inference time. The authors introduce:
+1. Enhanced Shape Generation Module (ESGM) to extract object shape priors from bounding box layouts.
+2. Online distillation to align shape-based generation with real-image features during training.
+3. DDPO (Denoising Diffusion Policy Optimization) to fine-tune the model for better diversity and semantic consistency.
+The model is evaluated on DIOR-R and DOTA datasets using a comprehensive set of metrics including FID, KID, YOLOScore, and downstream detection mAP. Results show superior fidelity, layout consistency, and downstream utility, especially for small and polymorphic objects.
+
+### Strengths
+1. OF-Diff does not require real-image references at inference, a significant practical improvement.
+2. State-of-the-art results on both DIOR-R and DOTA datasets, with mAP improvements of up to 8.3% on airplane and 7.7% on ship categories.
+3. The paper is well-structured, with clear problem motivation, method description, and experimental analysis.
+
+### Weaknesses
+1. The online distillation and DDPO fine-tuning steps are computationally expensive, but the paper does not report training time, GPU usage, or memory overhead.
+2. The paper shows that adding captions improves aesthetics but hurts fidelity (Fig. 7). However, this trade-off is not deeply analyzed. A user study or perceptual evaluation would help clarify when and why to use captions.
+3. The method heavily relies on ESGM-generated shape masks. While the paper mentions that distorted masks lead to poor generation, it does not quantify how robust the model is to noisy or incomplete masks?
+4.The model is only evaluated on two datasets (DIOR-R and DOTA), both of which are airborne/satellite optical imagery.
+
+### Questions
+see weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper introduces Object Fidelity Diffusion (OF-Diff), a novel layout-to-image diffusion model designed specifically for generating high-fidelity remote sensing (RS) imagery. The primary motivation is to address critical failure modes in existing methods, such as control leakage, structural distortion, and dense generation collapse, which limit their utility for downstream tasks like object detection.
+
+### Strengths
+1. ESGM: Leverages pre-trained vision-language and segmentation models (RemoteCLIP and RemoteSAM) to extract precise object shape masks, providing strong geometric priors beyond simple bounding boxes.
+
+2. Employs a teacher-student architecture where a "teacher" decoder (conditioned on both image and shape features) guides a "student" decoder (conditioned only on shape features). This allows the model to learn to generate high-fidelity textures and details without requiring real image references during inference.
+
+3. Applies Denoising Diffusion Policy Optimization (DDPO) as a post-training step, using a reward function based on KNN distance and KL divergence to enhance the diversity and distributional consistency of the generated images.
+
+Comprehensive experiments on the DIOR and DOTA datasets demonstrate that OF-Diff outperforms state-of-the-art methods in generation fidelity, layout consistency, and its utility in improving downstream object detection performance.
+
+### Weaknesses
+1. The ESGM module is critically dependent on two large, specialized models: RemoteCLIP and RemoteSAM. While effective, this raises questions about the framework's scalability, accessibility, and potential biases inherited from these foundational models. The paper could benefit from a discussion on the computational cost of this "template extraction" phase and an analysis of how errors from ESGM might propagate through the diffusion pipeline.
+
+2. The paper clearly defines the DDPO reward function (Equation 9) but omits crucial implementation details for the KNN component. As the authors know, computing KNN in the high-dimensional pixel space is infeasible and perceptually meaningless. It is standard practice to compute this in a low-dimensional embedding space (e.g., using a CLIP or VAE encoder). While this is likely what the authors did, this critical detail should be explicitly stated in the implementation section to ensure reproducibility and clarity. Mentioning the specific pre-trained encoder used would be essential.
+
+3. The paper exclusively focuses on object detection as the downstream task. While this is a highly relevant application, remote sensing involves many other perception tasks, such as semantic segmentation and change detection. Demonstrating the utility of OF-Diff for these other tasks could further strengthen the paper's claims of general applicability.
+
+### Questions
+Robustness of ESGM: The quality of the generated images seems highly dependent on the quality of the shape masks produced by ESGM. How does OF-Diff perform when ESGM fails or produces a distorted mask (e.g., for objects with complex boundaries or under heavy occlusion)? Is there a mechanism to handle such failures, or does the model simply replicate the distorted shape?
+
+On the DDPO Reward Function: The KNN reward term encourages diversity by pushing generated samples away from the nearest neighbors in the real dataset. Could this potentially penalize the generation of "typical" or common instances and favor only rare or outlier-like objects? How was the balance between the KNN and KL terms (controlled by $\omega$) determined to prevent this?
+
+Inference Speed and Cost: Could you provide details on the inference speed of OF-Diff compared to other methods? Specifically, since ESGM is only used to populate a mask pool for inference, how large does this pool need to be for good performance, and does the selection from this pool add any significant overhead?
+
+Regarding the use of captions (Section 4.5): You note that including captions improves aesthetic appeal but harms downstream performance by deviating from the real data distribution. This is a very interesting finding. Does this imply that for data augmentation purposes, it is better to have models that are "faithful" to the original dataset's quirks and potential imperfections rather than models that generate more "idealized" or aesthetically pleasing images? I would appreciate it if you could elaborate on this insight.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+5
\ No newline at end of file
diff --git a/human_reviews/nzkObUsajY.md b/human_reviews/nzkObUsajY.md
new file mode 100644
index 0000000000000000000000000000000000000000..7b5f918f4aa494f0740bc26e924231bd610ba018
--- /dev/null
+++ b/human_reviews/nzkObUsajY.md
@@ -0,0 +1,151 @@
+## Human Reviewer 1
+
+### Summary
+This paper presents an ANN-to-SNN conversion framework for spiking LLMs. It employs the Integer Spiking (IS) neuron, which has multiple thresholds and fires multi-bit spikes. Building on the IS neuron, Quantized ANN (QANN) can be converted to SNN without training another tailored ANN. The proposed conversion method also utilizes the layer-wise calibration to enhance the performance.
+
+### Strengths
+1. Theoretical analyses of the error bounds of conversion prove the effectiveness of the layer-wise calibration.
+2. Compared to conventional ANN2SNN conversion approaches, the proposed framework does not require training a tailored ANN, which is important for LLM conversion.
+
+### Weaknesses
+1. The contributions of this paper are incremental. First, previous work [1] has already proposed layer-wise calibration methods. This paper hides this technical background and avoids citing the prior research. Furthermore, the multi-bit spike neuron (i.e., M-HT neuron [2], Burst spikes [3], etc.) has also been proposed. Additionally, there is also research [4] that converts QANNs to SNNs. I believe the contributions of this paper are limited to using multi-bit spike neurons to convert QANNs to SNNs.
+2. Critical technical details are missing. This paper does not describe how key components of the Transformer, including Layer Norm, Softmax, and matrix multiplication, are converted to a form suitable for SNNs.
+3. Lack of energy efficiency analysis. This paper does not analyze the energy efficiency advantages of the converted SNN over the original QANN. Furthermore, the proposed method employs multi-bit spikes. While this facilitates the conversion of QANN to SNN, it also introduces additional computational overhead in the linear layer. This paper does not analyze this impact either.
+4. This paper lacks comparisons with state-of-the-art conversion methods, such as SpikeZIP-TF [5], in terms of performance and energy efficiency.
+
+
+
+[1] Li, Yuhang, et al. "A free lunch from ANN: Towards efficient, accurate spiking neural networks calibration." *International conference on machine learning*. PMLR, 2021.
+
+[2] Hao, Zecheng, et al. "LM-HT SNN: Enhancing the performance of SNN to ANN counterpart through learnable multi-hierarchical threshold model." *Advances in Neural Information Processing Systems* 37 (2024): 101905-101927.
+
+[3] Li, Yang, and Yi Zeng. "Efficient and Accurate Conversion of Spiking Neural Network with Burst Spikes." *Proceedings of the Thirty-First International Joint Conference on Artificial Intelligence*. 2022.
+
+[4] Yang, Yuchen, et al. "NeuBridge: bridging quantized activations and spiking neurons for ANN-SNN conversion." *Neuromorphic Computing and Engineering* 5.2 (2025): 024018.
+
+[5] You, Kang, et al. "SpikeZIP-TF: Conversion is All You Need for Transformer-based SNN." *International Conference on Machine Learning*. PMLR, 2024.
+
+### Questions
+See weaknesses
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper presents a two-stage ANN-to-SNN conversion framework that improves scalability to large language models. The authors propose a layer-wise calibration method that significantly reduces conversion errors. The framework is demonstrated through converting pre-trained LLaMA models into spiking large language models (SNN-LLMs), achieving performance comparable to state-of-the-art quantization methods.
+
+### Strengths
+- The paper explores ANN-to-SNN conversion in the context of very large models.
+- The proposed layer-wise calibration approach is theoretically motivated and empirically validated.
+
+### Weaknesses
+- The paper claims to be “training-free,” but the calibration step still appears to involve optimization via BPTT or similar gradient-based tuning of neuronal thresholds. This step could reintroduce significant computational costs, especially for LLM-scale models.
+- There is a mismatch between the stated motivation and the evaluation metrics. The central motivation of ANN-to-SNN conversion is energy efficiency and neuromorphic deployability, yet the experiments focus solely on accuracy and perplexity benchmarks. The paper would benefit from including energy, latency, or hardware feasibility analyses.
+- The proposed models (tested on LLaMA-2 and LLaMA-3) are far beyond the capacity of existing neuromorphic chips (e.g., Loihi 2, TrueNorth). The authors should clarify which hardware platforms are envisioned for deployment, and whether the approach offers any practical energy advantage over quantized or sparsified ANN-based LLMs.
+- The paper employs graded spikes. This design choice should be explicitly stated early in the paper and discussed in terms of hardware constraints, as graded spikes may complicate neuromorphic implementation.
+
+### Questions
+See in Weaknesses
+
+### Soundness
+1
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes a novel "dual ANN-to-SNN conversion" framework to address the challenge of efficiently converting Large Language Models into Spiking Neural Networks. The core idea is to introduce a Quantized ANN as an intermediate model, decoupling the conversion process into two stages: ANN→QANN and QANN→SNN. To achieve precise modeling, the authors design a new Integrate-and-Spike with Reset neuron and provide a rigorous theoretical proof of its functional equivalence to standard Integrate-and-Fire neurons, which lays a solid foundation for hardware implementation. The paper also conducts theoretical error decomposition and proposes a layer-wise calibration method to optimize performance. Experiments on LLaMA models demonstrate the effectiveness of the approach.
+
+### Strengths
+1.Decoupling the ANN-to-SNN conversion into "quantization" and "temporal dynamicization" sub-problems via a QANN intermediate bridge is a ingenious approach.
+
+2.The proposed IS neuron model and its equivalence proof to IF neurons are proposed.
+
+### Weaknesses
+1.The method heavily relies on the discrete integer outputs of the QANN. For modern LLMs using non-uniform quantization or containing complex activation functions (e.g., SwiGLU), their discretized values may be difficult to precisely reconstruct with a finite number of spike timesteps, potentially limiting the method's generalizability.
+
+2.Although the equivalence between IS and IF neurons is proven, this implementation requires a large number of IF neurons and timesteps to simulate a single IS neuron. The paper completely ignores the area overhead (requiring more neurons) and time overhead (requiring more timesteps) introduced by this mapping, which is crucial for evaluating the actual energy efficiency of the SNN.
+
+### Questions
+As in weakness.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes a novel method for efficiently converting LLMs into SNNs.. The core methodology includes: (1) introducing a membrane potential alignment mechanism during ANN-to-SNN conversion to reduce activation distribution mismatches; (2) adopting a parameter-efficient fine-tuning strategy that only learns neuronal firing thresholds and initial membrane potentials per layer, while keeping pretrained weights frozen; and (3) further incorporating grouped activation scaling, where a small number of learnable parameters are shared across activation groups to compensate for quantization and clipping errors. Experiments on LLaMA show significant improvements over conventional SNN conversion baselines, achieving competitive zero-shot accuracy and language modeling performance.
+
+### Strengths
+1.The paper goes beyond empirical heuristics by providing formal analysis, which bounds the approximation error between SNN outputs and ANN activations within a finite number of timesteps.
+
+2.The proposed membrane potential alignment and grouped activation fine-tuning are theoretically grounded and achieve a good trade-off between parameter efficiency and performance.
+
+### Weaknesses
+1.Despite claims about low-power deployment, all experiments are simulation-based. No energy, latency, or throughput measurements are reported on neuromorphic hardware such as Loihi, making it impossible to validate the practical feasibility of edge deployment.
+
+2.The evaluation is only on LLaMA-2 and LLaMA-3, with no testing on other mainstream LLM architectures.
+
+### Questions
+1.The IS neurons produce only non-negative and bounded activation. How can they effectively emulate SwiGLU, which involves negative activation values?
+
+2.Although the paper establishes functional equivalence between IS and IF neurons, the practical implementation requires multiple IF neurons and a large number of timesteps to emulate a single IS neuron. Have the authors considered the resulting area overhead due to increased neuron count? How do these factors impact the actual energy efficiency and throughput when deployed on real neuromorphic hardware?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/oGbzk8xuVT.md b/human_reviews/oGbzk8xuVT.md
new file mode 100644
index 0000000000000000000000000000000000000000..1ade42e27394839a3f78fd13c95e6c3c48aedee1
--- /dev/null
+++ b/human_reviews/oGbzk8xuVT.md
@@ -0,0 +1,173 @@
+## Human Reviewer 1
+
+### Summary
+With the aim of providing a more realistic and effective RL benchmark than existing ones, enabling open-ended learning of agents in reward-free contexts (unsupervised RL), the authors propose BuildBench. This environment allows for the implementation of environments, as well as providing a suite of 50 environments to force the agent to develop reasoning skills.
+
+### Strengths
+S1. Apparently, it seems that AGI could come about through open-endedness, and therefore, implementing benchmarks that enable such types of learning is obviously relevant.
+
+S2. The document is very comprehensive and provides extensive bibliography, allowing the author to clearly identify the need for BuildBench.
+
+### Weaknesses
+W1. The paper fails to accurately determine the limitations that exist in similar proposals in the literature, and which ones are satisfactorily resolved by BuildBench.
+
+W2. Continuing with the previous thread, one reference published in ICML 2025 was Craftium, which was also published in RLC 2025. This platform is highly developed and allows the creation of environments for open-ended learning, procedural benchmark generation, and, in addition to multi-tasking (for CRL), it also allows for multi-agent learning.
+As I see it, Craftium's scope goes beyond that of BuildBench. Not including the most recent work in the comparison undermines this study.
+
+### Questions
+Q1. What are the differences between Craftium and BuildBench? Does BuildBench include the capabilities offered by Craftium? What other possibilities does it offer?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper introduces BuilderBench, a new benchmark with controllable physics-based setup for evaluating reinforcement learning (RL) agents in block stacking. Two training and evaluation protocols are proposed:
+I. a multi-task self-supervised protocol, where agents learn by autonomous exploration without explicit rewards;
+II. a single-task supervised protocol, where agents are trained with task-specific rewards.
+The benchmark is open-sourced and includes reproducible setups and a broad set of baseline evaluations. Experiments show that while current agents perform reasonably well on simple tasks, they almost all fail on more complex structures, suggesting that current RL methods lack physical reasoning and compositional planning abilities.
+
+### Strengths
+1. The paper focus on testing the ability of generalization and learning of general principle, which is an important problem in RL.
+2. The environment design is clean, interpretable, scalable, and well-controlled, allowing for clear attribution of success and failure.
+3. The two complementary protocols make the benchmark relevant to multiple RL paradigms.
+4. The benchmark is fast-speed and reproducible, potentially useful as a standard testbed for physical reasoning research.
+
+### Weaknesses
+1. The construct validity of the benchmark could be clearer—it is not fully demonstrated that success requires genuine physical reasoning rather than geometric features.
+2. The analysis of failure modes is relatively shallow; it does not fully separate challenges of exploration, long-horizon credit assignment, and physical modeling.
+
+### Questions
+1. Could the authors clarify which aspects of the benchmark truly require reasoning about stability rather than brute-force exploration?
+2. The dense reward is defined primarily by geometric distance to the target structure. Would incorporating physically meaningful quantities provide a more informative learning signal and better align the benchmark with its goal of evaluating physical reasoning?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This work proposes BuilderBench, a benchmark designed to advance research on agent pre-training through open-ended, interactive exploration. It tasks agents with building diverse block structures in a simulator, requiring them to learn physics, math, and long-horizon planning without external supervision.
+
+### Strengths
+1. The task designs appropriately require physical understanding and spatial reasoning, demonstrating a thoughtful integration of these elements.
+2. The design principles are coherent and well founded.
+
+### Weaknesses
+1. Developing a simulator using MuJoCo does not appear to be a substantial contribution, as there already exist numerous GPU-accelerated simulators with similar capabilities.
+2. The problem setup is overly simplified—the flying gripper operates in 3D space but only rotates around the z-axis (i.e., performs strictly vertical). This simplification likely explains why the reinforcement learning (RL) agents achieve rapid learning.
+3. Although the title claims that the benchmark targets generalist agents, the experiments primarily evaluate standard RL algorithms with different exploration strategies. In contrast, the large language model (LLM) evaluations do not involve actual interaction or feedback from the environment, thus failing to demonstrate open-ended exploration or learning through experience.
+
+### Questions
+Is there any feedback loop designed here other than merely reward functions? How can the generalist agent explore and receive experience in the current environment?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper presents a new benchmark called BuilderBench, specifically for evaluating generalization in reinforcement learning agents. This benchmark consists of around 50 open-ended block-building tasks like T-bock, 4-cube-packing, leaning tower, etc, that test an RL agent’s capacity to physically reason with cubes. The authors also discuss some design decisions behind the benchmark like the tasks requiring distinct skills, having a curriculum of easy to difficult tasks. A few algorithms, including ChatGPT 5 and Gemini 2.5 Pro are evaluated on BuilderBench in the single-task and multi-task regime. None of the models and algorithms evaluated show signs of success beyond the simplest setup. The paper concludes by stating that better algorithm design like hypothesis driven exploration and is required to solve the introduced benchmark.
+
+### Strengths
+1. The writing is excellent and the language is simple to follow.
+2. The paper has a strong and relevant motivation to improve RL agents towards grounded reasoning and generalization.
+3. The created tasks are intuitive and lie on a spectrum of easy to difficult w.r.t. current RL algorithms tested in the paper. This might help develop curriculum based learning methods.
+4. The self-supervised protocol presented has the potential to push the field towards unsupervised RL research. Especially in developing hypothesis driven exploration and grounded reasoning methods for embodied agents.
+5. I agree with the final takeaway message that the authors state - existing algorithms might lack the grounded reasoning and compositional abilities to solve difficult manipulation problems. This is definitely an area in RL that requires further attention and research work.
+
+### Weaknesses
+Also adding questions in this section:
+1. While I highly appreciate the clear goal, simple presentation, and a well implemented RL environment, I would expect a benchmark paper to present more rigorous experimentation and conclusion - the current paper falls short of this expectation. From the perspective of science, implementing PPO & SAC, and stating that other algorithms are “out of scope for the paper” (Limitations & Conclusion, page 9) is simply not sufficient to conclude that existing research on generalization is weak (although I intuitively agree with the authors’ conclusions). I say this with utmost appreciation for the work by authors: Without rigorous quantitative benchmarking and ablatory analysis on scaling behavior (sample efficiency/compute cost analysis), this research contribution is just a little better than an open-source software release. The authors of a benchmark paper have the opportunity to evaluate multiple existing algorithms in a completely unbiased manner which a future work that push a particular algorithm and agenda might lack. Given the claim of simplicity and speed of this environment, I think it is essential to run experiments on other existing methods and present the results and analyses. I would like to see standard supervised RL benchmarks on other methods like TDMPC2 [1] (a model-based approach) and other approaches specifically developed for Compositional tasks and object centric behavior [2][3][4][5]. Several competent VLAs & LLM augmented models also have attempted to achieve grounded reasoning capabilities [10][11]. Unsupervised exploration is also covered by several notable prior works [6][7]. **Atleast one other algorithm that covers the breadth of research directions for each supervised and self-supervised protocol** would improve the contribution greatly.
+2. Can the authors concretely specify what sets apart their benchmark? Several existing works attempt to capture compositional and logical reasoning abilities in RL and robotics with simple-to-hard curriculum. Examples: FurnitureBench [9], BabyAI [12]. If there are significant novel changes, please specify why these new changes are essential and what prompted the need for an entirely new benchmark? For example, Maniskill [8] is a well established benchmark which already contains tasks like PickYCB, YCB Clutter, Stack cube, etc. Maniskill also provides demonstrations, RGBD & segmentation mask observations. What is the utility of a new benchmark when one could add more cubes and create these tasks on the current benchmarks. Please mention clearly.
+3. Are demonstrations available for the tasks in this benchmark? Prior benchmarks like Maniskill [8] and FurnitureBench [9] also provide demonstrations and evaluations on generalizable Imitation learning methods which are additionally considered important approaches in the RL and robotics community.
+4. Similarly, can fast rendering of RGBD observations be made available? With the popularity of Vision Language Models and DINO style vision encoders, visual observations are an essential component for modern benchmarks.
+
+### Questions
+Please see above.
+
+Overall I would consider this paper a weak reject since it lacks in experimentation and standard RL benchmark features such as RGBD observations and expert demonstrations. Authors, please answer my questions above and consider adding a few more benchmarks. I will revise my score if my assumptions are incorrect and/or the additional responses/experiments clarify my doubts and help improve the scientific contribution of this work.
+
+**References**
+
+*[1] Hansen, N., Su, H., & Wang, X. (2024). TD-MPC2: Scalable, robust world models for continuous control. In Proceedings of the International Conference on Learning Representations (ICLR 2024)*
+
+*[2] Ghasemipour, et.al. (2022). Blocks Assemble! Learning to assemble with large-scale structured reinforcement learning. In Proceedings of the 39th International Conference on Machine Learning (ICML 2022) (pp. 7435–7469). PMLR*
+
+*[3] Mishra, U. A. et.al. (2023). Generative skill chaining: Long-horizon skill planning with diffusion models. In Proceedings of the 7th Conference on Robot Learning (CoRL 2023)*
+
+*[4] Shridhar, M., Manuelli, L., & Fox, D. (2021). CLIPort: What and where pathways for robotic manipulation. CoRL 2021*
+
+*[5] Zeng, A., et al. (2021). Transporter networks: Rearranging the visual world for robotic manipulation. CoRL 2020*
+
+*[6] Laskin, M., et al. (2021). URLB: Unsupervised Reinforcement Learning Benchmark. NeurIPS Datasets & Benchmarks*
+
+*[7] Ecoffet, A., et al. (2021). First return, then explore (Go-Explore). Nature*
+
+*[8] Gu, S., et.al. (2023). ManiSkill2: A unified benchmark for generalizable manipulation skills. arXiv preprint arXiv:2302.04659*
+
+*[9] Nair, S., et.al. 2022). FurnitureBench: Reproducible real-world benchmark for long-horizon complex manipulation. Proceedings of Robotics: Science and Systems (RSS).*
+
+*[10] Kalithasan, N., et al. (2024). Sketch-Plan-Generalize: Learning and planning with neuro-symbolic programmatic representations for inductive spatial concepts. arXiv preprint arXiv:2404.07774*
+
+*[11] Ahn, M., et al. (2022). Do As I Can, Not As I Say (SayCan): Grounding language in robotic affordances. arXiv:2204.01691*
+
+*[12] Chevalier-Boisvert, M., et al. (2019). BabyAI: A platform to study the sample efficiency of grounded language learning. International Conference on Learning Representations (ICLR)*
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/pI9n8wAR80.md b/human_reviews/pI9n8wAR80.md
new file mode 100644
index 0000000000000000000000000000000000000000..06beb95a6365e554f0cbfa2bf7f40f59cda28b96
--- /dev/null
+++ b/human_reviews/pI9n8wAR80.md
@@ -0,0 +1,164 @@
+## Human Reviewer 1
+
+### Summary
+This paper addresses the issue of pseudo‑label bias in long‑tailed semi‑supervised learning, and identifies two core limitations in existing Logit Adjustment (LA)–based approaches: distribution estimation distortion caused by sample redundancy, and the use of a fixed overall adjustment strength. To overcome these limitations, the authors propose the CoLA framework, whose main components include: estimating the effective number of samples via the effective rank of the representation matrix to obtain a de‑duplicated class distribution; and, based on the estimated distribution, constructing a proxy validation set and optimizing the overall adjustment strength through meta‑learning so that it adapts to the characteristics of the current distribution. Furthermore, the paper provides a theoretical generalization error bound for the proposed LMC and validates the method through experiments on benchmark datasets.
+
+### Strengths
+1. The problems identified in the paper are reasonable and important, and the authors provide a detailed analysis supported by both theoretical justification and experimental evidence.
+2. The paper presents a generalization bound and a convexity analysis for the meta‑learning process, which enhances the theoretical soundness of the proposed method.
+3. The visualization in the ablation study is presented in a clear and comprehensive manner.
+
+### Weaknesses
+1. The computation of effective rank and the meta‑learning procedure may introduce substantial computational overhead. It would be beneficial to include an analysis of the time complexity and computational complexity, particularly with respect to runtime performance on large‑scale datasets.
+2. In the downstream experimental evaluation, I notice that the SIN‑127 dataset is a down‑sampled version of ImageNet‑127. Why not perform testing directly on ImageNet‑127? I am curious about the potential results on the full ImageNet‑127 dataset.
+3. The paper lacks a primary diagram illustrating the proposed method. Introducing a main figure would make the methodology clearer and facilitate reader understanding.
+
+### Questions
+See the weaknesses.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper attempts to tackle an problem in Long-Tailed Semi-Supervised Learning (LTSSL): the confirmation bias driven by biased pseudo-labels. The authors claim that existing methods based on LA suffer from two critical limitations: 1) they rely on naive frequency counting to estimate the unlabeled data distribution, and 2) they treat the overall adjustment strength as a fixed hyperparameter. The authors propose CoLA, which consists of two main components: first, a De-Duplicated Distribution Estimation (DDDE) module that attempts to estimate a more accurate class distribution by calculating the effective rank of class representations to account for sample redundancy. Second, a Logit Meta-Calibration (LMC) procedure that constructs a proxy validation set and uses meta-learning to automatically optimize the overall adjustment strength. The experiment results show that their method establishes a new state-of-the-art on four public benchmarks.
+
+### Strengths
+1. The authors do identify a potentially interesting aspect of the LA mechanism, namely the interplay between the class-wise adjustment and the overall adjustment strength. This is a reasonable observation.
+2. The authors evaluate their method across multiple datasets and distribution mismatch scenarios.
+
+### Weaknesses
+1. The first of my concern is novelty. The core idea of this paper is little more than a combination of existing techniques, such as effective number, dual-branch, and meta-learning for hyperparams.
+2. The description of the DDDE module is overly simplistic. The authors propose computing the effective rank for the representation matrix Zy of each class y. They fail to discuss the computational cost of this procedure.
+3. In Figure2 (b,d,e), after applying LMC, the slope of the pseudo-label accuracy improvement barely changes. So I think its contribution is questionable.
+4. The proxy validation set Dv is resampled from the small and imbalanced labeled set Dl. For tail classes, Dl may contain only a few samples. How do you justify that such a severely constrained proxy set can effectively guide the learning of $\tau$ for a massive and differently distributed unlabeled set Du?
+
+### Questions
+See in Weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The authors address in their manuscript the problem of long-tailed semi-supervised learning. They analyze the weaknesses of several methods based on logit adjustment and propose an approach CoLA that is claimed to suffer less from over-suppression. They further propose DDDE to estimate the unlabeled distribution and LMC as a meta-learning strategy. They validate their method on 4 different datasets (CIFAR-10/100-LT, STL-10-LT, and SIN-127).
+
+### Strengths
+1. The paper is well-written (with exception line 090 "each class's representations") and structured (DDDE=4.1, LMC=4.2, CoLA=4.3).
+2. The main hypothesis is clearly stated and the approach is presented in a plausible way.
+3. Technical parts are accurately and detailed described.
+4. A good set of datasets has been selected for the experiments.
+5. The results are good (even if not always beating the state of the art)
+
+### Weaknesses
+1. The related work is covering a subset of the field, important references (such as [1]) are only used in the appendix, other are completely missing e.g. [2-5].
+2. The premise for the main hypothesis, i.e., the negative effect of overlooking the interplay between the two types of adjustment, has not been clearly supported by experimental results. If the premise is not properly established, all subsequent claims are affected. Figure 1b) only shows that monotonicity is not fulfilled.
+3. Some statements lack evidence or reference, e.g. line 085. "current work" embraces all works, see also 1. (this is not saying that any of [2-5] does).
+4. The protocol (for CIFAR) chosen according to Du et al. ICML 2024 (Simpro) deviates from other, previously published protocols, e.g. from the cited paper [6], and makes comparisons difficult, in particular to state-of-the-art methods that remained un-cited and that use those previous protocols.
+5. For experiments that use compatible protocols, e.g. STL-10-LT, the proposed method is inferior to e.g. [4} and rather en par with [3].
+6. The description of erank is not sufficiently self-contained. In particular, it is not clear why the EN is estimated by erank. Line 197 just says "we quantify EN ... using ... erank" and references point to EN and erank, but not why the quantification is possible. Also, it is not obvious why line 205 $p(i)$ is a probability and not just a point in the $m_y$-simplex.
+7. 4.2 is partly written in a procedural way and the overall approach that leads to the algorithm needs to be stated more clearly.
+
+[1] Zhang et al. Mixup: Beyond empirical risk minimization. ICLR 2018.
+
+[2] Lazarow et al. Unifying distribution alignment as a loss for imbalanced semi-supervised learning. CVPR 2023.
+
+[3] Chen et al. Softmatch: Addressing the quantity-quality tradeoff in semi-supervised learning. ICLR 2023.
+
+[4] Aimar et al. Flexible distribution alignment: Towards long-tailed semi-supervised learning with proper calibration. ECCV 2024.
+
+[5] Kim et al. Separated and Independent Contrastive Semi-Supervised Learning for Imbalanced Datasets. IEEE Access 2025.
+
+[6] Kim et al. Distribution aligning refinery of pseudo-label for imbalanced semi-supervised learning. NeurIPS 2020.
+
+### Questions
+1. (related to weakness 2.): which are the experimental results that clearly show that the _interplay_ of the two types of LA cause the issue?
+2. (related to weakness 4.): what results are obtained with the protocol from Kim et al. 2020 or is there some other way to make the results comparable?
+3. (related to weakness 5./1.): as the statement about state-of-the-art results need to be revised: in which situation does the proposed method shows its main strengths and weaknesses?
+4. (related to weakness 6.): why is the quantification possible and why is $p(i)$ a proper probability?
+5. (related to weakness 7.): what is the overall approach in 4.2?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper focuses on improving Long-Tailed Semi-Supervised Learning (LTSSL) by employing logit-adjustment methods. The paper identifies two key issues with the logit-adjustment approaches: 1) An over-estimation of popular class probabilities can lead to over-suppression of model predictions for the popular classes; and 2) The overall adjustment factor in the logit-adjustment approach is sensitive to particular dataset and needs to selected carefully. The paper then proposes two solutions to address these two issues, namely *de-duplicated distribution estimation* (DDDE) and *logit meta-calibration* (LMC). The paper provides a generalization analysis for LMC. The paper then provides a comprehensive empirical evidence of the value of the proposed approach while comparing it with existing logit-adjustment-based approaches and other methods beyond logit-adjustment for LTSSL in the literature.
+
+### Strengths
+- The paper studies a well motivated problem by identifying key limitations of a widely popular approach in the literature.
+- The empirical results in the paper clearly showcase the improvements compared to competitive baselines from the literature.
+- The paper presents ablation results to establish the value of both DDDE and LMC.
+
+### Weaknesses
+- The generalization analysis in Section 5 does not significantly enhance the overall contributions of the paper. Does the theory inspire/motivate the method proposed in the paper? If not, does the theory provide useful guarantees towards the final performance of the proposed solution?
+- The presentation of the theoretical part of the paper can be greatly improved.
+ - Could the authors expand on the Line 298 (``If our estimation is accurate,...justifying our methodology``) and make it mathematically precise.
+ - If the reviewer understand it correctly, the only optimizing parameter in Section 5 is $\tau$ and the function class $h_{\tau}$ is linear with respect to $\tau$ (since $\tau$ is the overall logit-adjustment factor). Could the author attempt to provide a more explicit characterization of the Rademarcher complexity in this case?
+
+### Questions
+- Could you please provide a description/pseudocode of your overall method in the form of an algorithmic block or a figure?
+- In Line 275, the assumption is that $P\_{X\_{u} \mid Y\_{u}}(\mathbf{x}|y) = P\_{X\_{l} \mid Y\_{l}}(\mathbf{x}|y)$ (between $u$ and $l$). However, the importance weight in 277 deals with $P\_{X\_{u}, Y\_{u}}$ and $P\_{X\_{v}, Y\_{v}}$. Are the authors relying on the fact that since $\mathcal{D}\_{v}$ is sub-sampled from $\mathcal{D}\_{l}$ and thus share the same class conditionals? If yes, please consider making this clearer.
+- Please consider making the notations consistent. E.g., Line 286 uses $R_{P\_u}$ (with lowercase $u$) while Line 294 uses $R_{P\_U}$ (with uppercase $U$).
+- Did you use the logit-adjustment form in Line 234 (as opposed to the one in Eq. (1)) for your experiments?
+- Why have you used the form in Line 226 for sampling? Why can one not simply use $\hat{P}\_{Y\_u}(y\_i)$ as the probability to select $(\mathbf{x}^l\_i, y\_i)$?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/pbbRmnFkjG.md b/human_reviews/pbbRmnFkjG.md
new file mode 100644
index 0000000000000000000000000000000000000000..4cebe9ea9d60742be143c9b9ab573ed570b7ed2f
--- /dev/null
+++ b/human_reviews/pbbRmnFkjG.md
@@ -0,0 +1,167 @@
+## Human Reviewer 1
+
+### Summary
+Using a stable sparse autoencoder, the paper builds a large concept dictionary for DINOv2 and shows task-specific feature usage. Analyses of concept statistics and geometry reveal distributed, partially sparse structure that only partially matches the Linear Representation Hypothesis. Finally, the authors propose the Minkowski Representation Hypothesis: token embeddings lie in sums of convex regions (aligned with multi-head attention’s convex mixing), which have implications in mechanistic interpretability such as model steering.
+
+### Strengths
+Clarity:
+- The paper follows a mostly logical narrative structure: Testing LRH with Stable SAE -> Empirical findings on concept statistics and geometry -> MRH
+- Once released, the interactive concept explorer can make the work much easier to visualize.
+
+Quality:
+- The methodology is rigorous, relying on quantitative measures for its major claims (singular-value spectra, coherence vs Grassmannian/random baselines, etc).
+- The convex-hull constraint on the SAE makes it more reproducible by keeping concepts in-distribution.
+
+Originality:
+- While concepts such as superposition and polysemanticity have been widely explored in mechanistic interpretability, the idea of convex regions is quite novel in this area, to the best of my knowledge.
+
+### Weaknesses
+l161: Because the stable SAE constrains dictionary atoms to the convex hull of activations, convexity is guaranteed for the learned concepts but not necessarily for the native representation. Maybe explicitly separate SAE-induced claims from “model-native” claims, and add ablations with unconstrained SAE, showing the same qualitative geometry without the convex prior.
+
+l064: The importance definition is clear, but the figure mapping isn’t. Maybe specify exactly what dot size and color encode in Figure 1. Adding a concise legend in the main text, a one-line formula linking $\phi$ to the plotted quantity would make the visualization reproducible and easier to see.
+
+l259: UMAP is fine for intuition, but it shouldn’t be used to make claims. Maybe caution that UMAP as visualization only, add a brief hyper-parameter sensitivity (n_neighbors, min_dist, seed) in the appendix, and keep the main analysis on PCA/spectral metrics.
+
+l293: "dense Sun et al. (2025) activations" -> "dense activations Sun et al. (2025)"
+
+### Questions
+See weaknesses.
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces a 32k-concept dictionary extracted from DINOv2 using Sparse Autoencoders (SAEs) and presents an interactive web-based visualization platform. The authors analyze how downstream tasks selectively recruit concepts from this dictionary, finding that classification relies on "Elsewhere" concepts implementing object negation, segmentation uses boundary detectors forming coherent subspaces, and depth estimation draws on three families of monocular cues (projective geometry, shadows, and frequency transitions). The work proposes the Minkowski Representation Hypothesis (MRH) as an alternative to the Linear Representation Hypothesis (LRH), suggesting that token embeddings behave as sums of convex regions around archetypal landmarks rather than as sparse combinations of near-orthogonal directions. However, the authors acknowledge that MRH remains a working hypothesis requiring further empirical validation.
+
+### Strengths
+**Clear introduction and methodological foundation**: The paper provides adequate background on ViTs, DINOv2, vision explainability, SAE adoption, and task-specific learned concepts, making the work accessible to the broader audience.
+
+**Interpretability contributions**: The interpretation sections are particularly well-executed, and the release of a web-based visualization platform for navigating DINOv2's 32k-concept dictionary represents a valuable resource for the community.
+
+**Technical rigor**: The submission is mostly clear, technically correct, and results appear reproducible given the extended mathematical explanations, despite code not being provided.
+
+**Novel theoretical perspective**: The paper proposes MRH as an interpretability framework for understanding ViTs, suggesting future research should examine these models through this geometric lens.
+
+### Weaknesses
+**Limited scope of downstream task exploration**: Section 3 examines only three downstream tasks, while DINOv2 supports many more applications. For classification, only the "elsewhere" concept is explored in detail, limiting the generalizability of findings.
+
+**Insufficient empirical foundation for MRH**: The authors propose MRH based on intuitions from task-specific geometrical organization but acknowledge it still needs rigorous proof (line 445). Given the limited number of tasks and task-specific concepts explored (see point above), the theoretical proposition rests on unstable empirical grounds.
+
+**Underdeveloped discussion of implications**: The paper lacks sufficient explanation of what consequences adopting the MRH concept has for interpreting ViTs and what concrete benefits this perspective provides to the research community. The discussion section should match the verbosity and clarity of the introduction.
+
+**Minor:**
+- Misleading characterization of SAE contribution: The authors state they "operationalize" LRH using SAE, when they actually adopt an SAE previously introduced by Fel et al. (2025). This overstates their methodological contribution.
+- Excessive reliance on appendix: Figures in the appendix are cited frequently in the main text (e.g., "Different tasks recruit different concepts" in Sec. 3, "Empirical evidences" in Sec. 6), resulting in sections that are difficult to follow without constant back-and-forth navigation.
+- Citations should stay in brackets, use \citet.
+- TL;DR is broken.
+
+### Questions
+- Sec. 3: what's the reason for isolating the top 100 most task-aligned concepts per-head when analyzing their similarities?
+- Sec. 3: how do you defined the top concepts for classification and how important or frequent is the "elsewhere" concept? why only this concept is analyzed for the classification task?
+- Sec. 3: you cite Fig.10 (right) in appendix but the same can be seen in Fig. 2
+- Is "the largest interactive interpretability demo" (line 112) an advantage? isn't complexity a problem for interpretability?
+- What's the x-axis of Fig.11 left?
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+In this work, the authors analyze the internal representations of the DinoV2 model to provide interpretability insights into how the model performs tasks. They begin by characterizing tokens using a sparse autoencoder to create a concept dictionary. They then investigate how different tasks use this dictionary to accomplish their distinct goals and highlight their distinct differences. For example, they find that classification uses elsewhere concepts while segmentation uses boundary detectors. Secondly, the authors find that the representations are partially dense demonstrating behavior that may be inconsistent with sparse coding. Finally, the authors propose a new hypothesis called the Minkowski Representation Hypothesis which they suggest as an alternative to the LRH. They provide initial evidence for the hypothesis, then leave room for investigations in the future.
+
+### Strengths
+This paper demonstrates clear novelty and depth while providing a useful tool for other researchers to investigate further. These qualities constitute a clear accept.
+
+### Weaknesses
+The analysis in this paper is mostly descriptive as opposed to describing why different tasks within DINOv2 have different representational sparseness etc.
+
+### Questions
+One weakness of this paper is that it primarily is descriptive as opposed to providing an understanding of why each task has such different utilization of concepts. Can the authors describe why they believe this asymmetry is happening? Is it relative complexity between the task types etc?
+
+The authors suggest that Dinov2’s representations follow their proposed Minkowski Representation Hypothesis. One thing that isn’t clear is whether the authors believe that other networks should follow this hypothesis. It seems to stem very naturally from attention layers. Do the authors expect other networks to follow this hypothesis? If so, when do they expect it to emerge over LRH or do they consider it an alternative hypothesis to LRH in general?
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+2
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper studies what DINOv2 “sees” by operationalizing the Linear Representation Hypothesis (LRH) with a sparse autoencoder to extract a 32k-concept dictionary from ViT activations, then analyzing how downstream tasks recruit these concepts and what the concepts’ geometry suggests. Empirically, different tasks use distinct, low-dimensional subsets: classification leans on off-object “Elsewhere” concepts, segmentation concentrates on boundary detectors, and depth estimation draws on monocular cue families. they also run geometric diagnostics and find some deviations from the LRH like structured redundancy. Motivated by this, the authors propose the Minkowski Representation Hypothesis (MRH): token embeddings lie in Minkowski sums of convex polytopes spanned by archetypal landmarks, a structure they argue multi-head attention realizes via convex combinations per head and summation across heads. They provide preliminary qualitative/quantitative signals consistent with MRH - e.g. token embeddings smoothly interpolate between landmark-like prototypes instead of varying along linear feature axes.
+
+### Strengths
+- The paper is ambitious in scope, undertaking one of the first large-scale interpretability analyses of a state-of-the-art vision foundation model through SAEs.
+- Goes beyond static visualization to quantify how distinct downstream tasks (classification, segmentation, depth) selectively recruit different subsets of the concept space, revealing functional specialization. e.g. the paper identifies interpretable and generalizable phenomena—e.g., “Elsewhere” (off-object) concepts, border detectors, and monocular depth cues—illustrating that meaningful, task-specific structure emerges spontaneously in DINO.
+- Moves beyond the traditional “sparse direction” view of representations to analyze the geometric structure (anisotropy, coherence, spectra) of learned concepts
+- The work also makes a creative theoretical leap—proposing the Minkowski Representation Hypothesis to reinterpret transformer geometry in terms of convex archetypal regions, an idea that elegantly ties attention mechanics to cognitive theories of conceptual spaces.
+
+### Weaknesses
+- The paper attempts to do too much—spanning SAE implementation, large-scale task analysis, and a new geometric theory (MRH)—without a unifying throughline. The connection between these parts often feels narrative rather than logically necessary.
+- The evidence for the Minkowski Representation Hypothesis is largely qualitative and circumstantial (e.g., UMAPs, smooth PCA maps, block structures). Stronger quantitative tests or falsifiable predictions are needed to substantiate the claim.
+- The observed deviations from LRH (anisotropy, coherence, low-dimensional task subspaces) could be explained by simpler mechanisms such as structured sparsity or normalization effects—yet the paper moves quickly to a new geometric framework without ruling these out.
+- Key hyperparameters (e.g., SAE sparsity level, dataset etc.) and their sensitivity are not well explored; it is unclear how robust the reported concept structure for the 3 tasks is to these design choices.
+- While task specialization is interesting, it remains correlational; it’s unclear whether manipulating the discovered concepts truly affects task behavior. I think some causal manipulation could be interesting too.
+
+### Questions
+- How do you quantitatively assess convex regions or Minkowski sums beyond analogy to attention mechanics?
+- How sensitive are the learned concept dictionaries to SAE initialization and regularization strength?
+- How do the discovered “Elsewhere” concepts improve human interpretability or model steering compared to prior SAE- or NMF-based approaches?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/rRB1bYErbL.md b/human_reviews/rRB1bYErbL.md
new file mode 100644
index 0000000000000000000000000000000000000000..2059be9c249124c4f1f14f44d8b07ea936def0b1
--- /dev/null
+++ b/human_reviews/rRB1bYErbL.md
@@ -0,0 +1,200 @@
+## Human Reviewer 1
+
+### Summary
+R-Horizon is motivated by existing LLM reasoning benchmarks' over-emphasis on _immediate, single-turn tasks_. It instead proposes a method to automatically generate _long-horizon, interdependent reasoning tasks_ via query composition, which enables it to curate the R-Horizon benchmark using existing (single-turn) datasets targetting math, coding, and agentic capabilities. The paper finds out that even the SOTA reasoning models suffer performance degradation as the number of composed queries (subproblems) increase. The paper then further suggests RLVR training over query-composed dataset, which demonstrates considerable improvement in both LRM's single- and multiple-problem performance. Extensive analysis and ablation studies provide important insights into the causes of performance degradation and why training with composed dataset works better.
+
+### Strengths
+- The paper is overall clearly motivated, well-written, and easy to follow.
+- The lack of long-horizon, multi-stage/problem evaluation of LRMs is indeed a practical concern, and the paper's approach of using query composition to automatically combine single-turn queries within one interdependent problem is (an example of) an elegant solution.
+- On top of the R-Horizon benchmark, the paper further conducts solid RLVR training on the composed dataset, which increases both single and multi-problem performance and further highlights the importance of equipping LRMs with multi-step compound reasoning skills.
+
+### Weaknesses
+- Even though the paper mentions that it constructs composed problems using both math, coding, and agentic datasets, most of the construction details and analysis are centering around the math criteria (see Q1 below). And the RL training is also solely done on math-related datasets.
+- For the analysis on the RL training, it would be great to see similar "error type distribution" plot (as in Figure 5) for the model before & after the training. This helps gain further insights on _why & how the performance on multi-query problems_ increase over the training.
+- While the writing is good overall, certain plots are hard to read due to ambiguous legends & captions. As an example, on Figure 8 the x-axis shows "Query 1/2/etc.", which I believe actually denotes the number of composed queries but can be misunderstood as query indices. Also certain plots have (unexplained) error bars/intervals while some do not.
+
+### Questions
+1. For the dataset construction for coding tasks, it's mentioned that _"unlike the sequential composition used for mathematical tasks, we apply a directly composed concatenation format ... without adding explicit dependencies"_. So (a) what is exactly this "directly composed concatenation format" (hard to tell simply from the given prompt in Appendix)? (b) isn't the point of R-Horizon benchmark to create interdependent, long-horizon reasoning tasks? I think the compromise made here undermines the overall validity (i.e. many of the analysis made in the paper, e.g. the "dependency reasoning error, applies to math only).
+2. For the reward design, the distinction between the "last" and "all" rewards is a bit non-intuitive as I thought they should be very similar when the problems are inter-dependent. Is it even possible for a model to obtain positive "last" reward even when its "all" reward is 0 (the other direction is trivial)?
+3. For **Figure 6**, how can the error positions be even larger than the output lengths (even query num is low)?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper introduces R-HORIZON, a benchmark and training framework designed to evaluate and enhance long-horizon reasoning in Large Reasoning Models (LRMs).
+Existing benchmarks mainly assess single-step reasoning, where each question is independent. R-HORIZON addresses this gap by composing interdependent multi-step queries from existing datasets (e.g., MATH500, AIME24/25, LiveCodeBench, WebShaper).
+The authors evaluate 25 state-of-the-art reasoning models (e.g., DeepSeek-R1, Qwen-3-235B, Gemini-2.5, Claude-Sonnet-4) and show that all suffer severe performance degradation as reasoning horizons increase.
+Furthermore, they train models using R-HORIZON-based reinforcement learning (RLVR), demonstrating substantial gains on both composed and standard reasoning tasks (+17.4 on long-horizon tasks and +7.5 on AIME24).
+
+Overall, the paper provides a new perspective on reasoning length, reflection behavior, and token budget allocation, revealing fundamental limits in current LRMs and proposing a practical solution for improvement.
+
+### Strengths
+Novel and impactful evaluation paradigm.
+R-HORIZON systematically measures reasoning depth and breadth, exposing weaknesses that single-horizon benchmarks cannot reveal.
+
+Comprehensive empirical analysis.
+The evaluation across 25 strong LRMs and multiple domains (math, code, agentic tasks) convincingly demonstrates consistent long-horizon degradation patterns.
+
+Actionable training insights.
+The reinforcement learning experiments with R-HORIZON data provide a scalable and cost-effective way to enhance long-horizon reasoning, with clear empirical gains and behavioral analyses (reflection, budget allocation).
+
+### Weaknesses
+Multi-step reasoning is indeed necessary; however, in this paper, simply combining several basic math problems offers limited reflection of contextual consistency in true multi-step reasoning. Tasks such as “1 + 2 = ?” followed by “previous answer + 4 = ?” can essentially be summarized into a single query like “1 + 2 + 4 = ?”, which weakens the intended long-horizon reasoning challenge.
+
+Moreover, maintaining contextual consistency across multi-step reasoning is highly dependent on prompt design, yet the paper does not clearly explain how prompts are constructed or formatted for solving these composed problems.
+
+The evaluation on closed-source models is insufficient, as only o4-mini was included.
+
+### Questions
+None
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes R-HORIZON, a benchmark and data construction framework for evaluating and improving long-horizon reasoning in large reasoning models (LRMs). Using Expanded Problem Composition (EPC), it links independent problems into multi-step dependency chains. Evaluating 25 LRMs across math, code, and agentic tasks, the authors find significant performance degradation as reasoning length increases. They further integrate R-HORIZON data into RL from verifiable rewards (RLVR) using Group Relative Policy Optimization (GRPO), showing that such training enhances models’ sustained reasoning ability.
+
+### Strengths
+**Strengths:**
+
+1. The paper is well-written, clearly structured, and easy to follow.
+2. It introduces meaningful long-horizon benchmarks and corresponding datasets that are valuable for advancing research on large reasoning models (LRMs).
+3. The extended benchmarks effectively reveal the limitations of current LRMs in maintaining long-horizon reasoning.
+4. The authors conduct reinforcement learning (RL) experiments on the constructed datasets, demonstrating notable improvements in sustained reasoning performance.
+5. The paper provides comprehensive analyses and insights into the proposed data construction and evaluation methods.
+
+### Weaknesses
+**Weaknesses:**
+1. While the proposed methods enable verifiable long-horizon reasoning evaluation, the constructed benchmarks appear somewhat artificial and may not fully reflect realistic reasoning scenarios.
+2. Similar efforts, such as *GSM-Infinity* [1], have explored benchmark construction for increasing reasoning complexity. The paper would benefit from a clearer discussion of how its approach differs from these prior works.
+
+[1] GSM-Infinite: *How Do Your LLMs Behave over Infinitely Increasing Context Length and Reasoning Complexity?* (ICML 2025) https://arxiv.org/abs/2502.05252
+
+### Questions
+**Questions for the Authors:**
+1. In **Figure 11**, the entropy of RL training decreases as *n* increases (e.g., *n=4* vs. *n=1*). Could the authors provide an explanation or hypothesis for why longer reasoning chains lead to lower entropy?
+2. Is it possible that the poor performance of models on **R-HORIZON** arises because they have not been exposed to similar long-horizon or compositional data during pre-training or intermediate training? Have you attempted any supervised fine-tuning (SFT) or cold-start experiments on such data?
+3. Could the improvement in original tasks after RL with R-HORIZON stem from the fact that the constructed datasets yield more balanced reward signals (i.e., less likely to produce all-correct or all-wrong rollouts), thereby improving rollout efficiency?
+4. The paper reports an increase in reasoning efficiency (shorter thinking length) after RL. Could this be because higher *n* naturally leads to longer responses, which increases the truncation ratio during RL training, thus implicitly encouraging more concise reasoning?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The authors propose a new dataset for long-horizon reasoning and then also train a model on their dataset with Reinforcement Learning (RL). The new dataset is based on six other datasets targeting math (MATH500, AMC23, AIME24 and AIME25), code generation (LiveCodeBench) and agentic tool usage (WebShaper). Long-horizon problems are generated by combining several independent problems into a single one, where the problems have to be solved (usually) sequentially since later problems rely on the results of earlier problems, thereby transforming them into a long-horizon task. 25 language models are then evaluated on the developed dataset and their results are analyzed. In addition the author also generate a training dataset based on the Skywork-RL dataset and use it to fine-tune an existing model with custom reward functions, which then is also evaluated.
+
+### Strengths
+* with the increase in context lengths of modern language models, long-horizon reasoning is a relevant topic and the dataset seems to be good contribution
+* the writing is mostly clear
+* good evaluation in general and large number of RLMs tested
+* good ablation study
+* detailed appendix with good overview over additional results as well as the evaluation setup
+
+### Weaknesses
+* I found the motivation a bit lacking: the new dataset is somewhat artificial in its dependencies - a proper motivational example would be beneficiary in my opinion
+* not a weakness per se, but I found the third chapter a bit too high-level without much details
+* writing primarily in the evaluation is at times a bit imprecise or not entirely accurate:
+ * 4.1:
+ * AMC23 is not discussed
+ * for MATH500 it seems that there is also data for 20 composed query numbers
+ * 4.2, first paragraph: "R1-Qwen-7B drops from 93.6% (n = 1) to 0% (n = 16), which is 34.1% more than the 32B model" - reference is unclear (probably MATH500); Where does the 34.1% come from?
+ * 5.1, Effective Reasoning Length of LRMs:
+ * "gap between the actual accuracy and theoretical accuracy of models becomes increasingly larger" - not necessarily true on AIME24
+ * "7B model’s error range is (4-6k tokens) while the 32B model’s error range is (8-10k tokens)" - context is missing, probably for MATH500
+ * Reflection is not defined or at least explained, which also makes it unclear why it matters.
+ * Sometimes "expected accuracy" and sometimes "theorectical accuracy" is used? I assume they are the same thing, so I suggest to use one term consistently.
+ * Appendix D.3: "Figure 14 (b) and (c) show that all models fail to allocate thinking budget reasonably according to problem difficulty" - seems to be somewhat not true for R1-Qwen-7B
+
+minor issues:
+* introduction: no reference for CoT
+* Figure 1: Theoretical Accuracy is not introduced at this point. (only on page 4)
+* 2.2:
+ * "Su et al. (2025); Yang et al. (2025b); Wu et al. (2025b) investigates..." - It should be "investigate", since it is a plural.
+* Algorithm 1: "and Create" - lowercase create?
+* 4.1: I believe, there is no whitespace before a footnote.
+* 4.3, Impact of Number of Composed Queries and Different Reward Schemes: n=1 is not really a composed problem
+* Figure 5: not very readable in terms of fontsize as well as chosen color for example for early stop and output truncation - I had to zoom in to 400% to find an instance for output truncation
+ * similar issue for Figure 6, especially the theoretical accuracy as well as Figures 7 to 9
+* Figure 6: missing whitespace before the brackets in the subfigure titles (also for Figure 9)
+* sometimes it is "Math500" and sometimes it is "MATH500" in the evaluation figures
+* Figure 8: x axis label might be misleading, maybe something like "2 Queries" or just "2" and so on would be better?
+* Appendix F.1: "policy loss 5 with" - should probably be something like "policy loss (see Eq. 5) with"
+* Appendix H: details on model, which generated the responses are missing, where the questions are coming from, etc.
+* references:
+ * consider the proper capitalization of the titles, at least for proper names and abbreviations to improve readability
+ * place of publication of arXiv references can only surmised from the URL
+ * consider adding the access date for web references
+ * [Guo et al. 2025] - cited differently than the other arXiv references
+ * [Luo et al. 2025a/b] - URL is not a proper link
+ * [MAA 2024/2025] - consider using something like the xurl package to fix the formatting
+ * [Muennighoff et al. 2025] - cited differently than the other arXiv references - maybe this could be the blueprint for the others
+
+### Questions
+* Figure 2: What are the circles with a red outline?
+* 4.2, last paragraph: Why is AIME25 more challenging than AIME24?
+* Figure 6: How can the error position be above the token length? Because wrong answers tend to be longer for smaller query numbers?
+* How much can the six benchmarks (MATH500, AMC23, AIME24/25, LiveCodeBench and WebShaper) be considered out of distribution compared to the training dataset based on Skywork-RL?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/t33kMzEAg8.md b/human_reviews/t33kMzEAg8.md
new file mode 100644
index 0000000000000000000000000000000000000000..2d61f79052844ae8e5bf14ce1c3925f5a42f7629
--- /dev/null
+++ b/human_reviews/t33kMzEAg8.md
@@ -0,0 +1,206 @@
+## Human Reviewer 1
+
+### Summary
+This paper presents **SWiReasoning**, a training-free framework that dynamically switches between **explicit (token-based)** and **latent (hidden-space)** reasoning based on entropy-derived confidence trends. A switch-count control prevents overthinking, improving both accuracy and token efficiency. Across multiple math and STEM reasoning benchmarks (GSM8K, Math500, AIME24/25, GPQA) and three reasoning LLMs (Qwen3-8B, Qwen3-1.7B, DeepSeek-R1), the method yields +1.5–2.8% Pass@1 improvement and up to +80% token efficiency gains without retraining.
+
+### Strengths
+- **Practical and training-free**: Improves reasoning efficiency entirely at inference time.
+- **Comprehensive experiments**: Consistent gains across models and reasoning benchmarks.
+- **Well-analyzed switching mechanism**: Includes ablations on window size, confidence, and signal mixing.
+- **Clear motivation**: Tackles overthinking and token inefficiency in CoT reasoning.
+
+### Weaknesses
+- **Moderate novelty**: Combines existing ideas (latent reasoning + token control) with minor algorithmic extensions.
+- **Pipeline complexity**: The overall system involves multiple heuristic components (entropy tracking, switching windows, signal mixing), making the pipeline heavy and less theoretically elegant.
+- **System-oriented nature**: The contribution is more of a practical inference-time system design than a fundamentally new reasoning principle.
+- **Marginal improvement**: Accuracy gains are modest given the added complexity.
+
+### Questions
+1. How robust is the entropy-based switching to unseen data or noisy prompts?
+2. Could the switching mechanism be learned rather than manually tuned?
+3. How does this compare to dynamic decoding methods such as COCONUT or Long⊗Short?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes SWIREASONING, a training-free framework that dynamically switches between explicit and latent reasoning based on entropy-driven confidence signals in the next-token distribution. The key idea is that staying purely in latent space can diffuse probability mass and cause slow or noisy convergence, so the model alternates modes to balance exploration and exploitation. A second mechanism caps the number of thinking-block switches to reduce “overthinking” and save tokens. The authors conduct some experiments and show the performance.
+
+### Strengths
+1. The paper proposes a method that flexibly combines latent reasoning with explicit reasoning, effectively reusing intermediate embeddings as inputs to enable denser thinking steps.
+2. The authors provide experiments on several standard reasoning benchmarks to demonstrate the applicability of the approach.
+
+### Weaknesses
+1. The overall performance gains are relatively small, and the efficiency story is not fully convincing — a clearer, more direct metric is needed, and Appendix Table 8 suggests that long generations are still required to reach good accuracy.
+2. The paper should further explain why switching between latent and explicit modes improves performance, and clarify whether (and how) the latent trajectories can be decoded or inspected in text for interpretability.
+3. The experimental scope is limited; results on larger models and on other task types (e.g., coding), where latent reasoning may be less naturally applicable, would make the empirical claims more convincing.
+
+### Questions
+Please chek the weakness
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper introduces SwiReasoning, a training-free framework for improving reasoning in large language models by dynamically switching between explicit chain-of-thought (CoT) and latent reasoning modes. The core innovation lies in using entropy trends from next-token distributions as block-wise confidence signals to guide mode transitions: when confidence increases (entropy drops), the system switches to explicit reasoning to consolidate progress; when uncertainty persists (entropy rises), it switches to latent reasoning for exploration. Additionally, a switch count control mechanism limits the maximum number of mode transitions and enables early answer generation at natural checkpoints, suppressing overthinking and improving token efficiency.
+
+### Strengths
+1. The insight that reasoning should adaptively switch based on confidence is intuitive yet underexplored in training-free settings, thereby making the idea and approach of the paper novel.
+
+2. The evaluation is comprehensive and spans multiple model families, scales (1.7B–8B parameters), training paradigms, and five diverse benchmarks. The consistency of improvements across all settings (13 out of 15 evaluations achieve highest token efficiency) provides strong empirical support.
+
+3. The methodology is well-structured with intuitive explanations, formal algorithmic descriptions (Algorithm 1), and effective visualizations (Figures 1–5). The paper is well written.
+
+### Weaknesses
+Enumerating a few weaknesses here
+
+1. While the convergence and termination triggers are intuitive, the specific thresholds (½Cmax for convergence, Cmax for termination) appear arbitrary. Why these specific fractions? How sensitive is performance to these choices? The paper doesn't ablate these design decisions.
+
+2. Limited failure case analysis and the modes of failure. It would be good to add the cases or categories of questions where the proposed approach fails.
+
+3. The results reported for soft thinking approach appear to be lower than standard CoT, which is contrary to the claims in the original Soft-thinking paper. This raises concerns about implementation correctness and whether comparisons are on equal footing.
+
+### Questions
+1. How is entropy computed during latent steps when no explicit token is selected? Is it from the softmax over the last hidden state projected through the LM head?
+
+2. In ablation Table 3, window size 512 is optimal. Given typical generation lengths (e.g., ~2000 tokens for GSM8K), does this mean most problems only switch 2–4 times? If so, is this really "dynamic" switching, or just a staged approach (latent -> explicit -> latent -> explicit) Can you show histograms of actual switch counts across problem difficulties?
+
+3. The paper claims "Pareto-superior" results. However, in some cases (e.g., AIME24 in Fig. 4), CoT appears to match or exceed SwiReasoning's accuracy at similar token budgets. Can you clarify where strict Pareto dominance holds vs. where there are trade-offs?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper proposes SwiReasoning, a training-free framework for LLM reasoning that dynamically switches between explicit chain-of-thought and latent reasoning modes. The switching is guided by block-wise confidence estimated from entropy trends in next-token distributions. The method also includes a switch count controller to suppress overthinking and improve token efficiency. Experiments on mathematical and STEM benchmarks show consistent accuracy improvements and token efficiency gains across different model families and sizes.
+
+### Strengths
+- The idea of dynamically switching between explicit and latent reasoning based on confidence signals is intuitive and addresses limitations of pure latent reasoning approaches.
+- The experimental evaluation is comprehensive across multiple models and benchmarks, including various token budget settings and Pass@k analysis that shows the method overall improves the performance with better efficiency.
+- The ablation studies analyze key design choices and provide insights into how different components contribute to performance.
+
+### Weaknesses
+- The method introduces many heuristic design choices and hyperparameters (window sizes W_E→L and W_L→E, signal mixing coefficients α₀ and β₀, switch count limits C_max, convergence/termination triggers), and it appears from the ablations that these are tuned on the test sets, which raises concerns about generalization and fair comparison.
+
+- It seems unclear whether the latent reasoning mode genuinely enables the claimed "exploration" of multiple reasoning paths, since Soft-Thinking simply weights tokens by probability, and the pretrained LLM likely still concentrates probability mass on similar natural language tokens. It would be beneficial to provide some analysis of the probability distributions within the latent tokens or other evidence that meaningful exploration is occurring beyond what explicit sampling would achieve.
+
+- There are quite a few citations that are wrong and appear to be LLM-hallucinated, even including the most important "Soft-Thinking" paper that this work is primarily built on top of - the citation in the draft is ```Bowen Zhang, Yanzhuo Li, Shuohang Wang, Yu Tu, Jason Wei, Ashish Vaswani, Shikun Liu, Chenlu Yu, Deli Chen, Hongyi Li, Zhihua Zhang, and Chen Liang. Soft thinking: Training-free
+latent reasoning for large language models.``` while the actual one should be ```Zhen Zhang, Xuehai He, Weixiang Yan, Ao Shen, Chenyang Zhao, Shuohang Wang, Yelong Shen, Xin Eric Wang. Soft Thinking: Unlocking the Reasoning Potential of LLMs in Continuous Concept Space```.
+
+### Questions
+See weaknesses.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 5
+
+### Summary
+Summary
+This paper introduces SWIREASONING, a training-free reasoning approach that integrates latent and explicit chain-of-thought (CoT) modes. Instead of committing to token-level reasoning at every step, the method forms latent reasoning states via weighted token embeddings, allowing the model to retain uncertainty and explore multiple hidden trajectories.
+A block-wise entropy reference is used as a switching criterion: when the entropy decreases (confidence rises), the model switches from latent to explicit reasoning immediately; when entropy increases, switching from explicit back to latent requires a dwell window to prevent oscillation. To signal mode transitions more explicitly, the method injects fused embeddings of < think > / think > tokens during switch steps.
+Additionally, switch counters and termination triggers are employed to avoid unbounded “over-thinking” and encourage timely final answer production.
+Experiments show that, particularly for smaller models (≤8B) and token-budget-constrained settings, SWIREASONING delivers higher reasoning accuracy and efficiency compared to standard CoT and soft-thinking baselines. Ablation studies on signal mixing and dwell window length further support the design choices.
+
+### Strengths
+1. The approach does not require model updates and can be applied directly at inference time, making it practical for deployment on existing models.
+2.The entropy based switching between latent and explicit reasoning, combined with a dwell window to avoid oscillation, is conceptually simple and computationally lightweight.
+3. The method shows consistent gains over standard CoT on math reasoning benchmarks, particularly for ≤8B models under constrained token budgets, with ablation studies supporting key design choices.
+
+### Weaknesses
+1. Latent reasoning contribution unclear at small budgets
+In short-budget settings, the method typically switches to explicit mode immediately and does not enter latent reasoning due to the dwell window. Yet it still outperforms CoT, suggesting the improvements largely come from early confidence-based stopping and < think >/< /think > embedding conditioning rather than latent reasoning itself. Ablation isolating these effects would clarify the true source of gains.
+2. Scope limited to math-focused tasks
+Experiments are concentrated on math reasoning, and it remains unclear whether the method benefits broader domains (e.g., multi-hop QA, code, commonsense reasoning). Reasoning dynamics can differ significantly across tasks.
+3. Large-model scaling and SoftThinking baseline discrepancy
+The original SoftThinking results indicate improvements over CoT primarily for ≥32B models. Here, the reproduced SoftThink baseline is weaker than CoT on ≤8B models. Given that SwiReasoning is training-free, extending evaluation to ≥32B models would help verify baseline fidelity and clarify whether the proposed method scales beyond the small-model setting.
+Heuristic hyperparameters + no runtime reporting
+4.Heuristic switching and lack of runtime analysis
+The switching logic, dwell window, and mixing schedule are manually designed. While intuitive, their tuning behavior across models and tasks remains unclear, and no wall-clock or FLOP analysis is provided, making deployment efficiency uncertain.
+
+### Questions
+1 In small budget settings, the model often does not actually enter latent mode due to the dwell window, yet achieves strong gains. Can you provide ablations where latent reasoning is disabled but the early-exit and conditioning remain, to isolate the effect of latent reasoning itself?
+
+2 Token efficiency does not necessarily imply inference-time efficiency. Can you report wall-clock latency or FLOPs vs CoT and SoftThinking to demonstrate practical gains?
+
+3 The SoftThinking baseline underperforms CoT in your ≤8B experiments, whereas the original paper shows gains mainly at ≥32B scale. Can you confirm your implementation matches the original, and provide results on a ≥32B model to ensure fairness?
+
+4 Could you clarify whether your latent update uses the full vocabulary distribution or a top-k truncation (as in SoftThinking)?
+
+5 Could you provide a systematic component-wise ablation (turning each mechanism on/off) to quantify the marginal contribution of: (i) dwell window (incl. 0) and asymmetry, (ii) < think >/< /think > mixing, (iii) switch-count cap/termination triggers。
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/t5Nd4HiI3E.md b/human_reviews/t5Nd4HiI3E.md
new file mode 100644
index 0000000000000000000000000000000000000000..84103e64430dd8db2d0c3f56fa506572e6000aa1
--- /dev/null
+++ b/human_reviews/t5Nd4HiI3E.md
@@ -0,0 +1,160 @@
+## Human Reviewer 1
+
+### Summary
+This work concentrates on the task of aligning large reasoning models with human preferences via RLHF/DPO. The authors argue that the gradient variance of the reasoning traces impacts the performance of conventional alignment methods, and propose BVPO to jointly consider both bias and variance. Specifically, an empty-trace gradient is computed and linearly merged with the original trace-based gradient, with MSE minimization to decide the optimal combination weights. In experiments, the proposed BVPO achieves better performance on both alignment and reasoning tasks.
+
+### Strengths
+1) The proposed idea is simple and sound. This work is easy to follow.
+2) The authors have conducted various of downstream tasks to evaluate the methods’ performance on both alignment and reasoning tasks.
+3) The theoretical analysis part provides a good discussion on the MSE-based selections.
+
+### Weaknesses
+1) The straightforward linear combination of L_t and L_e outperforms SimPO and DPO consistently on both alignment and reasoning tasks, which is impressive. Is the reason for the failure of baselines really due to the high variance caused by reasoning traces? Is it possible that the improvement of BVPO is mainly brought by extra prompts and additional training signals of g_e? Why does the effectiveness continue to improve in reasoning tasks?
+2) The authors should provide the exact value of \alpha in different settings. Moreover, the effectiveness of the MSE minimization should be verified (e.g., by providing experiments with different hyperparameter \alpha on both tasks).
+3) The authors conduct the experiments merely on Qwen series. The generalization ability of BVPO on other LLM structures should be evaluated.
+
+### Questions
+1) Is there any better selection besides the empty trace that could further enhance the performance of BVPO? For instance, a “shorter reasoning prompt”?
+2) How to extend BVPO to RLHF besides DPO?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper addresses aligning large reasoning models with human preferences, focusing on the instability caused by noisy reasoning traces. It introduces Bias–Variance Optimized Preference Optimization, combining high-variance trace-based gradients with low-variance empty-trace gradients to optimize the bias-variance trade-off. Theoretical results prove variance reduction and MSE-optimal mixing, while experiments on DeepSeek-R1 models show up to 7.8 points improvement on AlpacaEval 2 and 6.8 points on Arena-Hard, with a 4.0-point boost in math reasoning.
+
+### Strengths
+1. Offers rigorous proofs of variance reduction and MSE optimization, providing a solid foundation for BVPO's design.
+2. Demonstrates significant alignment and reasoning improvements across diverse benchmarks, validating practical impact.
+3. As a drop-in method, BVPO integrates easily with existing DPO pipelines, enhancing accessibility.
+
+### Weaknesses
+- The BVPO method is more like a data augmentation method than a improvement in algorithm. The theoretical analysis induced optimal value of $\alpha$, but it is never used in practical, and the authors simply chose 0.5
+- Insufficient experiments. This work only compares with two baselines SimPO and DPO on ArenaHard and AlpacaEval 2.0. Some important baselines are missing, such as mixing thinking/non-thinking preference data
+- Lack of analysis. There are limited analysis conducted, only evaluation on Math reasoning benchmarks. Some important ablation studies, such as the value of $\alpha$, $\beta$, were not included.
+
+### Questions
+- On the implementation of DPO and SimPO, did you augment the empty-trace datasets or only use it for BVPO? If so, there would be an unfair comparison issue since BVPO used twice more training data than the baselines.
+- The 4096 max length is quite short for reasoning models. How do you deal with longer generations? Why the evaluation used 8192 max tokens which is not aligned with training?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper targets aligning LRMs with human-preferred final answers while marginalizing intractable reasoning traces. It spotlights gradient variance caused by sampling a single trace and proposes BVPO, which optimally mixes high-variance trace gradients $g_t$ and low-variance empty-trace gradients $g_e$ by minimizing MSE to the true marginal gradient. Theoretical analysis shows that BVPO reduces variance and improves convergence bounds. Empirically, BVPO outperforms strong baselines like DPO and SimPO on AlpacaEval 2 and Arena-Hard, and improves reasoning performance on math benchmarks.
+
+### Strengths
+1. The paper introduces a new method for preference optimization in LRMs, and derives a closed-form optimal mixing coefficient for gradient estimation.
+2. The work is presented clearly: problem formulation, method derivation, and experiments are easy to follow.
+3. The paper shows that simple gradient re-weighting simultaneously improves both chat quality and mathematical reasoning without extra data.
+
+### Weaknesses
+1. **Distribution shift of empty traces**
+ Answers generated under the `` condition come from a different prompt distribution than regular reasoning traces. The paper simply interpolates the two log-probabilities without measuring the bias induced by this shift, nor does it report accuracy or consistency of the empty-trace replies on a validation set.
+
+2. **The optimal $\alpha^*$ relies on unknown quantities**
+ The closed-form optimal weight $\alpha^*$ needs $Σ_{te}, b_t, b_e$, etc. In practice these expectations are replaced by mini-batch estimates whose error is not analyzed. If the estimator variance is large, the “optimal” weight can deviate far from the theoretical value and even inject extra noise; the manuscript provides no bound or ablation on this estimation error.
+
+3. **Experiments limited to SFT-only checkpoints**
+ All results are obtained from DeepSeek-R1-Distill models that only undergo supervised fine-tuning. Their traces are short and well-formatted, so gradient variance is relatively mild. After large-scale RL (especially RLVR), reasoning models produce much longer and more exploratory chains, amplifying noise. Whether BVPO still suppresses variance under this harder regime remains untested.
+
+### Questions
+1. **Empty-trace distribution shift**
+
+ Have you measured the KL divergence or any task-accuracy drop between regular and empty-trace conditions?
+
+2. **RL-checkpoints test**
+
+ Can you report the result on a fully RL-tuned model (e.g. OpenMath-Nemotron-1.5B) to show whether BVPO still works when traces are longer and noisier?
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper addresses the challenge of aligning Large Reasoning Models (LRMs) with human preferences. The authors identify that the standard approach of using trace-based gradients suffers from high variance due to stochastic reasoning trace sampling. They propose BVPO (Bias-Variance Optimized Preference Optimization), which combines a high-variance trace-based gradient estimator with a low-variance empty-trace estimator through convex combination. The method provides theoretical guarantees on variance reduction and MSE optimality, and demonstrates empirical improvements of up to 7.8 points on AlpacaEval 2 and 6.8 points on Arena-Hard, while also improving math reasoning performance by up to 4.0 points across six benchmarks.
+
+### Strengths
+1. **Problem Identification**: The paper makes a valuable contribution by clearly identifying and quantifying gradient variance as a key bottleneck in LRM alignment. The empirical analysis in Appendix B provides strong evidence with variance ratios and NLL decomposition.
+
+2. **Theoretical Rigor**: The theoretical framework is comprehensive, covering variance reduction, MSE optimality, and convergence guarantees. The proofs appear sound and build appropriately on established optimization theory.
+
+3. **Empirical Validation**: Experiments are thorough, testing on three model sizes (1.5B, 7B, 8B parameters) across both alignment benchmarks (AlpacaEval 2, Arena-Hard) and reasoning benchmarks (AIME, AMC, Minerva, OlympiadBench, MATH-500).
+
+4. **Practical Impact**: The consistent improvements over strong baselines and the surprising benefit to math reasoning suggest real practical value.
+
+### Weaknesses
+**Dataset Cost and Efficiency**:
+ - Requires generating two separate preference datasets (D_t and D_e)
+ - No analysis of whether the same improvement could be achieved with the same total data budget using only one approach
+ - No discussion of computational overhead during training
+
+ **Limited Scope**:
+ - Only tested on DeepSeek-R1 family models
+ - All models share the same base architecture (Qwen)
+ - No exploration of other LRM architectures or reasoning approaches
+
+### Questions
+see Weaknesses
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+2
\ No newline at end of file
diff --git a/human_reviews/tucuU4sQ3s.md b/human_reviews/tucuU4sQ3s.md
new file mode 100644
index 0000000000000000000000000000000000000000..d5791280119e385201f9e62bb4807d7181762331
--- /dev/null
+++ b/human_reviews/tucuU4sQ3s.md
@@ -0,0 +1,145 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes NuSA-CL, a memory-free continual learning method that leverages orthogonal weight modulation to mitigate catastrophic forgetting. The approach updates model parameters only along directions orthogonal to previously learned subspaces, thus avoiding interference with past knowledge without storing any exemplars. Experiments on several vision and vision-language benchmarks show that NuSA-CL performs competitively among storage-free approaches but lags behind replay-based methods.
+
+### Strengths
+1. Memory-free design.
+The method achieves continual learning without any replay or exemplar storage, offering a clean and theoretically motivated direction for efficient CL.
+2. Strong performance among storage-free models.
+Within the memory-free setting, NuSA-CL demonstrates solid results and stable learning behavior across multiple benchmarks.
+
+### Weaknesses
+1. Limited performance.
+The method performs worse than all storage-based models, showing limited competitiveness in practical CL scenarios.
+2. Simplicity vs. effectiveness.
+The proposed approach is simple, but its results do not convincingly show that such a minimal mechanism can achieve strong continual learning.
+3. Scalability concern.
+As also noted by the authors, under extreme lifelong settings the null-space directions may saturate. Without a clear advantage in scalability over storage-based methods, the claimed benefit of being memory-free remains modest.
+
+### Questions
+1. What prevents NuSA-CL from surpassing any storage-based methods in performance, despite its theoretically clean orthogonal design?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+NuSA-CL addresses continual learning (CL) by balancing stability (retaining old knowledge) and plasticity (adapting to new tasks). The core idea is a low-rank adaptation strategy that constrains task-specific weight updates to the model’s approximate null-space, minimizing interference with previously learned knowledge and preserving the model’s zero-shot learning ability. Unlike methods that rely on replay buffers or high-cost distillation, NuSA-CL requires minimal computation and memory, making it suitable for resource-constrained scenarios. Experimental results demonstrate that the framework not only maintains strong zero-shot transfer performance but also achieves competitive results on continual learning benchmarks.
+
+### Strengths
+1. Introduces the novel idea of updating in null-space directions (Tail), which is conceptually different from previous approaches that focus on Top singular directions or random subspaces. Combines multimodal adaptation and rank-limited updates, which is a creative integration addressing the stability–plasticity trade-off.
+2. Significance Tackles catastrophic forgetting, a central challenge in continual learning. Demonstrates practical low-cost, robust implementation suitable for large-scale models and multimodal tasks.
+3. The paper is well-structured, with clear motivation, methodology, and empirical validation. Extensive ablation studies and visualizations (e.g., subspace and rank analysis) make the mechanisms and design choices transparent.
+4. Strong experimental evaluation, including comparisons with Top/Random subspaces and analysis of rank choices. Shows robustness to hyperparameters and demonstrates practical feasibility with low SVD overhead.
+
+### Weaknesses
+1. The method assumes that tasks have sufficiently distinct distributions, enabling interference reduction via orthogonalization or projection. However, when tasks are highly correlated or share overlapping features, the model may struggle to separate old and new knowledge, leading to reduced stability and adaptability.
+2. The experimental evaluation is limited to standard vision benchmarks (e.g., CIFAR, ImageNet subsets) with relatively few tasks, focusing only on class-incremental learning. The absence of experiments on more complex multimodal settings such as VQA or image-text retrieval limits the demonstration of generalizability.
+3. The method’s performance is sensitive to key hyperparameters, including projection dimension, update ratio, and orthogonalization strength. The lack of an adaptive tuning mechanism may hinder robustness and scalability in real-world, dynamic scenarios.
+4. In class-incremental tasks, the method has not been compared with other Parameter-Efficient Fine-Tuning (PEFT) approaches such as LPI, TAM, MoELora,or DIKI, limiting the completeness of its performance validation.
+
+### Questions
+1. Q: In class-incremental tasks, NuSACL has not been compared with other PEFT approaches such as LPI, TAM, MoELora, or DIKI. How does it perform relative to these methods in terms of both accuracy and memory efficiency?
+2. Q: While NuSACL improves stability via orthogonal projection, catastrophic forgetting may still occur in challenging incremental protocols (e.g., many classes, highly overlapping features). Have the authors quantified forgetting under these extreme settings?
+3. Q: Although the method is described as lightweight, how does it scale to large models (e.g., ViT-L/14 or multimodal transformers) where repeated SVD computations might be expensive?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes NuSA-CL, a memory-free continual learning method for VLMs (e.g., CLIP). It identifies a low-energy “null” subspace via SVD before each task, constrains low-rank updates to this subspace during training, then merges updates into the backbone to avoid parameter growth. Experiments on MTIL (full/5-shot) and CIFAR-100 CIL show strong performance and efficiency; analyses include rank/null-space dynamics, subspace/rank ablations, and core mechanism ablations.
+
+### Strengths
+1. Simple, natural idea: SVD-based separation of principal vs. null-like directions; persistent constraint prevents drift and reduces interference.
+2. Truly memory-free and fixed-size: no replay, no task-specific modules; efficient and scalable.
+3. Strong empirical results with comprehensive cost reporting; SOTA among storage-free baselines and close to storage-based methods.
+4. Clear, informative ablations (Top/Tail/Random; rmax; persistent constraint; multimodal adaptation) and mechanism evidence (effective-rank, null-ratio trajectories).
+5. Practical and robust: negligible SVD overhead; stable across energy thresholds; single-GPU training.
+
+### Weaknesses
+1. Theory is mostly motivational; tighter links between parameter-space bounds and function-level forgetting would help.
+2. Long-horizon spectral drift and null-space quality: Although the method re-computes SVD per task, after many merges the spectrum will evolve. A more systematic study of whether low-energy subspaces gradually become “contaminated” (especially for highly correlated task sequences) and how to monitor/remedy this (e.g., periodic re-orthogonalization, spectral gating) would be valuable.
+3. Merged updates limit reversibility; lightweight selective rollback is not explored.
+4. Scalability guidance for larger backbones (ViT-L/H) would aid practitioners.
+
+### Questions
+See weaknesses.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This work proposes NuSA-CL, a lightweight memory-free continual learning framework to address distributional shifts/novel tasks during real-world CLIP usage. NuSA-CL employs low-rank adaptation and null space constraint via SVD to constrain the update of parameters in a way that has low influence on previous knowledge. The experiments demonstrate its effectiveness among memory-free methods.
+
+### Strengths
+1. The theoretical motivation is clear and reasonable.
+2. The experiments demonstrate a favorable result among memory-free methods. The analysis and discussions are comprehensive, showing the method's practicality and robustness.
+
+### Weaknesses
+1. Storage-free baseline models are not that strong. Then a question is: using null-space may constrain the model expressivity. Is it still able to trade off by increasing the memory cost to get a stronger performance? Or the null-space also constrain the performance upperbound?
+
+### Questions
+See weakness.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/uXecy0nKiJ.md b/human_reviews/uXecy0nKiJ.md
new file mode 100644
index 0000000000000000000000000000000000000000..03f976ab5fc2075ad7fbdb34f82a0ee3d82a7b86
--- /dev/null
+++ b/human_reviews/uXecy0nKiJ.md
@@ -0,0 +1,162 @@
+## Human Reviewer 1
+
+### Summary
+This paper investigates how activation steering, both through random directions and SAE-derived concept vectors, can compromise LLM safety mechanisms. The authors test steering across layers and magnitudes on JailbreakBench, showing that middle-layer steering often leads to higher compliance with harmful requests. They further demonstrate that certain SAE features can generalize into universal jailbreak vectors that work across prompts and models. Overall, the paper argues that interpretable steering methods, often assumed to enhance control, can inadvertently weaken safety alignment.
+
+### Strengths
+1. **Novelty of motivation**: The paper identifies a previously underexplored safety concern that activation steering, including interpretable SAE-based methods, can unintentionally reduce model safety.
+2. **Practical relevance**: The authors demonstrate that SAE-derived features can act as jailbreak tools raises concrete concerns about how interpretability techniques may be weaponized.
+3. **Empirical insight**: The finding that middle layers are particularly vulnerable and that steering effects generalize across prompts adds useful understanding to where safety mechanisms fail.
+
+### Weaknesses
+1. **Unclear conceptual grounding of steering vectors**: Although the paper motivates activation steering as conceptually meaningful (e.g., France concept in Figure 1), most experiments use Gaussian-random directions. This makes it difficult to interpret what the steering is actually doing beyond injecting noise into activations.
+2. **Narrow evaluation scope**: All results are based on JailbreakBench. Testing the same steering methods on other safety benchmarks (e.g., AdvBench[1] or other aspects of safety like privacy and toxicity) and on general capability tasks like MMLU or CSQA could help determine whether the steering trade-offs generalize beyond safety settings.
+3. **Weak causal interpretation**: It remains unclear whether steering compromises safety through meaningful feature activation or through general perturbation effects. A more careful causal or ablation-based analysis could clarify the mechanism.
+
+[1] Universal and Transferable Adversarial Attacks on Aligned Language Models, 2023
+
+### Questions
+Please refer to weaknesses
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper examines how activation steering during inference can degrade LLM refusal behaviors. The authors experimented with models like Llama3, Qwen2.5, and Falcon across multiple layers and steering magnitudes, under settings of using random Gaussian vectors and SAE features from pre-trained public SAEs. They measure harmful compliance using LLM-as-judge on 100 harmful prompts. The main finding is that even random or benign steering can raise compliance rates up to 27%. Moreover, combining 20 randomly sampled steering vectors can create a universal attack.
+
+### Strengths
+1. **The framing and angle are novel.**
+- Prior work emphasized more purpose-built steering vectors, while this paper explores ordinary vectors. Also, the argument that activation steering can be risky is an interesting and underexplored angle.
+
+2. **Aggregating the vectors into a universal attack (Section 4.4) is a simple and neat experiment** that supports the authors’ claim and demonstrates a plausible, real-world threat.
+
+### Weaknesses
+1. **Unsteered baseline results are not clear from the paper.**
+- In Figures 2, 3, 6, the comparisons begin at nonzero steering coefficients and do not include a no steering condition. And from the paper, it’s ambiguous whether the baselines that the authors refer to are actually measured through unsteered models. Without this it’s hard to interpret the reported changes caused by steering.
+
+2. **Compliance measurement (Section 3.4) is insufficient.**
+- The authors consider incoherent or repetitive outputs as safe, and this design choice can potentially lead to false negatives. Although some quality assessment is done (Appendix B), this is only based on precision.
+- For reported compliance rates across figures, no uncertainty quantification such as confidence intervals is provided.
+
+3. **SAE feature selection process is not clear enough.**
+- The paper highlights a few high impact features like “brand identity” (Figure 4), but it’s unclear the total number of features tested, whether the reported features were cherry-picked, or how labels were assigned.
+
+### Questions
+1. Out of the 668 SAE features that can jailbreak at least five prompts, is this distribution uniform or concentrated around specific semantic types, like emotion, identity, etc?
+
+2. What is your hypothesis on that semantically benign SAE concepts can jailbreak harmful prompts, for example, whether this is due to linear compositionality (ex. features accidentally aligning with refusal-suppression directions) or something else?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper presents evidence that steering LLM activations with random vectors and benign SAE features makes LLMs more susceptible to jailbreaking. It further explores combining jailbreak-inducing random vectors to create a "universal" attack vector.
+
+### Strengths
+The paper identifies a potentially important and underappreciated threat vector. A finding that a large majority of randomly chosen directions increase jailbreak susceptibility is surprising enough to be important, and jailbreak susceptibility induced by steering with benign SAE features has practical relevance.
+
+### Weaknesses
+The claim made in the abstract and introduction that steering with benign SAE features is even more alignment-breaking that steering with random directions appears to be based on a single prompt and model, evaluated at a depth that's not optimal for random directions (Figure 2); the more comprehensive evaluation shown in Figure 3 shows precisely the opposite, with Llama3-8b-it compliance rates much higher with random vectors on every prompt category save one. This claim also appears misleadingly in the Conclusion, where random steering on one model is compared with SAE steering on another.
+
+The judge model used is quite small, despite the fact that much better models could be used at very modest cost. The authors argue that manual labelings mostly agreed with the model; still, this is an unnecessary source of uncertainty added to critical evaluations.
+
+Figures lack confidence intervals.
+
+Figure 4b is quite hard to interpret on its own.
+
+The claim that to be used as an attack this method only requires "black-box API access" (line 461) seems misleading, as with the exception of Goodfire's research API designed specifically for this purpose, hosts do not allow steering via API; the practical implication of this work are that researchers should test for jailbreak vulnerability before deploying steering to production.
+
+### Questions
+Figure 2b shows a Llama3-8b-it 2/3rds depth random steering compliance rate across scaling coefficients that differs from the one shown in Figure 2c; why?
+
+How were the 1000 SAE features chosen?
+
+What temperature(s) was used?
+
+Can you clarify the methods for creating the universal attack vector? What does "top 20 vectors that successfully induce compliance" mean? There's only one prompt, so each vector either induces compliance or doesn't. Why do you need "100-500" trials to identify them? What is the dependence on "the model's baseline vulnerability" mean? If the baseline compliance rate is not ~0%, then it's important to show it in Figure 3.
+
+What do you think explains your findings? It seems quite surprising that steering with most SAE features would lead to alignment breaking. Anthropic opened up a "Golden Gate Bridge" feature-steered model to the world, with no apparent jailbreaking issues; did they just get lucky?
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper asks whether activation steering for the purpose of inducing a behavior unrelated to safety (e.g. style transfer) may inadvertently cause jailbroken behavior. The authors find that indeed activation steering even with random vectors consistently induce jailbroken behavior. They find that when using SAEs as a source of steering vectors this effect is exacerbated. The authors introduce a technique for "universal" jailbreaking: averaging a sample of random vectors that have proven effective against certain attacks.
+
+### Strengths
+The paper studies an important area: inadvertent jailbreaking as a result of inference time interventions designed for an unrelated purpose, such as steering with SAEs. The authors study different danger categories when it comes to jailbreaking and measure their cross generalization.
+
+### Weaknesses
+I would have liked to see results not just for random vectors but also for steering vectors that were actually trained for some benign purpose from the literature - do meaningful steering vectors also induce jailbroken behavior? For example, it has also been reported in the literature (Ghandeharioun 2024 - https://arxiv.org/pdf/2406.12094) that steering vectors may inadvertently cause increased refusal behavior. Also the steering coefficients at which the authors observed misaligned behavior (>1) is generally outside the recommended regime for use.
+
+I also feel that the core result: random vectors induce misalignment - is well predicted by the literature. For example Qi 2024 - https://arxiv.org/pdf/2406.05946, and especially Qi 2023 - https://arxiv.org/pdf/2310.03693 (Fine-tuning aligned language models compromises safety even when users do not intend to! - which the authors cite), also Peng 2024 - https://arxiv.org/pdf/2405.17374v1 - regarding the fragility of safety alignment.
+
+### Questions
+What is the recommended steering coefficient when using SAE features? It seems it's only problematic / jailbreaks the model near 2.0. At that point, is the original intended behavior of SAE feature preserved?
+
+If possible, it would be great to use a more powerful model to classify safe / unsafe than Qwen 8B.
+
+nit: Figure 2 - I think it would help with clarity to use the same y-range across all 3 figures.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/vPSiCA3CkD.md b/human_reviews/vPSiCA3CkD.md
new file mode 100644
index 0000000000000000000000000000000000000000..061b391291093cb6d8420adc67c70487714be498
--- /dev/null
+++ b/human_reviews/vPSiCA3CkD.md
@@ -0,0 +1,164 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes an accelerated adaptive method that can estimate the local Lipschitz constant of the gradients adaptively. It is based on a series of recent papers that use the difference of gradients or other empirical quantities to estimate the Lipschitzness of gradients. This work isn't the first to introduce an accelerated adaptive method like that, but it is the first one where the stepsize estimate can change by a constant non-decreasing factor. The authors prove convergence guarantees for $L$-smooth as well as $(L_0, L_1)$-smooth problems, claiming complexity improvements. The paper features strong theoretical results, but it doesn't present any numerical validation of the proposed method's performance.
+
+### Strengths
+The work is undeniably strong theoretically. The authors propose a method that is more adaptive than other accelerated methods, which is an important consideration for its practical performance. It is also clear that deriving the method and its convergence guarantees was no easy task. The algorithmic design can be insightful for future developments of other adaptive methods.
+
+I also think the proposed method can be quite useful for deterministic convex optimization on its own. While convex optimization is a less popular area of applications these days, I still find it a valuable contribution since such problems arise in a lot of applications.
+
+### Weaknesses
+1. The method unfortunately requires the ability to compute functional values, unlike the prior work on GRAAL and AdGD.
+
+2. In terms of complexity, there is no realy improvement upon the work of Li & Lan (2025). As the authors mention, the approach of Li & Lan (2025) is to use a line-search at the first iteration, which introduces only an additive term in the complexity, while guaranteeing that $\eta_0 L \ge 1$, so it doesn't affect the complexity in a multiplicative way. I don't see any limitation of this approach since both works require the use of functional values anyway. That being said, the proposed new method still may benefit a lot from updating the stepsize more adaptively in practice.
+
+3. It's a bit unfortunate there is no numerical insights in this paper.
+
+4. I found the discussion in Section 4.1 to be extremely hard to follow, especially Lemma 7. The four sets of indices are introduced without being properly explained, not to mention the third and the fourth sets use $l(k)$, whose meaning is even less obvious. It's completely unclear why these sets are introduced and what we should expect them to be. Moreover, it would be useful to remind the reader of the definition of $m$ around Lemma 8 as it's not used anywhere prior to that except for Theorem 2. It's also very confusing that the authors redefine $m$ in Theorem 3. To summarize, this section is extremely technical and would benefit from a rewrite that makes it more intuitive.
+
+5. The way the proofs are structured in the appendix makes reading them a tedious and a strongly challenging endeavour. I wish the authors chopped it into pieces with intuitive steps, rather than just giving the bounds all as a single huge inequality. I just couldn't make myself go through all the steps to check them even though I wanted to understand the proof.
+
+## Minor typos
+"$f(x) \colon \mathbb{R}^d \to \mathbb{R}$" should be "$f \colon \mathbb{R}^d \to \mathbb{R}$"
+"Hence, it is rarely used in practice." I don't think this statement is true, many convex problems are still solved with line-search based methods
+"It is well known that AdaGrad has the complexity of GD in eq. (3) for L-smooth functions (Levy et al., 2018)". I think it needs a clarification here that the results of Levy are only for bounded domains. It is also worth mentioning that the update in (5) misses the $G^2$ constant inside the square root, which is important for non-smooth convergence results.
+I think when introducing (6) and (7) it would be educational for the reader if the authors provided values of $\gamma$ and $\nu$ that have theoretical guarantees.
+"Suh & Ma (2025) uses a stepsize" -> "Suh & Ma (2025) use a stepsize"
+Some small issues in the citations: "Jonathan M Borwein" -> "Jonathan M. Borwein", "in banach spaces" -> "in Banach spaces", "barzilai and borwein gradient" -> "Barzilai and Borwein gradient", etc.
+
+### Questions
+1. The authors wrote that $\theta$, $\gamma$, and $\nu$ should satisfy equation (19), but it's not obvious from looking at the equation what possible values we can select from. Could you please provide at least explicit example in the paper?
+2. The complexities in Table 1 for Algorithm 1 and for the method of Tyurin (2025) are different in the power of $L_1 \mathcal{D}$. Is the optimal complexity known for this term? Is the result of Vankv et al. (2024) optimal? Do the authors believe their complexity is worse because it's a limiation of the analysis or of the method itself?
+3. When discussing AdGD for $(L\_0, L\_1)$ functions, the authors wrote "In fact, $\mathcal{D}$ also contains the initial objective function gap $f(x\_0) − f(x^\*)$, and hence, it may have an exponential dependency on the initial distance $\Vert x\_0 − x^\*\Vert$." However, it seems that the proof of Corollary 3 actually also shows an exponential dependency on $\Vert x_0 − x^*\Vert$, which is then removed by assuming $\eta\_0 L\_0 \le \exp(-L\_1 \Vert x\_0 - x^\* \Vert)$. Isn't it an unfair comparison?
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper allows exponential growth of the stepsize for adaptive accelerated gradient method. The results show true adaptivity of the method under the generalized smoothness.
+
+### Strengths
+The paper solves the issue with explicit (no backtracking) adaptive accelerated methods -- they cannot increase the stepsize fast.
+
+Detailed comparison with related works.
+
+### Weaknesses
+Despite experiments would be quite predictable it would be interesting to see a comparison with adproxgd and optimizers with backtracking beyond the standard smoothness. Not a real weakness, for the sake of comprehensiveness, the theoretical contribution is solid enough.
+
+### Questions
+-
+
+### Soundness
+4
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+10
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper develops an accelerated variant of the GRAAL algorithm that achieves near-optimal iteration complexity for convex optimization while maintaining adaptive stepsize capabilities. The main contribution is Algorithm 1 (Accelerated GRAAL), which incorporates Nesterov acceleration while adapting stepsizes to local curvature at a geometric rate. The authors conduct convergence analysis of the proposed algorithm for $L$-smooth and $(L_0, L_1)$-smooth functions. The key technical innovation is an "additional coupling step" that allows adaptive choice of acceleration parameters $\alpha_k$ without requiring predefined sequences or restricting stepsize growth.
+
+### Strengths
+1. The additional coupling step is a novel technique that elegantly enabling acceleration and adaptive step-size growth in one framework.
+
+2. The analysis is layered and rigorous: a general potential-descent framework for convex $C^1$ objectives, followed by rate results for $L$-smooth and $(L_0,L_1)$-smooth settings. The bounds are near-optimal and adapt to unknown curvature, with only logarithmic dependence on the initial stepsize guess in the $L$-smooth case.
+
+3. The paper clearly states its target question, the design obstacles, and how each algorithmic components (extrapolation, coupling, curvature estimation) addresses them.
+
+### Weaknesses
+1. Lack of empirical validation. The paper presents no experiments. Small-scale benchmarks (logistic regression, least-squares, GLMs, robust convex losses) would verify geometric step-size growth in practice, overhead of computing $\Lambda$, and wall-clock speedups versus other algorithms.
+
+2. The theory requires universal constants $(\theta, \gamma, \nu)>0$ satisfying equation (19), but the paper does not provide guidance on how to choose these parameters in practice. This is a significant practical limitation. The paper should provide at least one explicit set of valid parameters and discuss how parameter choices affect the hidden constants in the O(·) notation.
+
+3. Results cover smooth convex minimization only; there is no composite/prox extension, constraint handling, or analysis with stochastic/inexact oracles.
+
+### Questions
+1. How does the algorithm perform empirically compared to AC-FGM, AdaNAG, and non-accelerated GRAAL?
+
+2. Could you provide explicit $(\theta,\gamma,\nu)$ values that satisfy the required inequalities, and a recommended default $\eta_0$?
+
+3. Because the method introduces several iterates ($x_k, \bar{x}_k, \hat{x}_k, \tilde{x}_k$) and requires multiple gradients for curvature estimation, the peak memory can exceed that of standard AGD. Have you considered memory-efficient implementation of the proposed algorithm?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper studies a GRAAL-based adaptive variant of Nesterov’s accelerated gradient method for smooth convex minimization. Unlike other recent adaptive methods, this approach allows the step size to grow linearly, which is particularly useful when the algorithm is initialized with a very small step size. This feature becomes even more important under the more general $(L_0,L_1)$-smoothness condition, where the local curvature may change at an exponential rate.
+
+### Strengths
+- As clearly summarized in Table 1, this paper proposes the first adaptive accelerated method that achieves the optimal rate under convexity and $(L_0,L_1)$-smoothness.
+
+- Even under the standard smoothness assumption, the proposed adaptive accelerated method allows the step size to grow linearly, unlike existing methods, which is particularly beneficial when the initial step size is small.
+
+### Weaknesses
+- Although this is primarily a theoretical paper, including a simple toy experiment would make the contribution more informative. (This is not a requirement for acceptance, but a suggestion to strengthen the paper.)
+
+- I would appreciate it if Section 4.1 provided a higher-level sketch of the main idea.
+
+### Questions
+- (10): The definition of $D_f$ is missing.
+- L181: It seems that Option II can better exploit the properties of the objective function, but I recommend providing a more precise statement.
+- L207: Could the authors clarify how the extrapolation enables adaptive capabilities?
+- L226: The definition of $\Lambda$ is missing.
+- L322: Wouldn't a small $\eta_0$ slow down the empirical performance?
+- L461-462: The initial step size is required to satisfy $\eta_0 \le \frac{1}{L_0\exp(L_1||x_0-x^*||)}$, and the authors suggest choosing a very small value, which effectively makes the method free from hyperparameter tuning. The authors also note that a concurrent work by Tyurin (2025) provides a similar result but requires additional hyperparameter tuning. However, if one apply the same principle (choosing an extremely small or large constant), couldn't Tyurin's method also be regarded as tuning-free? This is what I inferred after reading Section 4 of Tyurin (2025). I would appreciate clarification on this point.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/wkVsKDnl4s.md b/human_reviews/wkVsKDnl4s.md
new file mode 100644
index 0000000000000000000000000000000000000000..8a27dce70487ac64124401eb8abcd32acfcf4ccd
--- /dev/null
+++ b/human_reviews/wkVsKDnl4s.md
@@ -0,0 +1,154 @@
+## Human Reviewer 1
+
+### Summary
+The paper addresses the metagenomics classification problem, where the goal is to assign short DNA fragments (known as reads) to taxonomic categories such as species, family, or class. Instead of relying on computationally expensive sequence alignment techniques, the authors propose a hash-based token mapping framework that aims to achieve an improved trade-off between computational efficiency and classification performance. The approach is evaluated on the CAMI II dataset and demonstrates higher throughput than baselines.
+
+### Strengths
+- The proposed approach shows improved throughput compared to alignment-based baselines.
+- The inclusion of a theoretical analysis is valuable for providing deeper insights into model behavior and guarantees.
+
+### Weaknesses
+- The presentation and organization of the paper are not good. Especially for readers unfamiliar with the metagenomics classification problem, it is difficult to follow the paper.
+- The paper provides a limited novelty. The proposed approach mainly relies on MetaTrinity, with some modifications (e.g., hash-based mapping).
+- Although the authors emphasize that the theoretical analysis is a major contribution of the work, it is discussed in the appendix and presented incompletely.
+- The experiments are limited to the CAMI II dataset. The baseline method performs better in accuracy than the proposed one (though slower).
+- The paper omits and insufficiently discusses key related methods.
+- The appendix is incomplete.
+
+### Questions
+- Several key baselines, including Metalign and MetaTrinity, are missing from Tables 2 and 4. Could the authors explain why they were omitted?
+- The paper does not specify how the proposed approach handles reads that originate from unknown taxa, i.e., organisms absent from the reference database. Could the authors clarify this behavior for assessing the robustness and applicability of the method in realistic scenarios?
+- The description of hyperparameter tuning is vague. Section M.3 mentions a sensitivity analysis, but no corresponding results or experiments are provided. Could the authors elaborate on how hyperparameters were selected and provide supporting experimental evidence?
+- The discussion of related work should be expanded to include key methods such as MetaCache-GPU, MetaBinG2. In addition, the baseline methods, MEGAN, and Metalign, should be cited.
+- In the appendix, several sections (F.1–F.3, M.5, M.7) are empty, and references between Propositions and proofs are mismatched (e.g., Proposition 4 vs. Proposition 20). The proofs of Theorems 9, 22, and 23 are not provided.
+- The paper would benefit from a concise explanation of basic biological terminology such as reads, taxa, and reference databases so that readers without a genomics background can better follow the motivation.
+- The writing quality and style suggest that parts of the manuscript might have been generated by a language model. If this is the case, the authors should thoroughly revise the manuscript for clarity. The motivation and the presentation of the problem should be improved as well.
+
+### Soundness
+2
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper supposedly describes a novel classification framework hat seeks to replace alignment with hash-based token mapping. This is supposed to be supported by theoretical results for why this approach reduces computational complexity without loss of accuracy.
+
+This paper is seemingly the creation of an LLM. Potential indicators of this are:
+
+1. Section 5.4.1 is empty.
+2. The discussion of results in 5.4.2 makes no reference to the included tables.
+3. At multiple places, improvements are described using "percentage points" instead of simply using "%".
+4. QA-Token is reference at multiple points throughout this paper but this reference is unavailable; the corresponding citation refers to a completely different manuscript.
+
+### Strengths
+N/A
+
+### Weaknesses
+N/A
+
+### Questions
+N/A
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes HighClass, a metagenomic read classifier that replaces seed-and-extend alignment with hash-based mapping of variable-length, quality-aware tokens and a sparsified inverted index. Algorithmically, it (i) uses a 32k-token QA-BPE-seq vocabulary to extract variable-length tokens, (ii) scores taxa with a quality-weighted log-likelihood, and (iii) prunes the reference with gradient-based sparsification (32% regions retained). Theoretically, it presents uniform convergence bounds $O(\sqrt{V|Y|/n})$, α-mixing concentration for dependent tokens with an explicit variance-inflation factor, and consistency of the maximum-likelihood classifier under identifiability. Empirically, on CAMI II, it reports 85.1% F1 (within 1.5% of state-of-the-art method) with 4.2× speedup and 68% memory reduction (6.8 GB index), plus ablations attributing +6.8 pp to variable-length tokens and +1.9 pp to quality weighting.
+
+### Strengths
+1. Significance. Demonstrating 4.2× speed with near-SOTA accuracy and 68% memory reduction moves the Pareto frontier and has practical impact for real-time clinical diagnostics and large-scale monitoring scenarios.
+
+### Weaknesses
+1. The paper mentioned that they enabled the applications of HighClass in edge deployment. However, the 6.8GB memory requirement for deployment mentioned in the paper is not ideal for edge devices.
+2. The paper has more than 9 pages for the main text, which is against the policy.
+3. Section 5.4.1 is completely missing.
+4. The paper cited the paper: From noise to signal: Enabling foundation-model pretraining on noisy, real-world corpora via quality-aware tokenization with full author list and the source as ArXiv. However, I cannot find it on ArXiv but also an anonymous submission to ICLR 2026, which is very concerning.
+
+### Questions
+1. What is the empirical curve of accuracy/runtime/memory vs. vocabulary size (e.g., 8k/16k/32k/64k)?
+2. Were sparsification masks trained on the same references used for evaluation?
+3. Does line 307 have a typo?
+4. Why is 5.4.1 missing?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper introduces HighClass, a metagenomic classifier combining variable-length quality-aware tokens, hash-based mapping, and sparsified indexing. It claims to provide both a new theoretical framework for token dependencies and strong empirical efficiency gains.
+
+### Strengths
+N/A
+
+### Weaknesses
+1) The “theory” mostly restates standard learning theory with ad hoc constants. The claimed “first comprehensive theory” is not substantiated.
+
+2) Made-up references: arXiv:2406.08251 actually corresponds to a completely different paper (Light-induced fictitious magnetic fields for quantum storage in cold atomic ensembles at https://arxiv.org/pdf/2406.08251), different from the cited one.
+
+3) Some sections are even empty (5.4.1, F1, F2, F3, M7).
+
+### Questions
+The citation:
+
+*Arvid E. Gollwitzer, Paridhi Latawa, David de Gruijl, Deepak A. Subramanian, and Giovanni Traverso. From noise to signal: Enabling foundation-model pretraining on noisy, real-world corpora via quality-aware tokenization. arXiv preprint arXiv:2406.08251, 2025.*
+
+appears fabricated, as the DOI refers to an unrelated paper: Light-induced fictitious magnetic fields for quantum storage in cold atomic ensembles at https://arxiv.org/pdf/2406.08251. **Could the authors explain how this reference was produced and justify its inclusion?**
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/x6iodYWNty.md b/human_reviews/x6iodYWNty.md
new file mode 100644
index 0000000000000000000000000000000000000000..7994c5b337b98c4be418a34664c4a25c94b33d20
--- /dev/null
+++ b/human_reviews/x6iodYWNty.md
@@ -0,0 +1,180 @@
+## Human Reviewer 1
+
+### Summary
+A number of problems in different domains can be framed as homotopy
+interpolations between an easily solved source problem and a complex target
+problem. Such problems are typically solved with a predictor-corrector
+framework. Here, a solution is found to the initial easy problem. Then, the
+predictor advances the problem following the homotopy interpolation, and the
+corrector modifies the solution to fit the new problem.
+
+Prior work has treated these homotopy problems separately in different domains.
+This paper proposes to unite a number of these problems under a single
+framework. It then proposes a neural predictor-corrector framework, which uses
+reinforcement learning to train a policy that outputs the next level for the
+predictor and the next tolerance for the corrector --- previously, these values
+were determined via heuristics. Experiments show that the final RL agent
+effectively learns to set these values.
+
+### Strengths
+1. This application of reinforcement learning seems quite novel to me. I
+ appreciate that PPO is able to be used "out of the box" to solve the problem.
+2. The problems chosen for the paper are quite diverse, which shows the
+ applicability of the framework. For example, I could see the application to
+ sampling / Langevin dynamics could eventually tie into generative modeling.
+3. The computational requirements for this method are quite low (lines 314-315),
+ making the research more accessible.
+4. The limitation of sensitivity to reward scale is acknowledged in the
+ appendix.
+5. The ablation of the state components helps in showing that all parts of the
+ state are necessary for NPC.
+
+Overall, I found the paper quite easy to read despite not having much
+familiarity with homotopy interpolations myself.
+
+### Weaknesses
+My main concern is that it seems the experiments were only conducted over one
+trial, as I could not find any mention of repetitions, and no error bars are
+reported in the tables. It is advisable to conduct multiple trials of each
+algorithm and use statistical testing to check that differences between
+algorithms are significant.
+
+I have also listed several questions in the section below; these are minor points that I think would be useful to address in the updated paper.
+
+### Questions
+1. I am unclear if the Homotopy Paradigm discussed in Sec. 3.1 is a novel
+ contribution of this work. Is the term "Homotopy Paradigm" already widely
+ used in the literature? If so, could a citation for it be added in Sec. 3.1?
+ I think I am confused because the first sentence of the introduction
+ (line 32) seems to indicate that the Homotopy paradigm is already well-known,
+ while lines 121-122 indicate that it is a perspective introduced in this
+ work. Assuming this perspective is novel, it may be good to list it as a
+ contribution in the introduction. Right now, the first contribution of the
+ introduction (line 82) makes it clear that unifying the approaches under the
+ homotopy paradigm is novel, but it is unclear if the homotopy paradigm itself
+ is novel.
+2. Based on Appendix D, it seems the NPC framework shifts the manual effort from
+ tuning the parameters for the predictor and corrector to tuning the reward
+ scales for the RL training. What do you see as the benefits and tradeoffs of
+ this shift? Might there be cases where it is easier to just use the
+ heuristics? When is it better to try to tune the rewards?
+3. Table 6 shows that removing certain components from the state can increase
+ the number of iterations required more than removing other components, e.g.,
+ removing the corrector's tolerance increases by 64, while removing the
+ homotopy level only increases by 21. Does this say anything about which parts
+ of the state are most essential to NPC?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The homotopy paradigm is a principle to solve optimization problems by transporting solutions to problems from a simple family to a target problem domain. The paper discusses application areas in which this principle is applied: annealing in optimization and sampling. The predictor corrector (PC) method is a family of methods that solve homotopy problems by predicting a new location of a solution and then correcting that prediction. Existing PC approaches typically rely on a an interpolation schedule that must be chosen in advance. While some domains offer natural choices, others do not as the authors claim. Therefore, the authors propose to learn an interpolation using RL, which is implemented by learning the predictor and corrector steps using a neural network. The evaluation of the paper contains tasks from 4 domains and ablation studies that showcase the generalizability of the approach and competitive performance. The ablations provide some insights into the importance of the individual components.
+
+### Strengths
+- The paper provides a nice unifying perspective that was at least new to me.
+- The method seems to improve over baselines on the reported problems. For some of the domains they evaluate on (GNC, root finding) I am not sure how well chosen the baselines are but that is rather on me.
+- The method is pretty simple, and thus seems to be easy to reimplement. I am surprised that almost no hyperparameters must be changed from the stablebaselines defaults.
+- Overall the paper is pretty clear and well written.
+
+### Weaknesses
+### Method
+- The paper presents a very interesting and simple idea: use (reinforcement) learning to improve optimization and sampling methods. While I am not aware of any paper that discusses this under a single umbrella of homotopy problems, I have seen works that use learning to propose sampling steps, eg [1, 2, 3, 4, 5]. Some of these methods are mentioned in the related work section, yet I think it should become more clear that the objective of the paper is a unifying perspective.
+
+### Wording:
+- "Because the predictor-corrector procedure is non-differentiable and early decisions influence the entire trajectory, supervised or self-supervised training is inadequate" I think its totally fair that you use RL, but if you had data for supervised training, I think you could actually train in supervised fashion as your NN will be differentiable, no?
+- I am not sure if you can call the predictor and corrector schedules in Song et al. (2020) "handcrafted heuristics " as you state in your text, but their design choices are theoretically well motivated. Generally, using a linear schedule makes sense for many problems I would say.
+
+### Evaluation
+- The global optimzation problems are only in 2d, which seems pretty low to me, given that other communities like the derivative-free optimization community optimize on those functions in >10d. I would be interested in seeing the results on higher dimensions. But I think this point alone is not enough for rejection in my eyes.
+- I think the results are not the strongest on every task, for instance on the sampling problems, PGS seems to be on par at least. But I think this is a nitpick, since the approach seems to be more motivated to convince in its generality.
+
+### Clarity
+- While the high level idea of the paper is clear to me, some details of the algorithm are not: Why do you predict the corrector actions in line 3 of the algorithm? Is it always that single action you apply in line 7? If you predict both steps at once why have them separate at all? It would make much more sense to me if you first predicted the predictor step and then iteratively multiple different corrector steps based on H.
+
+### Minor
+- You should mention in the main paper that the functions you test on are 2d in Section 5.3.
+
+---
+### Sources
+[1] Richter, Lorenz, and Julius Berner. "Improved sampling via learned diffusions." _arXiv preprint arXiv:2307.01198_ (2023).
+
+[2] Wang, Congye, et al. "Reinforcement learning for adaptive MCMC." _arXiv preprint arXiv:2405.13574_ (2024).
+
+[3] Xi Lin, Zhiyuan Yang, Xiaoyuan Zhang, and Qingfu Zhang. Continuation path learning for homotopy optimization. In International Conference on Machine Learning, pp. 21288–21311. PMLR, 2023.
+
+[4] Ichikawa, Yuma. "Controlling continuous relaxation for combinatorial optimization." _Advances in Neural Information Processing Systems_ 37 (2024): 47189-47216.
+
+[5] Hruby, Petr, et al. "Learning to solve hard minimal problems." _Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition_. 2022.
+
+### Questions
+- How do you weigh the two terms in your reward formulation? A specific equation would be very helpful.
+- For how long did you train your model? I am not familiar with the defaults of stable baselines and the info is not listed in the appendix.
+- How did you choose your kernel for computing the KSD in the evaluation?
+- As you state yourself, there are prior methods that use learning in the context of PC, but which seem to not generalize as well as yours as you point out in line 111. It would be interesting to see a comparison here, to understand better at which cost the generalization of your method comes, if an at all, especially as it is one of the key claimed contributions. Have you done such comparisons?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes a Neural Predictor-Corrector (NPC) framework that leverages reinforcement learning (RL) to address homotopy problems across diverse domains, including robust optimization, global optimization, polynomial root-finding, and sampling. The core idea is to unify these traditionally independent homotopy tasks under a shared predictor-corrector (PC) structure, replacing hand-crafted heuristics for step-size selection and iteration termination with RL-learned adaptive policies. The authors employ an amortized training regime to enable one-time offline training and deployment on unseen instances, and validate NPC through experiments showing improved efficiency and stability compared to classical baselines.
+
+### Strengths
+1. Unified Framework for Diverse Homotopy Tasks: The paper identifies and formalizes the common PC structure underlying homotopy problems in optimization, root-finding, and sampling—an insight that helps consolidate fragmented research in these domains and highlights potential generalizability across tasks.
+2. Empirical Validation Across Domains: The authors conduct comprehensive experiments on four representative homotopy tasks (Graduated Non-Convexity, Gaussian Homotopy, Homotopy Continuation, Annealed Langevin Dynamics) and provide detailed ablation studies (e.g., RL state component analysis) to support the effectiveness of NPC in improving efficiency while preserving solution accuracy.
+3. Amortized Training for Practical Deployment: The amortized training design addresses a key limitation of task-specific learning methods by enabling deployment on unseen instances without per-task fine-tuning, which enhances the practical utility of the framework for real-world applications.
+
+### Weaknesses
+1. Limited Novelty in RL for Optimization/Sampling: The core premise of applying RL to improve optimization or sampling workflows is not new. As noted in the paper’s related work, prior studies (e.g., Li, 2019; Belder et al., 2023; Ye et al., 2025) have already explored RL for adaptive parameter tuning, optimizer design, and schedule prediction in similar problem spaces. The paper does not sufficiently distinguish NPC from these existing RL-driven optimization/sampling frameworks beyond its focus on homotopy-specific PC structures.
+2. Incremental Improvement Over Traditional Methods: NPC largely builds on the well-established PC algorithm for homotopy problems and only replaces heuristic step-size/termination rules with RL policies—this constitutes a relatively minor modification rather than a paradigm shift. The framework does not introduce new theoretical insights into homotopy methods or RL for sequential decision-making; instead, it refines existing components with incremental adjustments, limiting its contribution to methodological advancement.
+3. Dependence on Manual Reward Scaling: A critical practical limitation is the need for manual tuning of reward scales for each problem instance (detailed in Appendix A), which undermines the framework’s claim of being a “general solver.” This manual step not only increases the barrier to deployment but also contrasts with the goal of automating heuristic-driven decisions—an issue that the paper acknowledges but does not meaningfully address beyond proposing future work.
+
+### Questions
+1. Generalization to Non-Homotopy PC Tasks: The paper emphasizes unification across homotopy problems, but many non-homotopy tasks (e.g., iterative convex optimization, SGD with adaptive learning rates) also use PC-like structures. Does NPC’s RL policy generalize to these non-homotopy PC tasks, or is it inherently tied to the homotopy interpolation paradigm? If not, what limits its generalizability?
+2. Comparison to Learning-Based PC Baselines: The paper compares NPC to classical PC methods but only briefly mentions learning-based baselines (e.g., Simulator HC for polynomial root-finding). Could the authors include a more detailed comparison to these learning-based alternatives?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/yEpE0QPpf8.md b/human_reviews/yEpE0QPpf8.md
new file mode 100644
index 0000000000000000000000000000000000000000..bc90ec8b0ed14b2b3aabda8c02ffb29cb0719a3a
--- /dev/null
+++ b/human_reviews/yEpE0QPpf8.md
@@ -0,0 +1,152 @@
+## Human Reviewer 1
+
+### Summary
+This paper introduces grounding-IQA, a new task paradigm that integrates multimodal referring and grounding capabilities with image quality assessment (IQA) to enable fine-grained quality perception. The authors identify that existing MLLM-based IQA methods primarily rely on general contextual descriptions, limiting their ability to perform detailed quality assessment. To address this, grounding-IQA consists of two subtasks: GIQA-DES (grounding-IQA-description), which provides detailed quality descriptions with precise spatial locations such as bounding boxes, and GIQA-VQA (visual question answering), which focuses on quality-related questions for local image regions. The authors contribute GIQA-160K, a dataset constructed through an automated annotation pipeline, and GIQA-Bench, a comprehensive benchmark that evaluates model performance from three perspectives: description quality, VQA accuracy, and grounding precision. Experimental results demonstrate that the proposed task paradigm, dataset, and benchmark effectively facilitate more fine-grained IQA applications.
+
+### Strengths
+1. The paper is well-organized with a clear logical flow, making it easy for readers to understand the motivation, methodology, and contributions. The task paradigm is clearly defined with concrete subtasks (GIQA-DES and GIQA-VQA), facilitating comprehension of the proposed approach.
+
+2. The proposed automated annotation pipeline for constructing GIQA-160K represents a valuable contribution to the field. This approach addresses the scalability challenge of obtaining fine-grained quality annotations with spatial grounding, potentially benefiting future research in grounded IQA tasks.
+
+3. GIQA-Bench provides a well-designed evaluation framework that assesses model performance from three complementary perspectives: description quality, VQA accuracy, and grounding precision. This multi-faceted evaluation approach enables thorough analysis of grounding-IQA capabilities and sets a solid foundation for future work in this area.
+
+### Weaknesses
+1. Questionable Task Scope and Definition: The paper claims to address image quality assessment (IQA), which is a broad concept encompassing various quality dimensions such as saturation, color distortion, noise, compression artifacts, etc. However, the proposed method primarily focuses on motion blur of objects, which requires enhanced referring and grounding capabilities. This narrow focus does not adequately represent the full spectrum of IQA. The work would be more convincing if the problem were explicitly defined as "motion blur assessment" or "local distortion grounding" rather than claiming to solve general fine-grained IQA. The current framing creates a mismatch between the stated goal and actual contribution.
+
+2. Limited Generalization Evidence: Even for motion blur assessment, the method's scope appears limited. Most examples showcase salient objects (e.g., people, animals, vehicles), but it remains unclear whether the approach generalizes to other scenarios such as text blur, background element blur, or subtle quality degradations in non-salient regions. The proposed benchmark does not sufficiently demonstrate the model's generalization capability across diverse object categories and blur scenarios, raising concerns about practical applicability.
+
+3. Lack of Evaluation on Public Benchmarks: A critical experimental gap is the absence of evaluation on established public IQA benchmarks. The authors only test their trained model on the self-proposed GIQA-Bench, which limits the ability to assess the method's performance relative to existing approaches and raises questions about potential dataset-specific overfitting. Evaluation on standard IQA datasets would provide stronger evidence of the method's effectiveness and facilitate fair comparison with prior work.
+
+### Questions
+1. The automated annotation process relies on an existing MLLM (Q-Instruct) to label blur regions, which raises concerns about robustness and error propagation. Can the authors provide evidence demonstrating the reliability of this approach? A potentially more robust alternative would be to synthesize the dataset using pristine images and applying controlled blur degradations at different levels, which would provide natural bounding box annotations and standardized quality labels. How does the current approach compare to such synthetic data generation methods?
+
+2. The paper lacks detailed description of how data contamination between GIQA-160K and GIQA-Bench is prevented. Can the authors explicitly explain the data split strategy and provide evidence (e.g., image similarity checks, source verification) to ensure that the benchmark is completely disjoint from the training data?
+
+3. Given that models like Q-Instruct already possess strong IQA capabilities, wouldn't it be more efficient to enhance their grounding abilities rather than training a new model from scratch? Can the authors justify this design choice and discuss whether a fine-tuning or adapter-based approach on existing IQA-capable MLLMs might achieve comparable or better results with fewer resources?
+
+### Soundness
+2
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes a new IQA paradigm named Grounding-IQA. By combining multimodal referring/grounding with IQA, the framework achieves more fine-grained image quality evaluation. The authors design two tasks, GIQA-DES and GIQA-VQA, and construct an automated annotation pipeline to build a dataset named GIQA-160K. The authors also propose GIQA-Bench for performance evaluation. Both quantitative and qualitative results demonstrate the effectiveness of the proposed Grounding-IQA.
+
+### Strengths
+1. Introducing multimodal grounding into IQA is a reasonable idea that aligns with human assessment logic. It also improves interpretability.
+2. The dataset GIQA-160K and the benchmark GIQA-Bench are well-designed contributions to the community. The automated pipeline is well-structured, which supports further research.
+3. Both quantitative and qualitative results validate the effectiveness of the proposed Grounding-IQA. Comparisons with various MLLMs (general, grounding, IQA) further confirm its advantages.
+4. Additional experiments in the supplementary material, including traditional score-based IQA tasks, user studies, and downstream tasks, provide further evidence of effectiveness.
+5. Ablation studies and visualizations support the validity of the designed pipeline and dataset.
+6. The paper is well written, with extensive figures, tables, and pseudocode that facilitate understanding.
+7. The supplementary material includes detailed implementation information, visualizations, and analytical results, making the content comprehensive.
+
+### Weaknesses
+1. Although implementation details of the pipeline are provided, some settings lack explanation or analysis. For example, why the discrete coordinates are set to 20×20, and why the number of tasks differs in GIQA-Bench?
+2. The work applies Llama-3 for evaluation. Considering the existence of more advanced models such as Llama-4, using them could provide more accurate evaluation results.
+3. The impact of dataset scale on performance is not investigated. It is not certain whether 160K data is necessary.
+
+### Questions
+1. Explain the considerations of specific parameter settings in the pipeline.
+2. Evaluate LLM-Score and Acc (W) using Llama-4 and analyze the results.
+3. Conduct ablation studies on the dataset (GIQA-160K) size.
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+The paper proposes Grounding-IQA, a new paradigm for Image Quality Assessment (IQA) that couples spatial grounding with quality reasoning so models can locate and describe the local regions responsible for perceived degradations. It introduces two tasks: GIQA-DES (quality description with precise locations) and GIQA-VQA (region-aware quality QA where questions/answers include coordinates). To train and evaluate, the authors build GIQA-160K via an automatic pipeline and a 100-image evaluation set GIQA-Bench that scores description quality, VQA accuracy, and localization. Fine-tuning several mainstream MLLMs on GIQA-160K yields consistent gains on GIQA-Bench over generic MLLMs, pure grounding models, and pure IQA models, indicating better fine-grained perceptual quality understanding.
+
+### Strengths
+1. The paper integrates grounding with IQA to localize the regions causing quality defects—making it highly actionable for editing and restoration.
+2. Its end-to-end labeling/training pipeline—detection, IQA filtering, box merging, and coordinate–text fusion—is scalable and reproducible.
+3. A large training corpus and a targeted benchmark with multi-faceted metrics (generation, QA, localization) enable comprehensive evaluation.
+4. Consistent gains across multiple MLLM backbones, with ablations indicating the effectiveness of multi-task training and box-handling strategies.
+
+### Weaknesses
+1. Fix typographical errors in the references.
+2. Some novel IQA methods like (VisualQuality-R1) should be included.
+3. Conduct user studies to evaluate how well the output descriptions align with the corresponding images.
+
+### Questions
+See weakness.
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper introduces Grounding-IQA, a novel Image Quality Assessment (IQA) approach tailored for multimodal large model learning (MLLM). The framework decomposes IQA into two subtasks: (1) GIQA-DES, which performs fine-grained, subject-level quality evaluation via grounding-based descriptions, and (2) GIQA-VQA, which assesses low-level attributes at localized regions using a visual question answering paradigm. The authors further present GIQA-160K, a large-scale dataset constructed with an automated annotation pipeline, and GIQA-Bench, an evaluation benchmark that jointly measures description quality, VQA accuracy, and grounding precision.
+
+### Strengths
+The manuscript is clearly organized, with a strong logical flow and well-designed figures and tables that effectively illustrate the framework and experimental setup. The writing quality is generally high, facilitating easy comprehension of complex ideas. Furthermore, the benchmark construction is comprehensive and well-motivated — evaluating models from multiple dimensions (descriptive, interrogative, and spatial grounding) offers a holistic view of multimodal IQA performance.
+
+### Weaknesses
+While the contribution of a large-scale dataset and benchmark is substantial, the main novelty resides primarily in dataset creation and annotation procedures rather than in methodological innovation. The proposed framework mainly adapts existing MLLM capabilities and fine-tuning strategies to the IQA domain. As such, the work may align more closely with a dataset or benchmark track rather than the ICLR main track, where new learning methodologies or theoretical insights are typically emphasized.
+Additionally, there are a few minor grammatical issues throughout the text—for example, “provide” should be “provides” (line 53), and “new coordinates is” should be “new coordinates are” (line 268).
+
+### Questions
+1.Dataset Construction Details:The paper mentions that GIQA-160K was built through an “automated annotation pipeline.” Could the authors elaborate on how annotation quality and consistency were ensured? Was there any human verification or filtering process?How are noisy or ambiguous quality descriptions handled? Are there examples of failure cases in the annotation process?
+2.Whether human evaluation was included to validate these metrics.Without this information, it’s difficult to judge how faithfully GIQA-Bench reflects perceptual IQA quality.
+The framework decomposes into GIQA-DES and GIQA-VQA. How much does each component individually contribute to overall IQA performance? An ablation study showing the relative importance of each subtask (and their potential synergy) would clarify whether the decomposition is truly beneficial or merely conceptual.
+4.It would be constructive if the authors could discuss potential limitations — for instance, the reliance on large-scale multimodal models that are computationally expensive to train and deploy, or the dataset’s possible bias toward certain types of degradation. A discussion on how future work might reduce these dependencies or enhance scalability would improve the paper’s outlook.
+
+### Soundness
+3
+
+### Presentation
+2
+
+### Contribution
+2
+
+### Rating
+4
+
+### Confidence
+3
\ No newline at end of file
diff --git a/human_reviews/zHdKaF3ZM7.md b/human_reviews/zHdKaF3ZM7.md
new file mode 100644
index 0000000000000000000000000000000000000000..8360f1a7588c7d79241fde88ef3073a47ccbde4a
--- /dev/null
+++ b/human_reviews/zHdKaF3ZM7.md
@@ -0,0 +1,263 @@
+## Human Reviewer 1
+
+### Summary
+The authors seek to incorporate domain priors and in-context reasoning into linear RNNs.
+They show that (i) linear RNNs can act as effective hypernetworks, (ii) these RNNs can engage in in-context learning or physics-informed modeling, and (iii) these hypernetworks exhibit significant improvements over baseline models.
+Models are evaluated on forecasting / reconstruction, classification, and in-context linear regression tasks.
+Baseline models include gated RNNs, linear SSMs (S4), and transformers.
+
+### Strengths
+- Fantastically written, very clear.
+- Related work and appendix are thorough.
+- Experiments show clear improvements of the proposed WARP RNN over baseline models, both in accuracy and compute.
+- Authors are clear about limitations, especially the important limitation that the hidden state transition matrix is dense.
+
+### Weaknesses
+- The introduction does not (although the related work does) mention selective SSMs (e.g., Mamba), which have re-introduced nonlinearities into linear RNNs.
+- CelebA reconstruction seems a bit contrived as a task: the annotated S4 article referenced does indeed reconstruct MNIST and similar image data, but then proceeds to spoken digit data, which the authors did not try reconstructing.
+Moreover, CelebA face reconstructions are substantially corrupted.
+While I do not deny WARP's improvement in image reconstruction over baseline, I am unsure about the salience of image reconstruction as a metric for evaluating RNNs.
+I think there are more relevant tasks to measure long-range dependencies, such as Long-Range Arena benchmarks.
+- There are no experiments on text prediction or classification, which are some of the most relevant tasks for evaluating new RNN architectures - does WARP have limitations or inductive biases that prevent it from expressively processing text?
+If so, the authors should state it, as this is an important limitation, especially to claims of in-context learning.
+If not, then the authors should evaluate their model with text to support the expressivity of WARP.
+- WARP's connections to biology are not sufficiently explained in the main text, although the authors do discuss it further in the appendix.
+
+### Questions
+I suggest the following:
+- Traditional long-range dependency experiments like Long-Range Arena benchmarks.
+- Text prediction and classification experiments to support claims of expressivity.
+- Connections to biology, especially in the main text, should be clarified.
+- As stated by the authors, future work should explore ways to reduce the density of hidden-state transition matrices used in WARP.
+Complex diagonal recurrences may be fruitful in this regard.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+4
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposes WARP, a novel class of recurrent neural networks (RNNs) that perform sequence modeling directly in weight-space, blending linear recurrence with non-linear decoding. Unlike standard RNNs, which maintain a hidden state that is a result of propagating the sequence through the network, the proposed model’s hidden state is instead equal to the parameter vector of a so called auxiliary (“root”) MLP and is updated over time via a linear recurrence. Each update is driven by consecutive input differences, and the auxiliary MLP provides nonlinear decoding using an input that encodes the canonical ordering of the sequence. This formulation enables gradient-free adaptation and in-context learning during inference, as well as the injection of physics priors through explicit parameter constraints.
+Extensive experiments are conducted across time-series analysis, dynamical system reconstruction, and multivariate time-series classification. WARP shows consistent or superior performance to state-of-the-art baselines on most tasks. A physics-informed variant, WARP-Phys, achieves significant improvements on physical dynamics reconstruction tasks.
+
+### Strengths
+1. Novel conceptual framing: The idea of treating the recurrent hidden state of a linear state-space model as the weights of another neural network is both elegant and novel. It bridges ideas from fast weights, meta-learning, hypernetworks and structured state-space models while maintaining linear recurrence efficiency. Additionally, it offers a built-in support for gradient-free adaptation, in-context learning, and physics-informed modeling in a single architecture.
+2. Computational Efficiency: Once the model has learned from the context, the final root network can be extracted and reused to process subsequent queries without reevaluating the entire sequence, yielding significant computational savings compared to other in-context learning models. Furthermore, the proposed architecture leverages a dual training mode that combines linear recurrence with a parallel scan operator – a well-established technique in the State Space Model (SSM) literature – to accelerate state propagation. Together, these design choices lead to notable computational efficiency improvements.
+3. Strong empirical results: Competitive or superior performance on time-series analysis, especially Traffic Flow Forecasting (despite ignoring graph priors) and Image completion, as well as dynamical system reconstruction. The inclusion of a physics-informed variant further demonstrates the framework’s adaptability and potential for interpretability.
+4. Clarity and completeness: The paper is well-written, includes high-quality figures, ablations, detailed appendices, and clear pseudocode.
+
+### Weaknesses
+1. Scalability constraints: The main bottleneck is the large transition matrix which scales quadratically with the number of root-network parameters. Experiments are thus limited to moderate model sizes, raising questions about feasibility for large-scale models.
+2. Limited theoretical grounding: While the empirical evidence is compelling, the theoretical analysis of representational capacity and stability (e.g., under linear recurrence updates) still remains to be established.
+3. Computational cost reporting: Although the recurrence is linear, updating and decoding weight vectors remains costly. Memory and compute scaling with model size are not fully quantified and are only provided in the appendix, but entirely missing from the main body of the paper.
+4. Limited setting for dynamical system reconstruction: While the possibility of making the network physics-informed is compelling, the shown examples illustrate this for relatively simple systems with a small number of parameters. While the proposed method clearly allows for in-context learning, and hence does not need to retrain a network for each new dynamical system (from the same category), the setups are done for what appears to be noiseless input-output data, and a low number of parameters. One could, instead of learning the entire mapping of the system, learn only its phase or exponential mapping for any other sequence model that allows for ICL, in the same way as demonstrated in this work. This alternative formulation would serve as a fairer baseline for comparison.
+5. Novelty relative to prior work: There is conceptual overlap with other concepts briefly outlined in the related work (e.g., fast weight RNNs), though the authors’ framing is distinctive. A more explicit comparison to those baselines would help to better position WARP’s contribution.
+
+### Questions
+1. Have you evaluated WARP’s performance on noisy measurement scenarios for dynamical system reconstruction?
+2. Could you discuss related sequence modeling approaches in weight space and explain why these were not included as baselines in any of the tasks?
+3. For the Energy Prediction experiment: what are the current state-of-the-art results? In general, for all experiments, how were baselines tuned, and how much effort was spent on hyperparameter optimization? Also, performance of S4 is reported only on MNIST, and ConvCNP only on CelebA. Full performance tables in the appendix would improve transparency.
+4. Have you considered benchmarking WARP on long-range dependency benchmarks, such as Long Range Arena (LRA)? This could contextualize WARP’s capabilities relative to other established long-sequence models that were evaluated on these tasks.
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper offers a new weight-space learning technique that iterates weights of a feedforward neural network in a linear state space, enabling in-context learning. The authors evaluate WARP across diverse tasks including image completion, time series forecasting and classification, and dynamical system reconstruction, demonstrating competitive or superior performance compared to standard RNNs, state-space models (S4, Mamba), and Transformers. Notably, a physics-informed variant achieves order-of-magnitude improvements on physical system reconstruction benchmarks.
+
+### Strengths
+The core idea of parametrising RNN hidden states as weights of an auxiliary neural network is conceptually interesting and, to the best of my knowledge, novel. The authors test their method on a diverse set of domains and perform a large range of ablations to show the necessity of design choices. The writing is generally accessible, with good intuitive explanations, and goes far to place itself in the larger test-time adaptation literature.
+
+### Weaknesses
+Claims are sometimes overstated and/or imprecise. For example, phrases like "transformative paradigm for adaptive machine intelligence" (Abstract, Conclusion) and "redefine sequence modeling" (Abstract) are not well-supported. The empirical results show WARP is competitive but not uniformly superior. "Brain-inspired formulation" (Abstract, page 2) refers only to using input differences, with citation to synaptic plasticity [16], but the connection is somewhat superficial - there is a rich literature concerned with modelling realistic synaptic plasticity rules which this approach to weight-space trajectory modelling does not engage with. "Infinite-dimensional RNN hidden states" (page 9, footnote 6) is misleading—the hidden state is finite-dimensional, though it parametrizes a function.
+
+### Questions
+“Rather than relying on direct inputs, we draw inspiration from the human brain and compute signal differences to drive such recurrences.” - from where is the inspiration drawn? Did you try ablating this, i.e. just using x_t as the input to B? Similarily, did you try ablating the random noise applied to observations in AR mode? i.e. p_forcing = 0 (or 1, whatever means noise is never added)
+
+What is the operational difference between gradient-free adaptation and in-context learning? The definitions provided seem to be nested on page 2 (i.e. in-context learning implies gradient-free adaptation).
+
+"This strategic initialisation also imposes a critical constraint wherein the initial hidden state θ_0 must encode semantically rich information applicable to the entire sequence." Could you give some clarity here - how can the weights encode information about a sequence prior to observing it?
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 4
+
+### Summary
+This paper analyzes recurrent neural networks (RNNs) through a weight-space linear recurrence formulation that unifies several modern architectures — including continuous-time linear RNNs, state-space models (SSMs), and residual recurrent networks — under a single linear operator perspective.
+
+The authors derive closed-form expressions for training dynamics and generalization in the overparameterized limit, showing that convergence properties and implicit regularization can be understood via the spectral structure of the recurrent Jacobian. They provide:
+
+A linearized weight-space recurrence model that approximates nonlinear dynamics by a low-rank operator with analytically tractable behavior.
+
+A demonstration that generalization error scales with spectral conditioning, extending kernel-based intuition from linear networks to recurrent architectures.
+
+Empirical validation on synthetic sequence modeling and dynamical-system reconstruction tasks (mass–spring–damper, Lotka–Volterra, PEMS08 traffic), showing alignment between predicted and observed convergence trends.
+
+Overall, the paper contributes to a principled understanding of how weight-space geometry and recurrence interact to shape training efficiency and generalization.
+
+### Strengths
+The paper builds on well-established analyses of linear networks and extends them naturally to recurrent settings using a spectral-decomposition framework (Schur- and SVD-based). Derivations are internally consistent and clearly documented.
+
+The proposed linear recurrence view elegantly bridges RNNs, residual-RNNs, and diagonal SSMs, helping clarify connections between recent model families.
+
+Experiments across several dynamical-system tasks (MSD, LV, traffic flow forecasting) confirm the predicted dependence of training speed and generalization on spectral conditioning and effective recurrence length.
+
+The inclusion of both synthetic physics systems and real-world time-series (PEMS08) demonstrates breadth and internal consistency.
+
+Mathematical exposition is detailed; hyperparameters and architectures are listed (Appendix D.4–D.6). Code release and ablation details are promised.
+
+### Weaknesses
+1. The analytic results rest on linear, Gaussian assumptions; nonlinear recurrence effects and gating dynamics are only discussed qualitatively. As such, predictive power for modern gated RNNs or structured SSMs is limited.
+
+2. The analysis centers on the infinite-width, overparameterized limit; it does not quantify where the asymptotic predictions break down for finite models.
+
+3. The authors reference Saxe et al. (2014) but omit more recent theoretical works on curriculum and transfer in RNNs (e.g., Rajan, Kepple & Engleken) and on gradient-flow analyses in recurrent kernels — literature directly related to their spectral-mode interpretation.
+
+4. Although the experiments match qualitative trends, they serve mainly as demonstrations rather than quantitative tests (e.g., no variance or uncertainty estimates, small sample sizes).
+
+5. Generalization is assessed by mean-squared error only; tasks with stochastic noise or long-term dependency tests (copy, addition, character-level modeling) would strengthen claims about recurrence depth and spectral bias.
+
+### Questions
+1. How sensitive are your analytical predictions to non-normal dynamics (upper-triangular Hₕ) versus the diagonal “normal” case you ultimately focus on?
+
+2. Could your framework accommodate nonlinear activation perturbations (e.g., ReLU linearization) to estimate when linear approximation fails?
+
+3. Have you compared your spectral regularization predictions to empirical spectral shrinkage observed during training (e.g., spectrum compression in Wh)?
+
+4. Could you clarify how your results relate to implicit bias analyses in linear transformers or SSMs (e.g., Merrill & Sabharwal; Orvieto et al.)?
+
+5. Are there regimes where the recurrence’s spectral radius predicts too-rapid forgetting or instability, contradicting observed dynamics?
+
+### Soundness
+3
+
+### Presentation
+4
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 5
+
+### Summary
+The paper proposes **WARP**, a framework that performs *linear recurrence in weight space* rather than in hidden-state space. At each step, the parameters of a small decoder network evolve linearly:
+
+$$\omega_t = A \omega_{t-1} + B(x_t - x_{t-1}), \qquad y_t = \text{MLP}_{\omega_t}(\varepsilon)$$
+
+where \(A, B\) are learned transition matrices and $\varepsilon$ encodes position or context.
+
+Conceptually, this shifts recurrence from feature dynamics to parameter dynamics. It blends (i) the efficiency of linear RNNs/SSMs (e.g., S4, Mamba), (ii) the expressivity of nonlinear decoders, and (iii) in-context or gradient-free adaptation through weight evolution. The model is tested across image completion, time-series forecasting, dynamical-system reconstruction, and classification.
+
+### Strengths
+S1. Original framing. The move to perform recurrence directly in parameter space is novel
+and quite elegant. It reads as a middle ground between hypernetworks and fast-weight
+RNNs, but with the analytical simplicity of a linear transition.
+
+S2. Range of results. The experiments span diverse domains - MNIST/CelebA completion,
+ETT and PEMS forecasting, DSR, and UEA time-series classification. The UEA section
+is particularly strong: comparisons include modern SSMs like S5, Mamba, S6, NRDE,
+and NCDE, with WARP performing competitively across most tasks.
+
+S3. Interpretability and analogy. The weight updates via input differences evoke synaptic-
+plasticity rules, which gives the method a neat biological parallel and some explanatory
+appeal.
+
+S4. Presentation. The paper is clear, visually well-organized, and balances theory with
+intuition. Figures showing progressive reconstruction genuinely help convey how the recurrence behaves.
+
+### Weaknesses
+W1. Benchmark depth. While broad, the benchmark is missing some of the newer SSMs
+that define the current frontier. In particular, LinOSS (Rusch & Rus, 2024)—an oscilla-
+tory, long-sequence SSM—is cited but not compared. Given that LinOSS, FACTS, and
+Griffin all outperform S4 and Mamba on long forecasting tasks, excluding them makes
+the SoTA claim weaker.
+
+W2. Scalability. The transition matrix $A \in \mathbb{R}^{D_\omega \times D_\omega}$ scales quadratically with the size of the decoder, which will quickly become impractical. No structured or low-rank variants are
+explored.
+
+W3. Theory gap. The paper is mostly empirical. There’s no discussion of spectral properties,
+stability, or representational capacity of the linear map in weight space.
+
+W4. Domain imbalance. Some domains (especially physics and image experiments) use
+small or older baselines (ConvCNP, GRU, Transformer). More recent adaptive or physics-
+informed baselines like Neural Context Flows (ICLR 2025) or ZEBRA (2024) would
+strengthen those sections.
+
+### Questions
+• Include direct comparisons to LinOSS, FACTS, and Griffin.
+
+• Explore structured or low-rank A, B for scale.
+
+• Add runtime and memory tables.
+
+• Include a brief stability/spectral analysis.
+
+• Clarify what fundamentally distinguishes this from hypernetworks and fast-weight RNNs.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+8
+
+### Confidence
+4
\ No newline at end of file
diff --git a/human_reviews/zt7IPzsXrT.md b/human_reviews/zt7IPzsXrT.md
new file mode 100644
index 0000000000000000000000000000000000000000..ad7107ea42deac49b46adcb39fbeed3ada93aaab
--- /dev/null
+++ b/human_reviews/zt7IPzsXrT.md
@@ -0,0 +1,163 @@
+## Human Reviewer 1
+
+### Summary
+The paper proposes ScaPre, a training‑free, closed‑form framework to erase many target concepts from text‑to‑image diffusion models while preserving quality on non‑targets. It stabilizes multi‑concept edits via a spectral trace regularizer (second‑order target statistics plus an SVD‑based overlap regulator), improves precision with a mutual‑information–guided "Informax Decoupler", and preserves global structure through Bures‑geometry alignment; the quadratic part reduces to a Sylvester system solved in one shot. On Stable Diffusion v1.4/1.5, ScaPre achieves state‑of‑the‑art large‑scale forgetting, e.g., Imagenette residual accuracy 0.8 (Table 1), Diversi50 3.9 (Table 3), Confuse5 overall 84.3 (Table 4), and unlearns 50 concepts in $\sim$120 s on an A6000 (Fig. 3), while claiming up to x5 more concepts than baselines.
+
+### Strengths
+- Conflict‑aware spectral trace regularizer + SVD overlap control; MI‑guided channel reweighting; Bures‑alignment for geometry‑aware stability.
+
+- Convex quadratic core with unique Sylvester solution; clear derivations and proximal mapping.
+
+- Best residual accuracy/UQ on Imagenette, Diversi50, and Confuse5 with robust visuals.
+
+- 50‑concept unlearning in $\sim$120s; low memory/time vs. baselines (Fig. 3).
+
+### Weaknesses
+- Construction of "target/neutral" inputs, threshold choice, and variance of MI estimates need clarification.
+
+- Heavy use of classifier‑based "unlearn accuracy" and CLIP; limited human/adversarial prompt evaluation.
+
+- Results limited to SD v1.4/1.5; unclear portability to SDXL/DiT architectures.
+
+- Deeper, main‑text ablations of S vs. R vs. Informax vs. geometry step and sensitivity of UQ's normalization would strengthen claims.
+
+### Questions
+- How are "target" and especially "neutral" inputs instantiated for MI estimation without extra data? What sample size/thresholding is used, and how stable are channel scores across layers?
+
+- Which cross‑attention layers/branches (K vs. V) are edited, and how does performance vary layerwise?
+
+- Can you show results on SDXL/DiT to illustrate architectural generality or required modifications to S and R?
+
+- Do you test robustness to synonyms/negation/compositional prompts or other circumventions (e.g., multilingual)? A breakdown would substantiate "precise" forgetting.
+
+### Soundness
+4
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 2
+
+### Summary
+The paper proposes ScaPre, a closed-form framework for scalable and precise concept unlearning in text-to-image diffusion models.
+It addresses three challenges in large-scale unlearning: conflicting weight updates, imprecise forgetting causing collateral damage, and inefficiency from auxiliary modules.
+
+### Strengths
+1. The empirical validation is good, for example, ScaPre achieves the lowest unlearning accuracy on Imagenette while maintaining high CLIPcoco, outperforming other baselines.
+
+2. The algorithm is innovative and lightweight. The closed-form solution avoids iterative fine-tuning, and geometry alignment via Bures distance preserves global covariance structure better than L2 regularization. Also, the Informax Decoupler is reasonable.
+
+3. The benchmark construction. ImageNet-Confuse5 explicitly tests disentanglement of visually similar concepts (e.g., dog breeds), a realistic and challenging setting absent in prior work.
+
+### Weaknesses
+1. Some notation is ambiguous. For example, The symbol W is used for both the updated matrix and intermediate solution W⋆ without distinction in Sec. 4.3 (see Eq. (8)–(10)). In Appendix B.1, Eq. (11) redefines the objective with A = λI + S+R and B = diag(α), but these symbols are not introduced in the main text, breaking continuity.
+
+2. Random seeds, data splits for ImageNet-Diversi50/ImageNet-Confuse5, and prompt selection criteria are omitted (see Sec. 5.1), hindering replication.
+
+3. Fig. 3 reports GPU-hours and memory but omits per-concept scaling trends (e.g., time vs. number of concepts), critical for “scalable” claims (see Sec. 5.5).
+
+### Questions
+Please introduce A and B in the main text when first used in Eq. (8), aligning with Appendix B.1 notation.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+2
+
+### Rating
+6
+
+### Confidence
+3
+
+---
+
+## Human Reviewer 3
+
+### Summary
+To address the challenges of conflicting weight updates, collateral damage to non-target concepts, and reliance on extra data in large-scale concept unlearning for text-to-image diffusion models, this paper proposes ScaPre (Scalable-Precise Concept Unlearning), a unified lightweight framework aiming for scalable and precise unlearning.
+ScaPre integrates a conflict-aware stable design (spectral trace regularizer + geometry alignment) and an Informax Decoupler, achieving an efficient closed-form solution without extra data/sub-models; experiments show it can unlearn up to 5× more concepts than the best baseline while maintaining high generation quality.
+
+### Strengths
+The paper innovatively combines a conflict-aware stable design and an Informax Decoupler, which effectively solves the core problems of instability in large-scale unlearning and imprecise separation of target/non-target concepts, making up for the shortcomings of existing methods in large-scale scenarios.
+
+ScaPre adopts a closed-form solution, ensuring high efficiency (unlearning 50 concepts in 120 seconds) and reproducibility without extra data or auxiliary modules; meanwhile, its experiments cover objects, styles, and explicit content benchmarks, with comprehensive and convincing results.
+
+### Weaknesses
+1. Experimental benchmarks are mostly ImageNet-derived datasets (e.g., Imagenette, ImageNet-Diversi50), lacking evaluations on more complex and diverse real-world scenarios (e.g., dynamic concepts, cross-modal associated concepts), making it hard to verify the method’s practical generalization.
+
+2. It is suggested to explore ScaPre’s adaptability and performance changes on larger diffusion models (e.g., Stable Diffusion XL).
+
+3. It is suggested that the authors enhance and enrich the elaboration of the overview figure in this paper, as the current description of this figure is too simplistic, omits many details, and makes it difficult for readers to understand.
+
+4. In the proposed Imagenette benchmark, it is not explicitly specified what prompts are used for evaluation and whether these prompts are merely category names; thus, it is suggested that the authors use more complex prompts to evaluate the impact of prompts on the experimental results.
+
+### Questions
+See weakness.
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper addresses a challenge of large-scale concept unlearning in text-to-image diffusion models. While existing approaches can remove individual concepts, they struggle when scaling to multiple concepts simultaneously, facing issues with conflicting weight updates, imprecise unlearning boundaries, and computational scalability bottlenecks.
+
+### Strengths
+1. The paper is well-structured and easy to follow
+2. While the majority of other algorithms fine-tune the the entire model weights
+3. Addresses fundamental challenges through theoretically grounded components
+4. Comparison with other methods on a large-scale multi-concept unlearning (up to 50 concepts)
+5. Extensive appendix with math proofs and detailed results
+
+### Weaknesses
+1. No comparison with parameter efficient Unlearning methods (e.g., SEMU https://arxiv.org/abs/2502.07587)
+2. It would be beneficial to have the data from figure 3 in a from of a table in the appendix
+3. Based on the theoretical foundation the method should also work on other SOTA models (e.g., SDXL, Stable Diffusion 3.5, FLUX.1-dev, Qwen-Image); however, no experimental confirmation is presented in the paper
+
+### Questions
+see Weaknesses section
+
+### Soundness
+3
+
+### Presentation
+3
+
+### Contribution
+3
+
+### Rating
+4
+
+### Confidence
+2
\ No newline at end of file
diff --git a/human_reviews/zwfpyw345l.md b/human_reviews/zwfpyw345l.md
new file mode 100644
index 0000000000000000000000000000000000000000..46cee44993b37efba949a307a8dcdfc9244a517e
--- /dev/null
+++ b/human_reviews/zwfpyw345l.md
@@ -0,0 +1,168 @@
+## Human Reviewer 1
+
+### Summary
+This paper proposes a hierarchical code embedding method with multi-level attention for RL state representation. The model integrates token-level, function-level, and module-level attention mechanisms, combining both sequential Transformer and Graph attention networks (GAT) approaches to capture code semantics at multiple granularities. The authors claim improvements over baseline methods in code-related RL tasks such as code completion, program repair, and algorithmic problem solving.
+
+### Strengths
+How to extract feature embeddings from code to enhance the semantic understanding of LLMs has always been a critical research challenge (though in recent years, this issue has been discussed less frequently due to large-scale LLMs pre-training).
+
+### Weaknesses
+The most significant weakness of this submission is its current state of incompletion, which falls severely below the expected standard for a conference publication. The manuscript reads as a preliminary draft, not a finished paper. This is evidenced by:
+
+1. Numerous grammatical errors, incomplete sentences (e.g., Line 021 in the abstract), and missing punctuation (e.g., sentences lacking periods, Line 027: "shallow embeddings [and] fail to"; Line 369: "to be necessary for Where tracking the propagation paths of bugs").
+
+2. The presence of unresolved placeholder text (e.g., Line 283: "CodeBLEU score (?)").
+
+3. Disjointed writing and poor organization, where single, unexplained phrases are presented as standalone points, severely disrupting the narrative flow.
+
+The current presentation does not meet the basic level of professionalism required for a peer-reviewed venue like ICLR and demonstrates a lack of respect for the submission process and the reviewing community.
+
+### Questions
+1. What is the relationship between RL and attention? These seem to be two distinct issues. Why are these tasks considered RL-related tasks?
+
+2. The proposed method in the paper is a combination of multiple existing works. What are its innovations? What contributions does it offer compared to other methods?
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+4
+
+---
+
+## Human Reviewer 2
+
+### Summary
+This paper proposed CodeTransformer-GAT, for learning state representations when reinforcement learning for code-related tasks.
+Authors proposed to leverage hierarchical (token-level, function-level, module-level) information when learning representations of states.
+
+Authors show that CodeTransformer-GAT outperforms baseline methods that do not consider hierarchical code information in tasks including code completion, program repair, and algorithmic problem solving.
+
+Ablations are provided to show the importance of the three types of hierarchical information.
+
+### Strengths
+Integrating hierarchical information for learning code representations is a sound idea and has been widely tested. It is interesting to see
+that this type of information also helps learning state representations in RL.
+
+### Weaknesses
+- The paper is difficult to follow and contains many typos. The presentation needs to be improved significantly.
+
+- The idea seems incremental. As the authors also pointed out in the paper (line 88), hierarchical information has been shown effective for code summarization tasks; this work shows it also works for code-related tasks trained with RL.
+
+- Key information of the experiments is missing. For example, it is not clear why authors opt to leverage model architectures described in sec. 5.3. As a result, the generalization ability of these experimental results remain unknown to me.
+
+Overall, the current status of this paper is pre-mature, and it needs to be improved significantly.
+
+### Questions
+Questions:
+- Line 163: could you provide more details about these relationship types? Do you have a full list of them?
+- Line 237-238: could you provide more details about how did you implement these tasks as MDP?
+- Line 374: the t-SNE visualization is not included in the paper.
+
+Typos and presentation:
+- line27: missing citation
+- line31: please explain "neural investigations"?
+- line33: "Pepys" -- is this a typo?
+- line 67-69: please use proper item numerations.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 3
+
+### Summary
+This paper proposes a novel state representation model for reinforcement learning (RL) in code-related tasks. The central contribution is a hierarchical attention model, "CodeTransformer-GAT" , designed to encode the semantics of code by operating on multiple levels of abstraction simultaneously.
+
+A key feature of this model is its integration of both sequential attention and graph-based attention, utilizing not only the AST but also a Code Dependency Graph (CDG) to capture richer semantic and structural relationships. Unlike prior works that often learn representations in isolation , the proposed method optimizes these hierarchical embeddings end-to-end for the RL policy learning objective. The authors evaluate their model on three tasks (code completion, program repair, and algorithmic problem solving) and demonstrate superior performance compared to a range of baselines, including standard transformers, Tree-LSTMs, and CodeBERT.
+
+### Strengths
+- The paper proposes a sophisticated and well-motivated architecture. It logically combines the strengths of transformers for sequential token-level data with the structural reasoning capabilities of GATs for hierarchical (AST) and semantic (CDG) relationships in code.
+
+- A key strength is the end-to-end training of the state representation directly on the RL objective. This allows the model to learn representations that are most predictive of reward for a given task , which the results show is more effective than using general-purpose pre-trained embeddings like CodeBERT.
+
+### Weaknesses
+- The main weakness is the presentation. It seems that this is an incomplete submission for ICLR, as there are lots of format issues in the paper.
+
+- The paper's primary weakness is its poor writing quality. It is filled with grammatical errors and awkward phrasing that hinder readability and make the paper feel rushed and unprofessional. This requires significant revision.
+
+- The proposed model is significantly more complex than the baselines, integrating a Transformer and multiple GATs over two different graph structures.
+
+### Questions
+It is an incomplete submission but with a nice idea. Hope to see the revised version.
+
+### Soundness
+2
+
+### Presentation
+1
+
+### Contribution
+2
+
+### Rating
+2
+
+### Confidence
+5
+
+---
+
+## Human Reviewer 4
+
+### Summary
+The paper proposes a “Hierarchical Code Embedding” model that integrates multi-level attention mechanisms—token-level, function-level, and module-level—to produce code representations for reinforcement learning (RL) agents. The model combines transformer-based sequential attention and graph attention (GAT) layers to encode both syntactic (AST) and semantic (CDG) relations in source code. Experiments are performed on code-related RL tasks such as code completion, program repair, and algorithmic problem solving, showing moderate improvements over several baselines.
+
+### Strengths
+The paper introduces an interesting hierarchical attention framework that connects multi-level code understanding with reinforcement learning. Its main strength lies in the originality of this integration — combining token-, function-, and module-level structures in one end-to-end pipeline. The idea is conceptually novel and, if properly developed, could significantly advance code representation learning for intelligent agents. However, the execution and presentation need substantial refinement before its technical quality and significance can be fully appreciated.
+
+### Weaknesses
+1.The abstract is unfinished and fails to summarize key contributions, results, or insights. For example, it ends abruptly after “while maintaining structural relationships” —there is no closing sentence summarizing results or significance. The abstract must be rewritten entirely — include motivation, method, results, and conclusions in a structured and complete paragraph. Its current state suggests a lack of care and editorial discipline, which is inappropriate for an ICLR submission.
+
+2. Figures are poorly prepared and unreadable. In multiple places (e.g., Figure 1 and Figure 2), text overlaps with diagram components, and labels are unreadable due to scaling or compression.
+
+3. Attitude and academic rigor problems. This submission shows carelessness and overconfidence inconsistent with top-tier academic standards.
+
+4. Lack of theoretical clarity. No formal definition of “hierarchical code embedding” is given beyond layering multiple attention mechanisms.The manuscript repeatedly states that this approach “captures multi-granularity semantic structure,” but does not mathematically or empirically justify what hierarchical structure is being preserved or how attention is coordinated across levels.
+
+### Questions
+Although the paper claims to “integrate RL objectives end-to-end,” the RL part is limited to standard PPO updates, with no specific adaptation to hierarchical embeddings. Thus, the “reinforcement learning” element appears additive rather than integrative.
+
+Numerous typographical errors: inconsistent capitalization (“CodeTransformer-GAT” vs “code transformer-GAT”), repeated words (“all all the tasks”), and missing articles (“We propose novel state representation and reinforcement learning system of encoding…”). Equation references are unnumbered or misplaced. Section headings occasionally mismatch numbering (e.g., “9 Need to discuss several limitations”).
+
+### Soundness
+1
+
+### Presentation
+1
+
+### Contribution
+1
+
+### Rating
+0
+
+### Confidence
+5
\ No newline at end of file
diff --git a/papers/0nvQ5kHXf4.txt b/papers/0nvQ5kHXf4.txt
new file mode 100644
index 0000000000000000000000000000000000000000..518eb0a665df59ac9aaa87cb6c325a842f8cd535
--- /dev/null
+++ b/papers/0nvQ5kHXf4.txt
@@ -0,0 +1,289 @@
+
+
+{0}------------------------------------------------
+
+# EFFICIENT RESOURCE-CONSTRAINED TRAINING OF TRANSFORMERS VIA SUBSPACE OPTIMIZATION
+
+Le-Trung Nguyen Enzo Tartaglione Van-Tam Nguyen
+ LTCI, Télécom Paris, Institut Polytechnique de Paris, France
+ {name.surname}@telecom-paris.fr
+
+## ABSTRACT
+
+As AI increasingly shapes daily life, energy consumption and data privacy have become pressing concerns. On-device learning trains models directly on edge devices, cutting energy consumption and safeguarding data privacy. However, the expanding scale of modern neural networks creates a major obstacle for on-device training. Although prior work has concentrated on compact convolutional architectures, we instead apply subspace-based training to transformer models. Motivated by the idea that a model’s essential information lies in a fixed subspace, we introduce Weight-Activation Subspace Iteration (WASI), a method that mitigates the memory bottleneck of backpropagation and boosts inference efficiency in transformer models by restricting training to this subspace. Our results demonstrate that WASI maintains accuracy comparable to vanilla training while reducing memory usage by up to $62\times$ and computational cost (FLOPs) by up to $2\times$ . On a Raspberry Pi 5, WASI achieves roughly $1.4\times$ faster training and inference than vanilla training. The code is available at .
+
+## 1 INTRODUCTION
+
+On-device learning has recently emerged as a promising research direction, enabling deep learning models to be fine-tuned directly on resource-constrained edge devices. This approach addresses critical issues such as privacy and energy consumption, improves scalability, and places control of AI capabilities directly “in user’s hands” (Dhar et al., 2021). Prior work on on-device learning has largely focused on vision tasks using convolutional neural network models, primarily because of their compact architectures (Lin et al., 2022; Nguyen et al., 2024; Yang et al., 2023b; Quelennec et al., 2024; Bragagnolo et al., 2022; Nguyen et al., 2025).
+
+In many real-world applications, however, transformer-based models have become the de facto choice due to their unique architectural mechanisms (Vaswani et al., 2017). Specifically, these models employ efficient forward propagation through the composition of linear layers, process large-scale data in parallel, and alleviate the vanishing gradient problem thanks to self-attention – key advantages that make them well-suited for handling long-range dependencies, whether in extended text sequences or high-resolution images. Notable examples of such models include GPT (Brown et al., 2020), Gemini (Team et al., 2023), LLaMA (Touvron et al., 2023), and DeepSeek (Liu et al., 2024a). Nevertheless, these mechanisms make training and deployment of transformer models resource-intensive. This is even worse when considering the on-device learning context, where models need to be trained on separate edge devices and are often resource-constrained.
+
+
+
+Figure 1: Overview of WASI in a single training iteration. The diagram illustrates the flow of data and gradients between the 'Original space' and the 'Subspace'. In the 'Subspace', forward propagation (green arrows) moves from layer l-1 to l to l+1. Backward propagation (red arrows) moves from l+1 back to l-1. Low-rank activation (dashed purple arrows) is stored in 'Memory' and passed between layers. In the 'Original space', gradients are processed through partial derivatives (e.g., \frac{\partial \mathcal{L}}{\partial A\_{l-1}}, \frac{\partial \mathcal{L}}{\partial W\_l}) and then mapped back to the subspace. A legend at the bottom defines the arrow types: solid green for Forward, solid red for Backward, and dashed purple for Low-rank activation.
+
+Figure 1: Overview of WASI in a single training iteration.
+
+{1}------------------------------------------------
+
+A significant fraction of training costs arises from backpropagation, especially the memory and computations needed for storing tensors in model layers (Lin et al., 2022). Various research has emerged to address the inefficiencies of backpropagation and enable learning directly on devices. For instance, Lin et al. (2022) demonstrated the feasibility of fine-tuning a predefined subnetwork under a 256KB memory constraint device while still maintaining competitive performance. Quélenec et al. (2024) took this further by dynamically adapting the subnetwork during training rather than relying on a static one, leading to better accuracy within tight memory budgets. Beyond the scope of on-device learning, many methods aim to reduce training overhead through parameter-efficient approaches, such as LoRA (Hu et al., 2022) and its variants (Xu et al., 2023; Zhang et al., 2023; Hayou et al., 2024; Liu et al., 2024b). While these techniques successfully limit the number of parameters updated at training time, they often overlook the cost of storing intermediate calculations (activation maps). Nguyen et al. (2024) address this by compressing activation maps under a controlled information-loss constraint, but lack robust memory budget control and incur considerable compression overhead.
+
+None of these methods enhances the neural architecture itself, and inference proceeds as usual, resulting in high deployment costs on edge devices. This issue has been further addressed by ASVD (Yuan et al., 2023) and FWSVD (Hsu et al., 2022), which employ truncated Singular Value Decomposition (SVD) to decompose the model architecture, but lack a theoretical basis for choosing which singular values to truncate. Subsequently, SVD-LLM (Wang et al., 2024) was developed to overcome this limitation and outperforms the aforementioned approaches. However, these methods are specifically designed for large language models (LLMs) and are not readily applicable to all vision transformer-based models (see Appendix. A.4). Another similar effort, ESPACE (Sakr & Khailany, 2024), requires access to a downstream dataset, which is not feasible in on-device learning scenarios.
+
+Inspired by prior studies on the stability of parameter subspaces during fine-tuning (Radiya-Dixit & Wang, 2020; Li & Zhang, 2021), we present WASI (Fig. 1), the first method for efficient *model-activation-decomposition-aware training*. WASI enables transformer models to be fine-tuned and executed entirely in a low-rank representation, substantially reducing hardware costs and making vision transformer tasks feasible on edge devices. We assess its effectiveness on vision transformer models, including the Swin Transformer (SwinT) (Liu et al., 2021), the Vision Transformer (ViT) (Dosovitskiy et al., 2020), and even TinyLlama (Zhang et al., 2024).
+
+Our main contributions are summarized as follows.
+
+- Based on the previous studies, we formulate that the essential information of a model parameters resides in a stable subspace throughout fine-tuning (Sec. 3.3), which is then verified in Sec. 4.2.
+- Leveraging this hypothesis, we propose Weight-Activation Subspace Iteration (WASI) in Sec. 3.3 to effectively compress the model architecture under a controlled information-loss constraint.
+- We showcase the effectiveness of our approach through extensive experiments on multiple tasks (Sec. 4.3 and Sec. 4.4).
+
+## 2 RELATED WORKS
+
+In this section, we review low-rank decomposition techniques as applied to two key components of deep learning models: model weights and activation maps. Other research directions such as compact model design, quantization, sparsification, and knowledge distillation also exist, but they fall outside the scope of this work—*low-rank decomposition* (Cheng et al., 2017; Deng et al., 2020). Therefore they are not discussed here (see Appendix A.5 for details).
+
+**Low-rank Decomposition for Model Weights.** Low-rank approximation methods for model weights have been extensively studied and can generally be categorized into two main approaches: *Low-rank Adapters* and *Low-rank Models*. LoRA (Hu et al., 2022) is the most prominent example of the first category, which introduces an additional low-rank adapter while freezing the original model architecture. This strategy can reduce the number of trainable parameters by up to four orders of magnitude, but comes with two notable drawbacks. During training, memory usage grows because both the frozen weights and the new
+
+{2}------------------------------------------------
+
+adapter must co-exist in memory. At inference time, the adapter is merged back into the model, resulting in inference performance that is identical to the original model, and thus losing the computational advantages of low-rank decomposition.
+
+Low-rank Models are an alternative line of research that factorizes the weight matrices themselves and trains only the low-rank components, enabling inference to run directly on the compressed representation. Methods such as ASVD (Yuan et al., 2023) and FWSVD (Hsu et al., 2022) achieve this by applying truncated SVD to each layer. These approaches, however, lack a theoretical link between the truncation loss and model performance loss, which is latter addressed by SVD-LLM (Wang et al., 2024). It is important to note that, except for SVD-LLM, all aforementioned methods are specifically tailored for LLMs, and even SVD-LLM cannot be directly applied to all vision transformer-based models with activation maps of four or more dimensions (see Appendix A.4).
+
+**Low-rank Decomposition for Activation Maps.** In addition to model weights, activation maps are a major contributor to memory consumption during training. Gradient Filter (Yang et al., 2023b) is a pioneering work that addresses this issue in on-device learning by generating approximated versions of activation maps through pooling operations with a predefined patch size, aiming to reduce memory usage and FLOPs during fine-tuning. However, this method is limited to convolutional models, and also has the drawback of the accumulated errors as fine-tuning progresses deeper into the model (Nguyen et al., 2024). To overcome this drawback, Nguyen et al. (2024) introduced Activation Map Compression (AMC), which applies High-Order Singular Value Decomposition (HOSVD) to compress activation maps while controlling the information loss via a threshold parameter $\varepsilon$ . While AMC achieves impressive memory savings up to $120\times$ , it incurs significant computational overhead due to the need for full HOSVD at every iteration. Additionally, the varying ranks required to meet the error threshold lead to fluctuating memory usage, which complicates deployment on devices with fixed memory budgets.
+
+Activation Subspace Iteration (ASI) (Nguyen et al., 2025) addresses both of these issues. Instead of controlling the reconstruction error, ASI fixes the activation ranks using a perplexity-based heuristic. This approach stabilizes memory usage throughout fine-tuning and allows for replacing the expensive HOSVD with subspace iteration. As a result, ASI preserves the high compression ratio of AMC while reducing computational cost by up to $252.65\times$ . On a Raspberry Pi 5, fine-tuning with ASI is $1.56\times$ faster than vanilla training when being tested on a highly compact convolutional model. Beyond this scope, LBP-WHT (Yang et al., 2023b) has also been explored. However, it focuses solely on reducing computational cost during training by applying the Walsh-Hadamard Transformation to tensors in gradient computations, and does not address memory bottlenecks.
+
+Our proposed WASI overcomes the limitations posed by prior works. Hypothesizing the stability of the essential subspace of model weights, we introduce a novel method that simultaneously compresses the model architecture and activation maps while carefully controlling information loss throughout the fine-tuning process. This capability makes it feasible to fine-tune transformer-based models in on-device learning scenarios.
+
+## 3 METHOD
+
+In this section, we first identify the computational bottlenecks of training and inference (Sec. 3.1). Next, we review how activation maps can be efficiently compressed (Sec. 3.2). We then introduce a compression-aware-training strategy for both model weights and activation maps that controls information loss (Sec. 3.3). Finally, we analyze the computational complexity of our method and discuss its practical advantages (Sec. 3.4).
+
+### 3.1 BOTTLENECKS IN TRAINING AND INFERENCE
+
+Consider a deep transformer-based model, where $i$ denotes the index of a linear layer. This layer is represented by a weight matrix $\mathcal{W}_i \in \mathbb{R}^{O_i \times I_i}$ , which takes as input a tensor $\mathcal{A}_i \in \mathbb{R}^{B \times N_i \times I_i}$ and produces an output tensor $\mathcal{A}_{i+1} \in \mathbb{R}^{B \times N_i \times O_i}$ . Here, $B$ is the batch size, $N_i$ is the sequence length (or number of tokens), $I_i$ is the input feature dimension, and $O_i$ is the output feature dimension. We denote the dimensionality of the input as $\mathcal{D}_i = \{B, N_i, I_i\}$ .
+
+During the forward pass (similarly in inference), the output of this layer is computed as:
+
+$$\mathcal{A}_{i+1} = \mathcal{A}_i \mathcal{W}_i^\top, \quad (1)$$
+
+{3}------------------------------------------------
+
+#### **Algorithm 1** Weight Subspace Iteration - WSI at iteration $t$
+
+-
+- ```
+
+1: Input:
+ Weight $\mathcal{W}_{i(t)}$ at iteration $t$ ,
+ Explained variance threshold $\varepsilon \in [0, 1]$ .
+2: Function:
+3: if $t = 0$ then
+4: $L_{i(t)}, R_{i(t)} = \text{SVD}(\mathcal{W}_{i(t)}, \varepsilon)$ (see Eq. 5, Eq. 6, and Eq. 7)
+5: else
+6: $R_{i(t)}^T = \mathcal{W}_{i(t)}^T \cdot L_{i(t-1)}$
+7: $L_{i(t)} = \text{Orthogonalize}(\mathcal{W}_{i(t)} \cdot R_{i(t)}^T)$ (Using Gram-Schmidt)
+8: endif
+9: return $L_{i(t)}, R_{i(t)}$
+
+```
+-
+
+where $\top$ denotes the matrix transpose. Eq. 1 presents a batch matrix multiplication applied over the last two dimensions of $\mathcal{A}_i$ ; that is, for each sample in the batch and each token, a matrix multiplication is performed between a $1 \times I_i$ vector and the transposed weight matrix of size $I_i \times O_i$ .
+
+Similarly, in the backward pass the chain rule of backpropagation is computed as follows:
+
+$$\frac{\partial \mathcal{L}}{\partial \mathcal{W}_i} = \frac{\partial \mathcal{L}}{\partial \mathcal{A}_{i+1}}^\top \cdot \frac{\partial \mathcal{A}_{i+1}}{\partial \mathcal{W}_i} = \frac{\partial \mathcal{L}}{\partial \mathcal{A}_{i+1}}^\top \cdot \mathcal{A}_i, \quad (2)$$
+
+$$\frac{\partial \mathcal{L}}{\partial \mathcal{A}_i} = \frac{\partial \mathcal{L}}{\partial \mathcal{A}_{i+1}} \cdot \frac{\partial \mathcal{A}_{i+1}}{\partial \mathcal{A}_i} = \frac{\partial \mathcal{L}}{\partial \mathcal{A}_{i+1}} \cdot \mathcal{W}_i, \quad (3)$$
+
+where $\mathcal{L}$ is the loss computed at the output of the model. Apparently, to compute $\frac{\partial \mathcal{L}}{\partial \mathcal{W}_i}$ and $\frac{\partial \mathcal{L}}{\partial \mathcal{A}_i}$ during the backward pass, $\mathcal{A}_i$ and $\mathcal{W}_i$ must be stored during the forward pass. The large size of these tensors is the primary cause of memory bottlenecks during backpropagation (Lin et al., 2022). Additionally, it also contributes to high inference costs, as multiplying between large $\mathcal{W}_i$ and $\mathcal{A}_i$ requires significant computational resources.
+
+### 3.2 ACTIVATION SUBSPACE ITERATION
+
+Here, we recap how activation maps can be decomposed by subspace iteration. Given an activation memory budget $\mathcal{B}$ , ASI performs brute-force optimization before fine-tuning to find an optimal rank vector $\mathbf{r}_i \in \mathbb{N}^3$ for each layer such that the resulting memory does not exceed $\mathcal{B}$ . Then, for each mode $m \in \{1, 2, 3\}$ , the activation map $\mathcal{A}_i$ is unfolded into a matrix $A_{i,m} \in \mathbb{R}^{a_{i,m} \times b_{i,m}}$ , where $(a_{i,m}, b_{i,m}) = (D_{i,m}, \prod_{j \neq m} D_{i,j})$ .
+
+Vogels et al. (2019) showed that warm-started subspace iteration matches SVD performance on stable tensors at much lower cost. Exploiting the stability of activation maps during fine-tuning, ASI applies this technique to each $A_{i,m}$ . The resulting approximation takes the form of a Tucker decomposition (Tucker, 1966):
+
+$$\mathcal{A}_i \approx \tilde{\mathcal{S}}_i \times_1 \tilde{U}_i^{(1)} \times_2 \tilde{U}_i^{(2)} \times_3 \tilde{U}_i^{(3)}, \quad (4)$$
+
+where $\tilde{\mathcal{S}}_i \in \mathbb{R}^{\mathbf{r}_{i,1} \times \mathbf{r}_{i,2} \times \mathbf{r}_{i,3}}$ is the core tensor, representing a compressed version of $\mathcal{A}_i$ , and each factor matrix $\tilde{U}_i^{(m)} \in \mathbb{R}^{a_{i,m} \times \mathbf{r}_{i,m}}$ contains the principal components along the $m^{\text{th}}$ mode.
+
+Consequently, instead of storing all $\Theta_{\text{space}} \left( \prod_{m=1}^3 D_{i,m} \right)$ elements of $\mathcal{A}_i$ , ASI reduces the storage requirement to $\Theta_{\text{space}} \left( \prod_{m=1}^3 \mathbf{r}_{i,m} + \sum_{m=1}^3 D_{i,m} \mathbf{r}_{i,m} \right)$ .
+
+Details of the algorithm can be found in Appendix A.2.
+
+### 3.3 WEIGHT - ACTIVATION SUBSPACE ITERATION
+
+**Stability of Model Parameters Subspace.** While prior work has shown that over-parameterized models in fact reside in a low-dimensional intrinsic subspace (Aghajanyan et al., 2020; Li et al.,
+
+{4}------------------------------------------------
+
+
+
+Figure 2: Four line plots showing the evolution of compression rates and speedup ratios for training and inference as a function of the number of singular values K\_i. The plots show G\_training, G\_inference, S\_training, and S\_inference. The x-axis represents K\_i = r\_{i,1} = r\_{i,2} = r\_{i,3} with values 1, 5, 9, 13. The y-axes are logarithmic for G and linear for S. Four data series are shown for different batch sizes B and feature dimensions m: D\_{i,m} = O\_i = 32 (blue dashed), D\_{i,m} = O\_i = 64 (orange dotted), D\_{i,m} = O\_i = 128 (green dash-dot), and D\_{i,m} = O\_i = 256 (red dash-dot-dot). All curves show a decreasing trend as K\_i increases, with higher m values resulting in higher compression rates and speedup ratios.
+
+Figure 2: For the linear layer $i$ with a single data batch of size $B$ , given varying dimensions of $\mathcal{W}_i$ and $\mathcal{A}_i$ and different values of $\mathbf{r}_{i,m}$ , $G_{\text{training}}$ and $G_{\text{inference}}$ illustrate the evolution in compression rates for training and inference, respectively; while $S_{\text{training}}$ and $S_{\text{inference}}$ forecast the speedup ratios for these processes.
+
+2018), we further observe that fine-tuning introduces only minor updates at each training step due to the use of a small learning rate. As a result, our key insight is that the intrinsic subspace remains relatively stable after each training iteration and can therefore be reused in the following one (confirmed in Sec. 4.2 - Fig. 3). This is supported by the findings of Radiya-Dixit & Wang (2020) and Li & Zhang (2021), who showed that the fine-tuned models are close in parameter space to the pre-trained counterpart.
+
+**Weight Subspace Iteration.** Besides activation maps, model parameters (weights) $\mathcal{W}_i$ are another major source of memory bottlenecks during training. To address this, we propose a low-rank weight decomposition strategy that projects each weight tensor into a smaller subspace at every training iteration, thereby preserving the meaningful subspace. The method works as follows:
+
+Step 1. For the weight tensor $\mathcal{W}_i$ at layer $i$ , its SVD form is given by:
+
+$$\mathcal{W}_i = U_i \Sigma_i V_i^T, \quad U_i \in \mathbb{R}^{O_i \times O_i}, \quad \Sigma_i \in \mathbb{R}^{O_i \times I_i}, \quad V_i \in \mathbb{R}^{I_i \times I_i}, \quad (5)$$
+
+where $\Sigma_i$ is a diagonal matrix containing $r_i$ singular values $s_{i,j} \in [1, r_i]$ and $r_i$ is the rank of $\mathcal{W}_i$ . As shown in Eq. 3, truncating $U_i$ , $\Sigma_i$ , and $V_i^T$ inevitably introduces error into $\frac{\partial \mathcal{L}}{\partial \mathcal{A}_i}$ , which then propagates backward during training. In other words, low-rank decomposition of the weights affects model convergence due to the accumulation of truncation error.
+
+To control this effect, we constrain the truncation error by enforcing a target explained variance threshold $\varepsilon$ , similar to the strategy used in Nguyen et al. (2024). Specifically, we measure the variance explained by the $j^{\text{th}}$ singular value as $\sigma_{i,j}^2 = s_{i,j}^2 / \sum_k s_{i,k}^2$ . Assuming the singular values are sorted in descending order ( $s_{i,j} \geq s_{i,k}, \forall j \leq k$ ), the optimal rank is defined as the smallest integer $K_i \in [1, r_i]$ such that $\sum_{j=1}^{K_i} \sigma_{i,j}^2 \geq \varepsilon$ . We then identify the essential subspace with rank $K_i$ of $\mathcal{W}_i$ , represented by $L_i$ and $R_i$ such that:
+
+$$\mathcal{W}_i \approx \tilde{\mathcal{W}}_i = L_i R_i, \quad (6)$$
+
+where
+
+$$L_i = U_{i,(K_i)} \Sigma_{i,(K_i)}, \quad R_i = V_{i,(K_i)}^T \mid U_{i,(K_i)} \in \mathbb{R}^{O_i \times K_i}, \quad \Sigma_{i,(K_i)} \in \mathbb{R}^{K_i \times K_i}, \quad V_{i,(K_i)} \in \mathbb{R}^{I_i \times K_i}. \quad (7)$$
+
+Step 2. Performing full SVDs at every iteration, however, is computationally prohibitive for on-device training (Nguyen et al., 2025). Leveraging the stability of parameter subspaces established above, $\Sigma_i$ can be expected to remain relatively stable. Thus, for a fixed $\varepsilon$ , the optimal rank $K_i$ should also remain consistent (verified in Sec. 4.2). Consequently, instead of recomputing the SVD at every iteration, we compute it once at the beginning to determine the essential subspace. Subspace iteration is applied during training to minimize computational overhead. We refer to this method as **Weight Subspace Iteration (WSI)**, with the full procedure outlined in Algorithm 1.
+
+**Weight-Activation Subspace Iteration.** While WSI reduces weight-related overhead, activation maps also dominate memory usage in backpropagation (Sec. 3.1). Previous work has shown that most of the energy in activation maps is concentrated in the first few principal components across all modes (Nguyen et al., 2024). Such a distribution makes them highly compressible while
+
+{5}------------------------------------------------
+
+still achieving high-fidelity reconstruction (confirmed in Sec. 4.2 - Fig. 4 and Sec. 4.3). Motivated by this property, we propose a unified framework in which both weights and activations are compressed under stable low-rank subspaces. Specifically, we redesign ASI with two improvements: (i) a dynamic-programming strategy that determines $r_i$ by minimizing memory usage under a target pre-tuning perplexity, rather than relying on a fixed budget $\mathcal{B}$ , thereby reducing the search cost from exponential to linear (Appendix A.2); and (ii) an extension to support 3D activation tensors (Appendix A.1).
+
+Together, WSI and ASI form the proposed Weight-Activation Subspace Iteration (WASI), a novel framework for low-rank training that jointly leverages the stability of both weights and activations. Under this scheme, the forward and backward passes are computed as follows:
+
+$$\mathcal{A}_{i+1} = \mathcal{A}_i R_i^T L_i^T, \quad (8)$$
+
+$$\frac{\partial \mathcal{L}}{\partial \mathcal{W}_i} = f_{\text{LR}} \left( \tilde{\mathcal{A}}_i, \overline{\frac{\partial \mathcal{L}}{\partial \mathcal{A}_{i+1}}} \right), \quad (9)$$
+
+$$\overline{\frac{\partial \mathcal{L}}{\partial \mathcal{A}_i}} = \overline{\frac{\partial \mathcal{L}}{\partial \mathcal{A}_{i+1}}} \cdot L_i R_i, \quad (10)$$
+
+where $f_{\text{LR}}(\cdot)$ denotes a linear operator applied in the low-rank space (see Appendix A.1). With learning rate $\eta$ , the weight update is then computed as:
+
+$$L_i R_i = L_i R_i + \eta \cdot \overline{\frac{\partial \mathcal{L}}{\partial \mathcal{W}_i}}. \quad (11)$$
+
+### 3.4 MEMORY EFFICIENCY AND COMPUTATIONAL COMPLEXITY ANALYSIS
+
+For simplicity, we assume that the same optimal rank is applied to both $\mathcal{A}_i$ and $\mathcal{W}_i$ . By varying this value, we can predict total memory usage and speedup for WASI compared to vanilla training (Fig. 2). As model size grows and the optimal rank decreases, WASI delivers greater memory compression ( $C_{\text{training}}, C_{\text{inference}}$ ) and speedup ( $S_{\text{training}}, S_{\text{inference}}$ ), a property especially valuable in on-device learning where models are typically over-parameterized and reside in low-dimensional subspaces (Aghajanyan et al., 2020; Li et al., 2018). Conversely, as the optimal rank increases, WASI’s computational cost approaches that of vanilla training, and the speedup ratios converge to 1, reflecting the upper bound set by vanilla training.
+
+Detailed derives of $C_{\text{training}}, C_{\text{inference}}, S_{\text{training}},$ and $S_{\text{inference}}$ can be found in Appendix A.3.
+
+## 4 EXPERIMENTS
+
+In this section, we present experiments designed to demonstrate the effectiveness of WASI. We begin by outlining the experimental setup in Sec. 4.1. Then, in Sec. 4.2, we conduct experiments to validate the assumptions introduced in Sec. 3.3 and Sec. 3.3. Sec. 4.3 compares WASI with various state-of-the-art methods across multiple datasets. Finally, all methods are evaluated in a real-world deployment scenario (Sec. 4.4). All simulation experiments are conducted using PyTorch 1.13.1 on an NVIDIA Quadro RTX A4500 with 20 GB of VRAM, while on-device experiments are run on a Raspberry Pi 5 equipped with a Cortex-A76 CPU and 8 GB of RAM.
+
+### 4.1 EXPERIMENTAL SETUP
+
+Our goal is to enable on-device training of transformer models, where networks pretrained on large-scale datasets are fine-tuned locally with task-specific data (Murshed et al., 2021). We evaluate WASI on image classification using ViT and SwinT, both pretrained on ImageNet-1K (Deng et al., 2009), across five downstream datasets: CIFAR-10/100 (Krizhevsky, 2009), CUB (Wah et al., 2011), Flowers (Nilsback & Zisserman, 2008), and Pets (Zhang et al., 2022).
+
+Comparisons are made against three directly comparable baselines at the time of conducting experiments: ASI, SVD-LLM, and vanilla training (as discussed in Secs. 1, 2, Appendix A.5). We measure memory and computation costs during training and inference, focusing on linear layers within multi-perceptron blocks for fair comparison with previous methods (extended results with attention layers in Appendix B.3). All experiments are run with the same set of hyperparameters, detailed in Appendix B.1.
+
+{6}------------------------------------------------
+
+
+
+Figure 3: (a) Heatmap showing the evolution of singular values of W6 across epochs (0 to 40). The y-axis is Singular Value Index (0 to 700) and the color bar is Singular Value (-1 to 4). (b) Line graph comparing Top1 Validation Accuracy (%) vs FLOPs for WSI (solid yellow line with circles) and SVD (dashed grey line with triangles). WSI reaches higher accuracy with fewer FLOPs. Annotations show '1.36x smaller in FLOPs' and '35.36% higher in Acc'.
+
+Figure 3: When fine-tuning ViT on the Pets dataset, (a) illustrates the evolution of singular values of $W_6$ across epochs; (b) compares WSI and full SVD in terms of accuracy and training FLOPs under varying explained variance thresholds, $\varepsilon \in \{0.4, 0.5, 0.6, 0.7, 0.8, 0.9\}$ .
+
+
+
+Figure 4: Three 3D bar charts (a, b, c) showing Explained Variance for Mode 1, Mode 2, and Mode 3 respectively. The x-axis is Layer Index (0 to 20), the y-axis is Singular Value Index (0 to 100, 40, 200), and the z-axis is Explained Variance (0.0 to 0.6). The charts show that most explained variance is concentrated in the first few singular values.
+
+Figure 4: Explained variance of each singular value of $\mathcal{A}_i$ across all of its modes when fine-tuning ViT on the Pets dataset.
+
+### 4.2 PRELIMINARY RESULTS
+
+In these experiments, we focus on fine-tuning ViT model using Pets dataset.
+
+**Stability of Layer Ranks.** We apply truncated SVD to the weight tensors of the linear layers within ViT’s MLP blocks at each training iteration. We constrain the decomposition by setting $\varepsilon = 0.8$ and monitor the layer ranks $K_i$ throughout the course of training. As shown in Fig. 3a, we observe that the ranks exhibit remarkable stability across epochs. This observation validates our insight in Sec. 3.3, confirming the stability of layer ranks during training.
+
+**WSI vs SVD.** Next, we compare two strategies: (1) reapplying truncated SVD at every training iteration, and (2) WSI. We evaluate their performance across a range of $\varepsilon$ values - specifically, 0.4, 0.5, 0.6, 0.7, 0.8, and 0.9 - with each value represented by a different marker in Fig. 3b. The results demonstrate that incorporating subspace iteration through WSI leads to a significant reduction in computational complexity compared to performing a full SVD at every iteration. Specifically, WSI requires $1.36\times$ fewer FLOPs than SVD to achieve the same level of accuracy. Moreover, when both methods are constrained to use the same amount of FLOPs, WSI outperforms SVD by approximately 35% in terms of accuracy. This result verifies that reusing the subspace in subsequent training iterations does not degrade model convergence.
+
+**Explained Variance Distribution of Activation Maps.** Fig. 4 illustrate the explained variances $\sigma_{i,j,m}$ of each singular value $j$ in mode $m$ of the activation map $\mathcal{A}_i$ . As anticipated in Sec. 3.3, most activation-map energy lies in the first few singular values, which capture the key information during fine-tuning.
+
+{7}------------------------------------------------
+
+
+
+Figure 5: Resource consumption during fine-tuning and inference of ViT on the CIFAR-10 dataset. The figure contains four line plots: Accuracy (%) vs. Training Mem (MB), Accuracy (%) vs. Inference Mem (MB), Accuracy (%) vs. Training FLOPs, and Accuracy (%) vs. Inference FLOPs. Four methods are compared: WASI (green line with circles), ASI (blue dashed line with circles), SVD-LLM (red dashed line with circles), and Vanilla (red line with diamonds). WASI and ASI show higher accuracy for lower memory and FLOPs compared to SVD-LLM and Vanilla. The red diamond marker indicates the Vanilla training point.
+
+Figure 5: Resource consumption during fine-tuning and inference of ViT on the CIFAR-10 dataset. Each marker in the plots corresponds to a different compression rate, with the red diamond indicating vanilla training.
+
+
+
+Figure 6: Resource consumption when applying WASI for fine-tuning and inference of SwinT across different datasets. The figure contains four line plots: Accuracy (%) vs. Training Mem (MB), Accuracy (%) vs. Inference Mem (MB), Accuracy (%) vs. Training FLOPs, and Accuracy (%) vs. Inference FLOPs. Five datasets are compared: Pets (green line with circles), Flowers (blue dashed line with circles), CUB (red dashed line with circles), CIFAR-10 (red dashed line with circles), and CIFAR-100 (orange dashed line with circles). WASI consistently shows higher accuracy for lower memory and FLOPs across all datasets compared to the Vanilla baseline (red diamond marker).
+
+Figure 6: Resource consumption when applying WASI for fine-tuning and inference of SwinT across different datasets. Each marker along the curves represents a different compression rate, while the final marker on each curve corresponds to vanilla training.
+
+### 4.3 MAIN RESULTS
+
+**ViT on CIFAR-10.** Fig. 5 presents the results of fine-tuning a ViT pretrained on ImageNet-1K using CIFAR-10. Each curve for WASI and ASI contains six markers, corresponding to explained variance thresholds $\varepsilon \in \{0.4, 0.5, 0.6, 0.7, 0.8, 0.9\}$ from left to right. The red diamond indicates vanilla training, and for fairness, the same compression ratios are applied to SVD-LLM.
+
+WASI achieves up to $100\times$ higher memory efficiency than SVD-LLM at similar accuracy, owing to its avoidance of LoRA adapters. Its accuracy also improves steadily as $\varepsilon$ increases. In contrast, at the lowest compression rates (last two markers), SVD-LLM consumes even more memory than vanilla training because of the overhead of storing sub-layer activations.
+
+In terms of computation, LoRA adapters allow SVD-LLM to achieve the lowest FLOPs, followed by WASI, which jointly compresses weights and activations into a low-rank subspace. Since ASI only compresses activations while keeping weights intact, its computational cost is higher, and at $\varepsilon = 0.9$ , it even exceeds vanilla training (confirmed in Tab. 2). On the other hand, ASI maintains stable accuracy across compression rates, supporting the stability assumption discussed in Sec. 3.3. At inference, both WASI and SVD-LLM achieve similar memory/FLOPs savings, while ASI resembles vanilla since the architecture is unchanged.
+
+**SwinT on Multiple Datasets.** Fig. 6 compares WASI and vanilla across datasets, additional baselines are in Appendix B.3. Each marker along a curve from left to right, indicates different $\varepsilon \in \{0.4, \dots, 1.0\}$ , with 1.0 as vanilla. Across all datasets, WASI consistently provides a better accuracy-efficiency trade-off. At $\varepsilon = 0.9$ , it matches vanilla accuracy while cutting memory by up to $62\times$ and FLOPs by $1.5\times$ , and even surpasses vanilla on CUB.
+
+**WASI on TinyLlama.** The initial goal of WASI was to enable training transformer-based models on edge devices, so we focused on ViT and SwinT. To test its generality, we extended our experiments to TinyLlama, a decoder-only transformer model. The downstream dataset used is BoolQ (Clark et al., 2019). Due to limited resources, we only fine-tune up to the last 5 layers of the model and set the WASI $\varepsilon$ to 0.1. All other training hyperparameters follows the same configuration as in our previous experiments. For comparison, we log the resource consumption only at the layers that are fine-tuned. The results are shown in Fig. 7.
+
+{8}------------------------------------------------
+
+
+
+Figure 7: Performance of WASI vs. vanilla training when fine-tuning TinyLlama on BoolQ. The figure consists of four line plots showing Accuracy (%) on the y-axis (ranging from 64 to 66) against four different metrics on the x-axis: Activation Mem (MB), Weight Mem (MB), Training FLOPs, and Inference FLOPs. Both axes are on a logarithmic scale. WASI is represented by a green line with circular markers, and Vanilla is represented by a red line with circular markers. In all plots, WASI consistently achieves higher accuracy than Vanilla. The markers on the curves indicate the number of layers fine-tuned, starting from the last layer and moving upwards.
+
+Figure 7: Performance of WASI vs. vanilla training when fine-tuning TinyLlama on BoolQ. Each marker indicates the number of layers fine-tuned from the last layer upward: the marker closest to the y-axis of each figure corresponds to fine-tuning only the last layer, the next marker corresponds to the last two layers, and so on.
+
+WASI again outperforms vanilla: activation and weight memory drop by up to $953.86\times$ and $30.12\times$ , while training and inference FLOPs fall by $13.11\times$ and $30.27\times$ , all without accuracy loss.
+
+Additional results, including ViT on more datasets and extended baselines for SwinT are in Appendix B.3.
+
+### 4.4 ON-DEVICE LATENCY
+
+We evaluate the practical efficiency of WASI on resource-constrained hardware by fine-tuning ViT on CIFAR-10 using a Raspberry Pi 5. Fig. 8 reports the average time required to complete a single iteration of both training and inference across different explained variance thresholds $\varepsilon \in \{0.4, 0.5, 0.6, 0.7, 0.8, 0.9\}$ , along with vanilla training.
+
+As expected, the runtime for both training and inference under WASI increases as $\varepsilon$ becomes larger. This trend aligns with the intuition that higher $\varepsilon$ values retain more information and thus result in higher-rank approximations, which require more compute and memory. However, despite this increase, WASI consistently outperforms vanilla training in terms of speed. For instance, even at $\varepsilon = 0.9$ , which corresponds to the least aggressive compression setting in this experiment, WASI remains approximately $1.4\times$ faster than vanilla training. Thus, WASI delivers clear benefits even when preserving much of the original information.
+
+Importantly, WASI helps to reduce runtime without causing significant accuracy degradation, as discussed in earlier sections. This ability makes it a strong candidate for the deployment of transformer-based model in real-world on-device learning scenarios, where computational resources are severely constrained. Further numerical results can be found in Appendix. B.3.
+
+
+
+Figure 8: Training and inference time per iteration for ViT on CIFAR-10. The figure is a bar chart showing Time (s) on the y-axis (ranging from 0 to 20) for different explained variance thresholds ε (0.4, 0.5, 0.6, 0.7, 0.8, 0.9) and a vanilla baseline. For each ε, there are two bars: a blue bar for Training time and an orange bar for Inference time. The vanilla baseline is shown on the far right. In all cases, both training and inference times for WASI are significantly lower than the vanilla baseline. The final marker on each curve represents vanilla training.
+
+Figure 8: Training and inference time per iteration for ViT on CIFAR-10 (batch size = 128) using a Raspberry Pi 5, measured under different explained variance thresholds $\varepsilon$ . The final marker on each curve represents vanilla training.
+
+## 5 CONCLUSION
+
+In this work, we introduced WASI, an efficient training method for resource-constrained fine-tuning of transformer models. Assuming that essential parameter information lies in a stable low-dimensional subspace, WASI applies SVD and subspace iteration to obtain low-rank approximations of both weights and activations during each training iteration. This yields significant gains in memory and computation while tightly controlling information loss.
+
+Building on prior theory and validated through extensive experiments, WASI outperforms state-of-the-art methods, reducing training memory usage by up to $62\times$ and achieving $1.4\times$ speedup over vanilla training on a Raspberry Pi 5. These results show the potential of WASI for enabling on-device learning with transformers, a domain traditionally dominated by CNNs. While our experiments focus on transformers, the underlying principles apply broadly to any neural network trained with backpropagation.
+
+{9}------------------------------------------------
+
+## ACKNOWLEDGEMENT
+
+Part of this work was funded by Hi!PARIS Center on Data Analytics and Artificial Intelligence, by the European Union’s Horizon Europe Research and Innovation Programme under grant agreement No. 101120237 (ELIAS - European Lighthouse of AI for Sustainability) and No. 101120657 (ENFIELD - European Lighthouse to Manifest Trustworthy and Green AI), by the French National Research Agency (ANR) in the framework of the IA Cluster project “Hi! PARIS Cluster 2030” (ANR-23-IACL-005), the NF-NAI project (ANR-22-PEFT-0003) and NF-FITNESS project (ANR-22-PEFT-0007) as part of France 2030.
+
+## REPRODUCIBILITY STATEMENT
+
+Detailed description of our algorithm is provided in Sec. 3.3, Appendix A.1, and Appendix A.2. Full details of the training policy, including hyperparameters, datasets, and other configurations, are presented in Appendix B.1. Code to reproduce the main experiments is included in the Supplementary Material zip file. We commit to open-sourcing the complete code upon acceptance of this paper.
+
+## REFERENCES
+
+- Armen Aghajanyan, Luke Zettlemoyer, and Sonal Gupta. Intrinsic dimensionality explains the effectiveness of language model fine-tuning. *arXiv preprint arXiv:2012.13255*, 2020.
+- Andrea Bragagnolo, Enzo Tartaglione, and Marco Grangetto. To update or not to update? neurons at equilibrium in deep models. *Advances in neural information processing systems*, 35:22149–22160, 2022.
+- Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. *Advances in neural information processing systems*, 33:1877–1901, 2020.
+- Yu Cheng, Duo Wang, Pan Zhou, and Tao Zhang. A survey of model compression and acceleration for deep neural networks. *arXiv preprint arXiv:1710.09282*, 2017.
+- Christopher Clark, Kenton Lee, Ming-Wei Chang, Tom Kwiatkowski, Michael Collins, and Kristina Toutanova. Boolq: Exploring the surprising difficulty of natural yes/no questions. *arXiv preprint arXiv:1905.10044*, 2019.
+- Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In *2009 IEEE conference on computer vision and pattern recognition*, pp. 248–255. Ieee, 2009.
+- Lei Deng, Guoqi Li, Song Han, Luping Shi, and Yuan Xie. Model compression and hardware acceleration for neural networks: A comprehensive survey. *Proceedings of the IEEE*, 108(4): 485–532, 2020.
+- Sauptik Dhar, Junyao Guo, Jiayi Liu, Samarth Tripathi, Unmesh Kurup, and Mohak Shah. A survey of on-device machine learning: An algorithms and learning theory perspective. *ACM Transactions on Internet of Things*, 2(3):1–49, 2021.
+- Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. *arXiv preprint arXiv:2010.11929*, 2020.
+- Marawan Gamal Abdel Hameed, Marzieh S Tahaei, Ali Mosleh, and Vahid Partovi Nia. Convolutional neural network compression through generalized kronecker product decomposition. In *Proceedings of the AAAI Conference on Artificial Intelligence*, volume 36, pp. 771–779, 2022.
+- Soufiane Hayou, Nikhil Ghosh, and Bin Yu. Lora+: Efficient low rank adaptation of large models. *arXiv preprint arXiv:2402.12354*, 2024.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/0xHWd4CUaX.txt b/papers/0xHWd4CUaX.txt
new file mode 100644
index 0000000000000000000000000000000000000000..73eb447a4a01851e6ee0883b854aca4733be6c1c
--- /dev/null
+++ b/papers/0xHWd4CUaX.txt
@@ -0,0 +1,406 @@
+
+
+{0}------------------------------------------------
+
+# CONTRASTIVE CODE GRAPH EMBEDDINGS FOR REINFORCEMENT LEARNING-BASED AUTOMATED CODE REFACTORING
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+We propose a novel reinforcement learning (RL) framework for automated code refactoring that uses contrastive pre-trained code graph embeddings to overcome the limitations of the traditional heuristic-based reward functions. The key challenge is balancing the implementation of syntactic improvements - while maintaining the semantics of the code being refactored - something that necessarily requires the existing RL approaches to accomplish and that most often do last year because of the handcrafted nature of their metrics. Our approach presents a syntax-guided contrastive encoder that acquires structural invariant representations of code graphs by relating structurally augmented variants under a self-supervised objective. These embeddings are then combined with standard measures of code quality in a composite reward function, allowing the RL agent to reason about both low-level changes to the syntactic structure as well as high-level changes in the semantic structure. The policy network itself, which takes the form of a graph attention network, runs on the joint representation space directly, which models dependency on the context on the code structure.
+
+## 1 INTRODUCTION
+
+Automated code refactoring has become increasingly crucial in modern software development, objecting to code quality and reducing technical debt. Traditional approaches to this problem have primarily relied on rule-based systems (Taentzer et al., 2012) or static analysis techniques (Kimura et al., 2012).
+
+Recent advances in machine learning have helped to open up new opportunities for automated code refactoring. Reinforcement learning (RL) has emerged as a particularly promising direction, as it can learn optimal refactoring strategies through interaction with the code environment (Palit & Sharma, 2024a).
+
+The fundamental issue with refactoring using RL is how to build good representations of code that have both syntactic and semantic aspects. The current methods mostly involve handcrafting of features, or the use of simple syntactic measurements, which possibly aren't sufficient to represent the complex relationships in code structures.
+
+We tackle these issues with the introduction of a new, yet simple framework that brings together variable-contrastive learning with reinforcement learning for code refactoring in an automated way. Our approach takes advantage of the power of self-supervised learning to produce rich representations of code that are aware of refactoring, and that do not require any large amounts of labeled data.
+
+The proposed method differs in some important aspects from previous methods. First, instead of using reward functions crafted by hand, our framework is based on the automatic learning of meaningful representations of code quality in contrastive pre-training. Second, the combination of graph-based representations enables the model to reason over the structure of code at various scales of granularity from individual statements to complete modules. Third, our approach is excellent in reducing the necessity of expert demonstration based learning and uses self-supervised learning by using huge amounts of unlabeled code.
+
+{1}------------------------------------------------
+
+The effectiveness of our method comes from three individual components: (1) contrastive encoder that establishes an invariant representation of code graphs using structural augmentations, (2) composite reward function that leverages both learned embeddings and traditional code quality metrics, as well as (3) policy network that operates directly on the joint representation space.
+
+Our experimental evaluation shows that the proposed approach is better than the existing methods for the refactoring quality and generalization capability.
+
+The rest of this paper is organized as follows: Section 2 presents a review of related work in the automated refactoring and setup of code transformation using RL. Section 3 gives some needed background about reinforcement learning and contrastive representation learning. Section 4 presents our proposed method in detail, including contrastive pre-training objective and RL integrating. Section 5 is dedicated to describing the set-up of our experiments and our results. Section 6 is about limitations and future directions and it is followed by conclusions in Section 7.
+
+## 2 RELATED WORK
+
+The combination of machine learning and code refactoring has enjoyed great innovation in the last few years, various approaches being developed, from supervised learning models to reinforcement learning approaches.
+
+### 2.1 TRADITIONAL REFACTORING APPROACHES
+
+Early automated refactoring systems relied heavily on predefined rules and static analysis (Taentzer et al., 2012). These systems generally used pattern matching mechanisms to detect code smells and transformation templates to fix the code. While working for specific anti-patterns, such approaches were not flexible enough to handle different coding styles, and often required huge manual configuration. More sophisticated static analysis tools (Kimura et al., 2012) incorporated control and data flow analysis to detect refactoring opportunities, but remained constrained by their rule-based nature.
+
+### 2.2 LEARNING-BASED CODE TRANSFORMATION
+
+Recent lemon deep learning technologies have made it more adaptable to code transformation. Sequence-to-sequence models (Tufano et al., 2019) initially demonstrated promise by treating code as natural language, but struggled to capture structural dependencies. Graph neural networks (GNNs) addressed this limitation by explicitly modeling code structure through abstract syntax trees (ASTs) and control flow graphs (LeClair et al., 2020). Syncobert (Wang et al., 2021) introduced syntax-aware contrastive learning for code representation, though its focus remained on general code understanding rather than refactoring-specific tasks. GraphCodeBERT (Guo et al., 2020) advanced this direction by incorporating data flow information into pre-training, showing improved performance on downstream tasks like code search and clone detection.
+
+### 2.3 REINFORCEMENT LEARNING FOR CODE REFACTORING
+
+The movement of using reinforcement learning on code refactoring has been a study of note to translate the defect of static approaches. Early RL-based methods (Marvellous et al., 2025) formulated refactoring as a Markov Decision Process, using handcrafted reward functions based on code metrics. Subsequent work (Polu, 2025) demonstrated RL’s adaptability to various optimization constraints, particularly for performance-critical code. The hybrid approach in (Prasad & Srivenkatesh, 2025) combined GNNs with RL, showing improved refactoring quality but still relying on expert demonstrations for training. Process-supervised RL (Ye et al., 2025) introduced teacher models for guided exploration, though its focus remained on code generation rather than refactoring.
+
+The proposed way differs from current methods in combining contrastive pre-training method with RL in a new manner. While prior works either relied on hand-crafting rewards or required lots of supervision, we take a step forward and learn refactoring aware representations using self-supervised contrastive objectives.
+
+{2}------------------------------------------------
+
+## 3 BACKGROUND AND PRELIMINARIES
+
+In order to set the stage for our proposed approach, we first discuss important ideas about reinforcement learning and contrastive representation learning in relation to code refactoring here.
+
+### 3.1 REINFORCEMENT LEARNING FRAMEWORK
+
+Reinforcement learning formulates decision-making problems through the lens of an agent interacting with an environment (Sutton & Barto, 1998). In the code refactoring case, the environment is the codebase and the associated quality metrics, and the agent learns a policy for determining how to refactor the code. The standard RL framework models this interaction as a Markov Decision Process (MDP) defined by the tuple $(S, A, P, R, \gamma)$ , where $S$ represents the state space (code representations), $A$ denotes the action space (possible refactorings), $P$ describes transition dynamics, $R$ specifies the reward function, and $\gamma$ is the discount factor.
+
+The policy $\pi(a|s)$ determines the probability of taking action $a$ in state $s$ , with the objective of maximizing expected cumulative reward:
+
+$$J(\pi) = \mathbb{E}_{\tau \sim \pi} \left[ \sum_{t=0}^T \gamma^t r_t \right] \quad (1)$$
+
+where $\tau$ represents trajectories sampled from the policy. Policy gradient methods (Sutton et al., 1999) optimize this objective directly by estimating gradients with respect to policy parameters. The advantage function $A^\pi(s, a) = Q^\pi(s, a) - V^\pi(s)$ plays a crucial role in reducing variance during training, where $Q^\pi$ and $V^\pi$ denote action-value and state-value functions respectively.
+
+### 3.2 CONTRASTIVE REPRESENTATION LEARNING
+
+Contrastive learning has emerged as a powerful paradigm for self-supervised representation learning (Chen et al., 2020). The general concept is learning an embedding space where positive pairs (similar instances) will be placed closer together and negative pairs (dissimilar instances) pushed away from each other.
+
+Given a batch of $N$ examples, the contrastive loss (InfoNCE) (Oord et al., 2018) for an anchor $x_i$ and its positive pair $x_j$ is defined as:
+
+$$\mathcal{L}_{contrast} = -\log \frac{\exp(sim(z_i, z_j)/\tau)}{\sum_{k=1}^N \mathbb{1}_{k \neq i} \exp(sim(z_i, z_k)/\tau)} \quad (2)$$
+
+where $z_i = f_\theta(x_i)$ represents the encoded embedding, $sim$ denotes cosine similarity, and $\tau$ is a temperature hyperparameter. For code graphs, positive pairs can be generated through structure-preserving transformations like variable renaming or statement reordering (Ding et al., 2021).
+
+### 3.3 CODE GRAPH REPRESENTATIONS
+
+Modern code analysis increasingly relies on graph-based representations that capture both syntactic and semantic relationships (Allamanis et al., 2017). Abstract Syntax Trees (ASTs) are used for hierarchical structure, and control flow graphs (CFGs) are used for execution paths.
+
+Formally, a code graph $G = (V, E)$ consists of nodes $v \in V$ representing code elements (e.g., statements, expressions) and edges $e \in E$ denoting relationships between them. Graph neural networks (Kipf, 2016) operate on these structures through message passing:
+
+$$h_v^{(l+1)} = \sigma \left( W^{(l)} \sum_{u \in \mathcal{N}(v)} \frac{h_u^{(l)}}{|\mathcal{N}(v)|} + B^{(l)} h_v^{(l)} \right) \quad (3)$$
+
+where $h_v^{(l)}$ represents the node embedding at layer $l$ , $\mathcal{N}(v)$ denotes neighbors of node $v$ , and $W^{(l)}, B^{(l)}$ are learnable parameters.
+
+The combination of these concepts is the theoretical basis for our approach. The RL framework handles the decision making mechanism, the use of contrastive learning to make effective representation from unlabeled code, and GNN to process the structural information inherent in software.
+
+{3}------------------------------------------------
+
+## 4 CONTRASTIVE GRAPH EMBEDDINGS FOR REFACTORING-AWARE RL
+
+The proposed framework reinforces a contrastive pre-training approach with reinforcement learning and the ability to conduct automated code refactoring without extensive expert supervision.
+
+### 4.1 SYNTAX-GUIDED CONTRASTIVE CODE GRAPH ENCODER
+
+The encoder architecture processes code graphs $G = (V, E)$ through a series of graph attention layers that compute node embeddings $h_v \in \mathbb{R}^d$ . For contrastive pre-training, we are generating positive examples by pairs of generated graphs $(\{G_1, G_2\})$ where is undergone syntax-preserving transformations that include:
+
+- Subtree masking: Randomly removing AST subtrees while maintaining program validity
+- Edge rewiring: Modifying non-critical control flow edges without altering semantics
+- Identifier shuffling: Permuting variable names within scope constraints
+
+The contrastive objective minimizes:
+
+$$\mathcal{L}_{pre} = -\mathbb{E}_{(G_1, G_2)} \left[ \log \frac{\exp(\text{sim}(f_\theta(G_1), f_\theta(G_2))/\tau)}{\sum_{G' \in \mathcal{B}} \exp(\text{sim}(f_\theta(G_1), f_\theta(G'))/\tau)} \right] \quad (4)$$
+
+where $\mathcal{B}$ denotes the batch of negative examples and $f_\theta$ produces graph-level embeddings through mean pooling of node representations. The temperature parameter $\tau$ controls separation between positive and negative pairs.
+
+### 4.2 METRIC FUSION IN REWARD FUNCTION
+
+The composite reward combines three components:
+
+1. **Traditional metrics** $\mathbf{q}_t \in \mathbb{R}^m$ : Cyclomatic complexity, coupling metrics, and style violations
+2. **Embedding dynamics** $\Delta \mathbf{h}_t = \|\mathbf{h}_t - \mathbf{h}_{t-1}\|_2$ : Magnitude of latent space movement
+3. **Semantic preservation** $\delta_t = \mathbb{I}[\text{test}(G_t) = \text{test}(G_{t-1})]$ : Differential test verification
+
+The fused reward becomes:
+
+$$r_t = \mathbf{w}_q^\top \phi(\mathbf{q}_t) + \alpha \tanh(\beta \Delta \mathbf{h}_t) - \gamma(1 - \delta_t) \quad (5)$$
+
+where $\phi$ denotes min-max normalization and $\alpha, \beta, \gamma$ are scaling parameters. The hyperbolic tangent means that the gradients propagate in a stable way during RL training.
+
+### 4.3 EMBEDDING-GUIDED EXPLORATION STRATEGY
+
+The policy's exploration distribution incorporates Mahalanobis distance to prototype states:
+
+$$\pi_{explore}(a|s) \propto \exp \left( -\frac{1}{2} (\mathbf{h}_s - \mathbf{h}^*)^\top \Sigma^{-1} (\mathbf{h}_s - \mathbf{h}^*) \right) \quad (6)$$
+
+where $\mathbf{h}^*$ represents the running average of high-reward states and $\Sigma$ is the empirical covariance matrix of pre-training embeddings. This lets exploration be biased toward parts of the latent space where there are associated effective refactorings.
+
+### 4.4 GRAPH ATTENTION POLICY WITH JOINT REPRESENTATIONS
+
+The policy network processes concatenated features $[\mathbf{h}_t; \mathbf{q}_t]$ through attention mechanisms:
+
+$$\omega_{ij} = \text{softmax}_j (\text{LeakyReLU} (\mathbf{a}^\top [\mathbf{W}_h \|\mathbf{W}_q] \mathbf{h}_j)) \quad (7)$$
+
+where $\mathbf{a} \in \mathbb{R}^{2d'}$ and $\mathbf{W} \in \mathbb{R}^{d' \times d}$ are learned parameters. The attention weights decide how nodes aggregate information from their syntactic neighbors when they are amounting correct refactoring actions.
+
+{4}------------------------------------------------
+
+### 4.5 SEMANTIC PRESERVATION VIA DIFFERENTIAL TESTING
+
+A lightweight equivalence checker computes $\delta_t$ by:
+
+1. Extracting method signatures and I/O contracts from $G_{t-1}$ and $G_t$
+2. Generating test cases through symbolic execution (Cadar & Sen, 2013)
+3. Comparing execution traces using normalized Hamming distance:
+
+$$\delta_t = 1 - \frac{1}{L} \sum_{k=1}^L \mathbb{I}[\text{trace}_k(G_{t-1}) \neq \text{trace}_k(G_t)] \quad (8)$$
+
+where $L$ denotes the test case count. This dynamic verification ensures behavior preservation without expensive formal methods.
+
+### 4.6 END-TO-END INTEGRATION
+
+The complete system operates in three phases:
+
+1. **Pre-training:** Optimize $f_\theta$ via contrastive loss on unlabeled code corpora
+2. **RL fine-tuning:** Fix $f_\theta$ and train policy network $\pi_\phi$ using PPO (Schulman et al., 2017)
+3. **Inference:** Deploy $\pi_\phi$ with $\epsilon$ -greedy exploration ( $\epsilon = 0.1$ )
+
+The way we design the network in a modular fashion and can therefore swap the components (i.e. to the different GNN architecture) while the overall learning paradigm remains the same.
+
+## 5 EXPERIMENTAL EVALUATION
+
+To validate the effectiveness of our proposed method, we conducted thorough experiments to compare our method with state-of-the-art baselines in multiple dimensions of refactoring quality and generalization ability. This section presents our experimental set-up, evaluation criteria and comparison results.
+
+### 5.1 EXPERIMENTAL SETUP
+
+#### Datasets and Codebases
+
+We evaluated our method on three established code refactoring datasets:
+
+- **Refactory** (Kádár et al., 2016): Contains 12,500 Java methods with expert-annotated refactoring labels
+- **CodeRef** (Wang et al., 2024): Comprises 8,700 Python functions with version history-based refactoring pairs
+- **BigCloneBench** (Svajlenko & Roy, 2016): Includes 6 million Java code fragments for cross-project evaluation
+
+For pre-training the contrastive encoder, we used the **CodeSearchNet** (Husain et al., 2019) corpus containing 2 million functions across 6 programming languages.
+
+#### Baseline Methods
+
+We compared against four categories of refactoring approaches:
+
+1. **Rule-based:** PMD (Mayer & Schroeder, 2012) and Checkstyle (Kupari et al., 2025) with default rule sets
+2. **Learning-based:**
+ - **Code2Seq** (Alon et al., 2018): Sequence-to-sequence model with AST paths
+ - **Graph2Edit** (Cai et al., 2023): GNN-based edit predictor
+3. **RL-based:**
+
+{5}------------------------------------------------
+
+Table 1: Comparative performance across evaluation metrics (higher is better)
+
+| Method | SI (%) | SP (%) | ED | MG (%) | GS (%) |
+|-|-|-|-|-|-|
+| PMD | 62.1 | 88.3 | 0.41 | 15.2 | 45.6 |
+| Checkstyle | 58.7 | 91.2 | 0.38 | 12.8 | 49.3 |
+| Code2Seq | 71.5 | 82.4 | 0.52 | 18.7 | 54.2 |
+| Graph2Edit | 75.2 | 85.6 | 0.49 | 21.3 | 58.9 |
+| RLRefactor | 68.3 | 86.7 | 0.45 | 19.5 | 52.4 |
+| GraphRL | 77.8 | 89.2 | 0.43 | 23.1 | 63.7 |
+| NeuroRefactor | 79.4 | 90.5 | 0.40 | 24.6 | 67.2 |
+| Ours | 83.7 | 93.8 | 0.36 | 27.9 | 72.4 |
+
+- **RLRefactor** (Palit & Sharma, 2024b): DQN with handcrafted rewards
+- **GraphRL** (Darvari et al., 2024): GNN policy with expert demonstrations
+
+### 4. Hybrid:
+
+- **NeuroRefactor** (Karakati & Thirumaaran, 2022): Combines neural metrics with rule-based constraints
+
+#### Evaluation Metrics
+
+We employed five complementary metrics:
+
+1. **Syntactic Improvement (SI)**: Percentage reduction in code smells (PMD/Checkstyle violations)
+2. **Semantic Preservation (SP)**: Test case pass rate after refactoring
+3. **Edit Distance (ED)**: Normalized Levenshtein distance between original/refactored code
+4. **Maintainability Gain (MG)**: Improvement in QMOOD (El-Wakil et al., 2004) metric scores
+5. **Generalization Score (GS)**: Performance on unseen project types (cross-validation)
+
+#### Implementation Details
+
+Our implementation used:
+
+- Graph encoder: 4-layer GAT with 256-dimensional hidden states
+- Contrastive pre-training: 100 epochs, batch size 512, temperature $\tau = 0.1$
+- RL training: PPO with $\gamma = 0.99$ , $\lambda = 0.95$ , 1M environment steps
+- Reward weights: $w_q = [0.4, 0.3, 0.3]$ , $\alpha = 0.2$ , $\beta = 1.0$ , $\gamma = 0.5$
+- Hardware: 8×NVIDIA V100 GPUs (pre-training), single GPU (RL)
+
+### 5.2 COMPARATIVE RESULTS
+
+Table 1 presents the aggregate performance across all evaluation metrics.
+
+The results provide some important insights:
+
+1. Traditional rule-based methods (PMD, Checkstyle) show limited syntactic improvement due to their rigid rule sets, though they maintain good semantic preservation.
+2. Learning-based approaches (Code2Seq, Graph2Edit) achieve better SI scores but suffer in SP due to their lack of explicit semantic constraints.
+3. RL methods generally outperform static analyzers, with GraphRL showing particularly strong performance due to its graph-based policy.
+4. Our method achieves the best balance across all metrics, with particularly strong gains in generalization (GS), suggesting the contrastive pre-training effectively captures transferable refactoring patterns.
+
+{6}------------------------------------------------
+
+
+
+Figure 1: Learning curve showing Average Reward vs. Training Episodes. The Proposed Method (blue line) starts at 0 reward and increases rapidly, reaching approximately 0.85 by 15,000 episodes. GraphRL (orange line) starts at 0 reward and increases more slowly, reaching approximately 0.85 by 25,000 episodes. Both methods show some fluctuations after reaching their peak rewards.
+
+Figure 1: Learning curve of our method compared to RL baselines. The contrastive pre-training enables faster convergence and higher final performance, reaching 90% of maximum reward by episode 15k compared to 25k for GraphRL.
+
+Table 2: Ablation study results (Refactory dataset)
+
+| Variant | SI (%) | SP (%) | MG (%) |
+|-|-|-|-|
+| Full model | 83.7 | 93.8 | 27.9 |
+| w/o contrastive pre-training | 76.2 | 89.1 | 22.4 |
+| w/o embedding rewards | 79.5 | 91.3 | 24.7 |
+| w/o semantic tests | 81.6 | 85.2 | 25.3 |
+| Random exploration | 74.8 | 92.6 | 21.8 |
+
+### 5.3 ABLATION STUDY
+
+To understand the contribution of each component, we conducted an ablation study by systematically removing key elements of our approach (Table 2).
+
+The most significant drop occurs when removing contrastive pre-training (-7.5% SI), highlighting the importance of learned representations. The semantic test component proves crucial for maintaining behavior preservation (-8.6% SP when removed).
+
+### 5.4 CROSS-LANGUAGE GENERALIZATION
+
+To study the transferability of our approach, we evaluated the model already trained over a Java language codebase (CodeSearchNet) over Python and C++ codebases without further fine-tuning. As shown in Table 3, the method maintains reasonable performance despite the domain shift, out-performing language-specific rule-based tools.
+
+### 5.5 QUALITATIVE ANALYSIS
+
+Case studies demonstrate our method’s ability to discover non-obvious optimizations:
+
+{7}------------------------------------------------
+
+Table 3: Cross-language generalization performance
+
+| Target Language | Method | SI (%) | SP (%) |
+|-|-|-|-|
+| Python | PyLint | 59.2 | 90.4 |
+| | Ours | 68.7 | 88.9 |
+| C++ | Cppcheck | 54.3 | 93.1 |
+| | Ours | 63.5 | 91.2 |
+
+
+
+Scatter plot showing the correlation between Embedding Dynamics (\Delta h) on the x-axis and Syntactic Improvement (SI %) on the y-axis. The x-axis ranges from -1.00 to 1.00, and the y-axis ranges from 0 to 100. There is a positive correlation, with points clustered in the upper right quadrant, indicating that higher embedding dynamics are associated with higher syntactic improvement.
+
+Figure 2: Correlation (Pearson’s $r=0.72$ ) between embedding space movement ( $\Delta h$ ) and actual quality improvement (SI), validating that the learned representations capture meaningful refactoring signals. Most beneficial refactorings (high SI) cluster in a specific region of embedding dynamics.
+
+1. **Pattern Consolidation:** Identified duplicate validation logic across nested conditionals and extracted them into guard clauses
+2. **Dataflow Optimization:** Reordered operations to minimize intermediate object creation in collection processing chains
+3. **Architectural Hint:** Suggested converting procedural-style code to strategy pattern when detecting similar control flows with varying operations
+
+## 6 DISCUSSION AND FUTURE WORK
+
+### 6.1 LIMITATIONS OF THE PROPOSED METHOD
+
+While it is clear that our approach shows significant improvements over existing approaches, there are some rather obvious limitations that should be commented upon. The contrastive pre-training phase is costly especially when dealing with large codebases with complicated dependency graphs.
+
+### 6.2 POTENTIAL APPLICATION SCENARIOS
+
+The framework has been found to be particularly promising in a number of widely used practical software engineering settings. Continuous integration pipelines for the purpose could integrate with the refactoring agent to automatically improve code quality in the development process.
+
+{8}------------------------------------------------
+
+
+
+| Refactoring Stages | Code Quality Metrics (Blue) | Embedding Dynamics (Orange) | Semantic Preservation Penalty (Green) |
+|-|-|-|-|
+| 0 | 0.80 | 0.10 | 0.10 |
+| 20 | 0.70 | 0.20 | 0.10 |
+| 40 | 0.60 | 0.30 | 0.10 |
+| 60 | 0.45 | 0.45 | 0.10 |
+| 80 | 0.30 | 0.60 | 0.10 |
+| 100 | 0.20 | 0.70 | 0.10 |
+
+Figure 3: A stacked area chart showing the proportion of three reward components across 100 refactoring stages. The y-axis is 'Proportion of Reward Components' from 0.0 to 1.0. The x-axis is 'Refactoring Stages' from 0 to 100. The legend indicates: Code Quality Metrics (blue), Embedding Dynamics (orange), and Semantic Preservation Penalty (green). The blue area starts at ~0.8 and decreases to ~0.2. The orange area starts at ~0.1 and increases to ~0.7. The green area remains constant at ~0.1.
+
+Figure 3: Reward component dominance at various refactoring stages. Traditional metrics guide initial improvements, while embedding dynamics become increasingly important for fine-grained optimization.
+
+### 6.3 SCALABILITY OF THE SYSTEM
+
+The current implementation has reasonable scalability characteristics, and supports codebases with as many as 1 million lines of code in our experiments. This graph attention mechanism is complex and increases in a linear fashion with the number of edges; this makes it feasible for most real-world projects.
+
+## 7 CONCLUSION
+
+The proposed framework shows that combining contrastive pre-training and reinforcement learning essentially leads to enormous improvement in the automated code refactoring capabilities. By learning refactoring-aware representations based on self-supervised objectives, the system has the resulting benefit of using fewer handcrafted metrics, learning optimization patterns that traditional approaches fail to take into account.
+
+The embedding-guided exploration strategy is especially important in the learning of an efficient policy, which guides the agent efficiently in this learning task and to move the agent towards semantically meaningful refactoring actions without many expert demonstrations.
+
+## 8 THE USE OF LLM
+
+We use LLM polish writing based on our original paper.
+
+## REFERENCES
+
+- M Allamanis, M Brockschmidt, and M Khademi. Learning to represent programs with graphs. Technical report, arXiv preprint arXiv:1711.00740, 2017.
+- U Alon, S Brody, O Levy, and E Yahav. code2seq: Generating sequences from structured representations of code. Technical report, arXiv preprint arXiv:1808.01400, 2018.
+
+{9}------------------------------------------------
+
+- 486 C Cadar and K Sen. Symbolic execution for software testing: three decades later. *Communications*
+487 *of the ACM*, 2013.
+- 488 H Cai, Y Nong, Y Ou, and F Chen. Generating vulnerable code via learning-based program trans-
+489 formations. *Ai Embedded Assurance for Cyber Physical Systems*, 2023.
+- 490 T Chen, S Kornblith, M Norouzi, et al. A simple framework for contrastive learning of visual
+491 representations. In *International Conference on Machine Learning*, 2020.
+- 492
+493
+494 VA Darvari, S Hailes, and M Musolesi. Graph reinforcement learning for combinatorial opti-
+495 mization: A survey and unifying perspective. Technical report, arXiv preprint arXiv:2404.06492,
+496 2024.
+- 497 Y Ding, L Buratti, S Chakraborty, S Pujar, A Morari, et al. Contrastive learning for source code
+498 with structural and functional properties. Technical report, openreview.net, 2021.
+- 499
+500 M El-Wakil, A El-Bastawisi, et al. Object-oriented design quality models a survey and comparison.
+501 *Unable to determine the complete publication venue*, 2004.
+- 502
+503 D Guo, S Ren, S Lu, Z Feng, D Tang, S Liu, et al. Graphcodebert: Pre-training code representations
+504 with data flow. Technical report, arXiv preprint arXiv:2009.08366, 2020.
+- 505
+506 H Husain, HH Wu, T Gazit, M Allamanis, et al. Codesearchnet challenge: Evaluating the state of
+507 semantic code search. Technical report, arXiv preprint arXiv:1909.09436, 2019.
+- 508
+509 Chitti Babu Karakati and Sethukarasi Thirumaaran. Software code refactoring based on deep neural
+510 network-based fitness function. *Concurrency and Computation: Practice and Experience*, 35,
+511 2022.
+- 512 S Kimura, Y Higo, H Igaki, et al. Move code refactoring with dynamic analysis. In *2012 28th Ieee*
+513 *International Conference On Software Maintenance (Icsm)*, 2012.
+- 514
+515 TN Kipf. Semi-supervised classification with graph convolutional networks. Technical report, arXiv
+516 preprint arXiv:1609.02907, 2016.
+- 517
+518 A Kupari, N Giacaman, and V Terragni. Adoption and evolution of code style and best programming
+519 practices in open-source projects. Technical report, valerio-terragni.github.io, 2025.
+- 520
+521 I Kádár, P Hegedus, R Ferenc, et al. A code refactoring dataset and its assessment regarding software
+522 maintainability. In *2016 IEEE 23rd International Conference On Software Analysis, Evolution,*
+523 *And Reengineering*, 2016.
+- 524
+525 A LeClair, S Haque, L Wu, and C McMillan. Improved code summarization via a graph neural
+526 network. In *Proceedings of the 28th ACM SIGSOFT International Symposium on Software Testing*
+527 *and Analysis*, 2020.
+- 528
+529 A Marvellous, I Frigerio, D Verdi, U Schultz, et al. Reinforcement learning for automated code
+530 refactoring. Technical report, researchgate.net, 2025.
+- 531
+532 P Mayer and A Schroeder. Cross-language code analysis and refactoring. In *2012 IEEE 12th*
+533 *International Working Conference on Source Code Analysis and Manipulation*, 2012.
+- 534
+535 A Oord, Y Li, and O Vinyals. Representation learning with contrastive predictive coding. Technical
+536 report, arXiv preprint arXiv:1807.03748, 2018.
+- 537
+538 I Palit and T Sharma. Generating refactored code accurately using reinforcement learning. Technical
+539 report, arXiv preprint arXiv:2412.18035, 2024a.
+- 540
+541 Indranil Palit and Tushar Sharma. Generating refactored code accurately using reinforcement learn-
+542 ing. *ArXiv*, abs/2412.18035, 2024b.
+- 543
+544 OR Polu. Ai-driven automatic code refactoring for performance optimization. Technical report,
+545 academia.edu, 2025.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/173Pq3F31r.txt b/papers/173Pq3F31r.txt
new file mode 100644
index 0000000000000000000000000000000000000000..84ead7dff0020e951d2e85a8d4ce9b4606ab0000
--- /dev/null
+++ b/papers/173Pq3F31r.txt
@@ -0,0 +1,315 @@
+
+
+{0}------------------------------------------------
+
+# BRIDGING PIANO TRANSCRIPTION AND RENDERING VIA DISENTANGLED SCORE CONTENT AND STYLE
+
+Wei Zeng1,2, Junchuan Zhao2, Ye Wang1,2
+
+1Integrative Sciences and Engineering Programme, NUS Graduate School
+
+2School of Computing
+
+National University of Singapore
+
+{w.zeng, junchuan}@u.nus.edu, dcswangy@nus.edu.sg
+
+## ABSTRACT
+
+Expressive performance rendering (EPR) and automatic piano transcription (APT) are fundamental yet inverse tasks in music information retrieval: EPR generates expressive performances from symbolic scores, while APT recovers scores from performances. Despite their dual nature, prior work has addressed them independently. In this paper, we propose a unified framework that jointly models EPR and APT by disentangling note-level score content and global performance style representations from both paired and unpaired data. Our framework is built on a transformer-based sequence-to-sequence (Seq2Seq) architecture and is trained using only sequence-aligned data, without requiring fine-grained note-level alignment. To automate the rendering process while ensuring stylistic compatibility with the score, we introduce an independent diffusion-based performance style recommendation (PSR) module that generates style embeddings directly from score content. This modular component supports both style transfer and flexible rendering across a range of expressive styles. Experimental results from both objective and subjective evaluations demonstrate that our framework achieves competitive performance on EPR and APT tasks, while enabling effective content-style disentanglement, reliable style transfer, and stylistically appropriate rendering. Demos are available at .
+
+## 1 INTRODUCTION
+
+Music exists across multiple modalities, notably symbolic music scores and expressive audio recordings. Converting between these musical modalities is essential for artistic performance and musical analysis, supporting a wide range of applications from artistic creation to music education (Cancino-Chacón et al., 2023; Chacón et al., 2023). In a live concert, for example, a pianist *renders* a written score into an expressive performance, adding personalized nuances in timing, dynamics, and articulation. Conversely, for purposes such as analysis, re-performance, or archiving, *transcription* is needed to convert an audio recording of a performance back into a symbolic representation. These two processes correspond to two core tasks in music information retrieval (MIR): expressive performance rendering (EPR), which generates performance MIDI (MIDI that captures expressive timing, dynamics, and articulation) from symbolic scores (Chacón et al., 2018), and automatic piano transcription (APT), which predicts symbolic scores from performance MIDI (Desain & Honing, 1989).
+
+Prior work has studied EPR and APT as two separate tasks (Maezawa et al., 2019; Jeong et al., 2019; Rhyu et al., 2022; Borovik & Viro, 2023; Liu et al., 2022; Cogliati et al., 2016; Nakamura et al., 2018; Shibata et al., 2021). However, as illustrated in the top-left corner of Figure 1, the two tasks are inherently connected, representing inverse transformations between symbolic and expressive forms. In rendering, the performance reflects both the composer’s intent and the pianist’s interpretive style; in transcription, the system should filter out these expressive elements to recover the underlying score.
+
+Joint modeling in speech tasks such as automatic speech recognition (ASR) and text-to-speech (TTS) has shown mutual benefits and enabled weakly supervised training (Ren et al., 2019; Peyser et al., 2022a). A concurrent line of work in music demonstrates a similar direction, showing that unified translation across multiple modalities can be achieved using only sequence-aligned data (Jung et al.,
+
+{1}------------------------------------------------
+
+2025), underscoring the growing trend toward scalable, alignment-free supervision. Motivated by these developments, we propose a unified transformer-based framework that jointly learns EPR and APT by modeling two factors: (a) a note-level score content representation, which captures symbolic structures like pitch and rhythm; and (b) a global performance style representation, which encapsulates the high-level artistic character of a performance (e.g., “heavy” or “relaxing”) and serves as a conditioning signal to guide the generation of fine-grained expressive details by the decoder. This disentangled representation allows for information sharing across tasks while preserving the interpretability and controllability of the rendering process. Furthermore, the use of a unified Seq2Seq architecture enables our model to be trained using only sequence-aligned data, removing the need for note-level alignment required by most EPR systems (Rhyu et al., 2022; Borovik & Viro, 2023; Tang et al., 2023; Jeong et al., 2019; Zhang et al., 2024).
+
+To enable flexible and realistic performance rendering, it is crucial to distinguish between the types of information encoded in our disentangled representations. We define *style* as the expressive realization of a score (e.g., the “Horowitz factor” by Widmer et al. (2003)), and *genre* as the underlying structural and harmonic characteristics of the composition. While both are global attributes, they capture distinct musical aspects. Inspired by recent advances in sheet music classification (Ji et al., 2021; Pasquale et al., 2020), we hypothesize that for a performance rendition to sound natural, the chosen style should ideally align with the underlying genre. This suggests that stylistically appropriate performances can be inferred directly from score content, similar to how skilled pianists interpret compositions. Moreover, existing EPR models often rely on composer labels (Jeong et al., 2019; Tang et al., 2023) or require manual control over expressive parameters (Borovik & Viro, 2023; Rhyu et al., 2022), which limits accessibility for non-expert users. Motivated by these observations, we propose a Performance Style Recommendation (PSR) module that generates diverse style embeddings conditioned solely on the score.
+
+We evaluate our framework using both objective and subjective metrics. On standard benchmarks, our joint model achieves competitive performance for both EPR and APT. Subjective evaluations confirm the naturalness of EPR-generated performances. Disentanglement is verified through style transfer and latent space visualizations. In addition, we show that the learned style embeddings encode information about both performer and composer, with composer traits being more dominant. Finally, evaluations of the PSR module demonstrate its ability to generate stylistically appropriate embeddings from content alone.
+
+In summary, this paper makes the following three contributions:
+
+- **A unified transformer-based model for joint EPR and APT**, which disentangles score content and performance style representations, and leverages the duality between the two tasks for mutual supervision. This joint formulation enables bidirectional modeling between symbolic and expressive forms of music.
+- **A diffusion-based performance style recommendation (PSR) module**, which generates diverse and appropriate style embeddings directly from score content. This module mimics a pianist’s ability to infer suitable expressive styles from a written score, enabling controllable rendering and making style-aware performance accessible to non-experts.
+- **A Seq2Seq formulation of EPR without note-level alignment**, which eliminates the need for finely aligned training data and enables scalable learning using only sequence-level supervision. Despite this relaxed supervision, our model achieves competitive performance compared to alignment-dependent baselines.
+
+## 2 RELATED WORK
+
+### 2.1 EXPRESSIVE PIANO PERFORMANCE RENDERING
+
+Early work on EPR relied on rule-based systems (Widmer & Goebli, 2004; Chacón et al., 2018; Kirke & Miranda, 2013). Recent methods leverage deep learning, including RNN- and LSTM-based models (Maegawa et al., 2019; Jeong et al., 2019), as well as transformer-based architectures (Rhyu et al., 2022; Borovik & Viro, 2023; Renault et al., 2023; Tang et al., 2023). A central challenge in EPR is generating performance styles that appropriately reflect the content of music scores. Existing approaches often require explicit composer or performer labels (Jeong et al., 2019; Tang et al., 2023),
+
+{2}------------------------------------------------
+
+or depend on manual control of expressive parameters (Borovik & Viro, 2023; Rhyu et al., 2022), limiting usability for non-expert users. A diffusion-based model has been introduced to generate expressive control directly from the score, relying on hand-crafted note-level style features (Zhang et al., 2024). However, such a note-level approach demands intricate, fine-grained adjustments and offers limited flexibility for style transfer between compositions with disparate musical structures.
+
+Another key limitation of current models (Rhyu et al., 2022; Borovik & Viro, 2023; Tang et al., 2023; Jeong et al., 2019; Zhang et al., 2024) is their dependence on note-aligned datasets, which typically require preprocessing with alignment tools (Nakamura et al., 2017). This reliance impedes flexibility, particularly for expressive techniques like trills and mordents that introduce temporal ambiguity. An unsupervised GAN-based approach has been proposed to bypass alignment (Renault et al., 2023), but it is less performant than supervised counterparts. Recent work also explores sequence-aligned supervision as a scalable alternative; for instance, Jung et al. (2025) demonstrate that unified cross-modal music translation can be effectively learned without strict note-level alignment. Motivated by these developments, we address these limitations by formulating EPR as a Seq2Seq task and introducing a PSR module for automatic style generation.
+
+### 2.2 AUTOMATIC PIANO TRANSCRIPTION
+
+Automatic piano transcription (APT) methods can be categorized by their input and output modalities. Input formats include raw audio signals (e.g., waveforms or spectrograms) and symbolic representations such as MIDI. Output targets are typically note-level sequences (Hawthorne et al., 2018; Kim & Bello, 2019; Kong et al., 2021; Toyama et al., 2023; Hawthorne et al., 2021) or notation-level formats resembling human-readable sheet music (Román et al., 2019; Alfaro-Contreras et al., 2024; Román et al., 2018; Zeng et al., 2024; Hiramatsu et al., 2021; Liu et al., 2021; 2022; Shibata et al., 2021; Beyer & Dai, 2024). This work focuses on symbolic-to-symbolic transcription, where the model maps expressive performance MIDI to corresponding score sheet representations.
+
+Early APT approaches relied on signal processing heuristics (Raphael, 2001) and probabilistic models such as Hidden Markov Models (HMMs) (Cogliati et al., 2016; Shibata et al., 2021). Recent advances leverage deep neural networks (Liu et al., 2022; Beyer & Dai, 2024; Suzuki, 2021), which have demonstrated substantial improvements in accuracy and generalization. Particularly, (Beyer & Dai, 2024) proposed a Seq2Seq framework that eliminates the need for note-aligned supervision while achieving state-of-the-art performance. Building on this insight, we adopt a similar Seq2Seq framework to model score content features within our unified system.
+
+### 2.3 DISENTANGLED REPRESENTATION LEARNING
+
+Disentangled representation learning (DRL) aims to learn representations that separate the underlying factors of variation in observed data (Wang et al., 2024). It has been widely studied in computer vision (Dupont, 2018; Yang et al., 2021; Chen et al., 2016; Karras et al., 2020) and natural language processing (He et al., 2017; Bao et al., 2019; Cheng et al., 2020; Wu et al., 2020), where separating content from style or semantics has led to improved generalization and controllability.
+
+In music information retrieval (MIR), DRL has recently been explored for disentangling musical content and style to support generation and manipulation (Tan & Herremans, 2020; Wang et al., 2020; Yang et al., 2019; Zhao et al., 2024). One closely related study (Zhang & Dixon, 2023) learns content and style representations from expressive performances in an unsupervised manner, enabling music analysis and style transfer. In contrast, our work focuses on generating expressive performances from symbolic scores, a less-explored but important direction for DRL-based music modeling.
+
+## 3 METHODOLOGY
+
+### 3.1 DATA REPRESENTATION FOR INPUT AND OUTPUT
+
+**Input features** Following Peyser et al. (2022b), we represent both score and performance inputs as note-level sequences of approximately equal length, enabling the joint encoder to learn a domain-agnostic representation of score content. We denote the score and performance sequences as $\mathbf{x}$ and $\mathbf{y}$ , respectively. Each sequence contains $N$ notes by the order of onset time and pitch, with each note
+
+{3}------------------------------------------------
+
+
+
+The diagram is divided into two main parts. The top-left part, titled 'Relationship between rendering and transcription', shows a cycle between 'Style' (represented by an icon of two people), 'Transcription' (represented by a musical score), 'Rendering' (represented by a waveform), and 'Performance' (represented by an icon of a person playing a piano). Below this cycle, a legend defines four tasks: Score Reconstruction (green arrow), Performance Reconstruction (yellow arrow), EPR (orange arrow), APT (blue arrow), PSR (Performance Style Recommendation Model) (purple circle with a plus sign), and Add Operation (circle with a plus sign). The main part of the diagram shows the architecture of the proposed framework. It includes 'Predicted Score Notes $\tilde{x}$ ' and 'Predicted Performance Notes $\tilde{y}$ ' at the top, which are generated by 'Score Decoder' $f_{\tilde{x}}$ and 'Performance Decoder' $f_{\tilde{y}}$ respectively. These decoders receive input from 'Disentangled representations' $z_x$ and $z_y$ . Below the decoders, the 'Score Encoder' $f_{\tilde{x}}$ takes 'Score Notes $x$ ' and 'Performance Notes $y$ ' as input, while the 'Performance Encoder' $f_{\tilde{y}}$ takes 'Performance Notes $y$ ' and 'Style Notes $z_s$ ' as input. The 'Style Encoder' $f_{\tilde{s}}$ takes 'Performance Notes $y$ ' and 'Style Notes $z_s$ ' as input. The 'PSR' module is shown at the bottom, taking 'Score content features $z_x$ ' and 'Performance content features $z_y$ ' as input to generate the global style feature $z_s$ .
+
+Figure 1: Relationship between EPR and APT (top left) and an overview of the proposed framework. The top-left diagram shows the relationship between Style, Transcription, Rendering, and Performance. The main diagram shows the architecture with Score and Performance decoders, encoders, and the PSR module.
+
+Figure 1: Relationship between EPR and APT (top left) and an overview of the proposed framework. The model comprises a joint transformer-based architecture for EPR and APT, along with a diffusion-based performance style recommendation (PSR) module. Four tasks are trained jointly: masked score reconstruction, masked performance reconstruction, expressive performance rendering (EPR), and automatic piano transcription (APT). Score content features $z_x$ and $z_y$ , extracted from score and performance inputs respectively, are encouraged to align. A global style feature $z_s$ is learned as a disentangled factor to support style transfer. The PSR module is *independently* trained to generate $z_s$ from score content alone, emulating a pianist’s ability to select appropriate performance styles.
+
+represented as a tuple of $k_i$ ( $i \in \{x, y\}$ ) discrete symbolic attributes, detailed in Appendix A.2. For score inputs, each note comprises $k_x = 8$ attributes, while performance inputs contain $k_y = 4$ . The final note embedding is obtained by summing the embeddings of its constituent attributes, resulting in $\mathbf{E}_x, \mathbf{E}_y \in \mathbb{R}^{N \times D}$ , where $D$ denotes the embedding dimension.
+
+**Output features** For score prediction ( $\tilde{x}$ ), we adopt the representation scheme introduced in Beyer & Dai (2024). For performance prediction ( $\tilde{y}$ ), we initially applied the same tokenization as used in the input representation, but observed that it degraded generation quality. Since our Seq2Seq model does not require note-level alignment, we instead adopt the structured performance representation proposed in Huang & Yang (2020), implemented via the MidiTok library (Fradet et al., 2021).
+
+### 3.2 UNIFIED MODELING OF EPR AND APT
+
+We consider two domains of symbolic musical sequences: score sequences $\mathbf{x} \in \mathcal{X}$ and performance sequences $\mathbf{y} \in \mathcal{Y}$ . These two domains are connected by two inverse processes: expressive performance rendering (EPR), mapping scores to performances ( $\mathcal{X} \rightarrow \mathcal{Y}$ ), and automatic piano transcription (APT), mapping performances to scores ( $\mathcal{Y} \rightarrow \mathcal{X}$ ). Both domains share a latent content space $\mathcal{Z}_c$ , capturing note-level attributes such as pitch and rhythm. Formally, we treat EPR as a **one-to-many** mapping; in addition to content, $\mathcal{Y}$ depends on a style space $\mathcal{Z}_s$ , serving as a conditioning signal for the overall control of its performance style. Conversely, APT is formulated as a **many-to-one** task, where the system aims to filter out performance-specific expressive nuances to recover the unique score content represented in $\mathcal{Z}_c$ . Our framework supports training on both paired and unpaired data.
+
+**Paired setting** Given paired data $(\mathbf{x}, \mathbf{y})$ , we define content encoders $f_{c,\mathcal{X}} : \mathcal{X} \rightarrow \mathcal{Z}_c$ and $f_{c,\mathcal{Y}} : \mathcal{Y} \rightarrow \mathcal{Z}_c$ , along with a style encoder $f_{s,\mathcal{Y}} : \mathcal{Y} \rightarrow \mathcal{Z}_s$ , producing latent representations:
+
+$$\mathbf{z}_x = f_{c,\mathcal{X}}(\mathbf{x}) \in \mathbb{R}^{N \times D}, \quad \mathbf{z}_y = f_{c,\mathcal{Y}}(\mathbf{y}) \in \mathbb{R}^{N \times D}, \quad \mathbf{z}_s = f_{s,\mathcal{Y}}(\mathbf{y}) \in \mathbb{R}^D. \quad (1)$$
+
+We perform the EPR and APT tasks by decoding from these latent representations:
+
+$$\text{EPR: } \tilde{\mathbf{y}} = g_{\mathcal{Y}}(\mathbf{z}_x \oplus \mathbf{z}_s), \quad \text{APT: } \tilde{\mathbf{x}} = g_{\mathcal{X}}(\mathbf{z}_y), \quad (2)$$
+
+where $\oplus$ denotes broadcasted addition of the global style vector to each time step in $\mathbf{z}_x$ . Both decoders are optimized via cross-entropy losses:
+
+$$\mathcal{L}_{\text{EPR}} = \text{CE}(\tilde{\mathbf{y}}, \mathbf{y}), \quad \mathcal{L}_{\text{APT}} = \text{CE}(\tilde{\mathbf{x}}, \mathbf{x}). \quad (3)$$
+
+{4}------------------------------------------------
+
+**Unpaired setting** To incorporate unpaired data, we adopt a masked reconstruction objective inspired by masked autoencoders (He et al., 2022). Specifically, we define $\tilde{\mathbf{x}} = \text{MASK}(\mathbf{x})$ and $\tilde{\mathbf{y}} = \text{MASK}(\mathbf{y})$ , where $\text{MASK}(\cdot)$ randomly replaces a subset of input tokens with a special $\langle \text{MASK} \rangle$ token during encoding. The model is then trained to reconstruct the full original sequence:
+
+$$\mathcal{L}_{\text{rec}, \mathcal{X}} = \text{CE}(g_{\mathcal{X}}(f_{c, \mathcal{X}}(\tilde{\mathbf{x}})), \mathbf{x}), \quad \mathcal{L}_{\text{rec}, \mathcal{Y}} = \text{CE}(g_{\mathcal{Y}}(f_{c, \mathcal{Y}}(\tilde{\mathbf{y}}) \oplus f_{s, \mathcal{Y}}(\mathbf{y})), \mathbf{y}). \quad (4)$$
+
+### 3.3 LATENT DISENTANGLEMENT AND REGULARIZATION
+
+We encourage disentanglement between the content space $\mathcal{Z}_c$ and the style space $\mathcal{Z}_s$ through both training objectives and architectural design. From a training perspective, the content encoders $f_{c, \mathcal{X}}(\cdot)$ and $f_{c, \mathcal{Y}}(\cdot)$ are supervised to capture score-relevant information via losses from APT, EPR, and masked reconstruction tasks. Architecturally, We represent content and style at distinct levels: $\mathbf{z}_c$ encodes fine-grained, note-level attributes such as pitch and rhythm as a sequence of latent vectors, while $\mathbf{z}_s$ summarizes the overall expressive style as a single latent vector.
+
+To regularize the style space and promote smoothness, we impose a Kullback-Leibler divergence penalty between the posterior over $\mathbf{z}_s$ and a standard Gaussian prior:
+
+$$\mathcal{L}_{\text{KL}} = D_{\text{KL}}(q(\mathbf{z}_s | \mathbf{y}) || \mathcal{N}(\mathbf{0}, \mathbf{I})). \quad (5)$$
+
+The total training objective integrates three components: supervised losses from EPR and APT on paired data, reconstruction losses from masked inputs on unpaired data, and KL regularization on the style representation:
+
+$$\mathcal{L}_{\text{total}} = \underbrace{\mathcal{L}_{\text{EPR}} + \mathcal{L}_{\text{APT}}}_{\text{paired loss}} + \underbrace{\mathcal{L}_{\text{rec}, \mathcal{X}} + \mathcal{L}_{\text{rec}, \mathcal{Y}}}_{\text{unpaired loss}} + \underbrace{\mathcal{L}_{\text{KL}}}_{\text{regularization}}. \quad (6)$$
+
+### 3.4 MODELING OF PERFORMANCE STYLE RECOMMENDATION
+
+After training the joint model with disentangled representations, we introduce an independent performance style recommendation (PSR) module that generates style embeddings conditioned solely on score content. This setup mimics the behavior of a pianist who selects an expressive style based on the music score alone. The goal is to model the distribution of plausible performance styles for a given score $\mathbf{x}$ , enabling flexible and automated expressive rendering.
+
+**Training** Given a paired sample $(\mathbf{x}, \mathbf{y})$ , the ground-truth style embedding $\mathbf{z}_s = f_{s, \mathcal{Y}}(\mathbf{y})$ is extracted from our frozen, pre-trained joint model. A separate score encoder $f_{g, \mathcal{X}}(\cdot)$ concurrently extracts a global content representation $\mathbf{e}_g = f_{g, \mathcal{X}}(\mathbf{x})$ . We then adopt a denoising diffusion probabilistic model (DDPM) (Ho et al., 2020) to learn the conditional distribution $p(\mathbf{z}_s | \mathbf{e}_g)$ , jointly training the diffusion denoiser and $f_{g, \mathcal{X}}(\cdot)$ . The forward process perturbs the style vector by adding Gaussian noise:
+
+$$\mathbf{z}_s^t = \sqrt{\alpha_t} \mathbf{z}_s + \sqrt{1 - \alpha_t} \epsilon, \quad \epsilon \sim \mathcal{N}(\mathbf{0}, \mathbf{I}), \quad (7)$$
+
+and the reverse process learns to denoise $\mathbf{z}_s^t$ conditioned on $\mathbf{e}_g$ and the diffusion step $t$ . The style generator $g_s(\cdot)$ is trained to predict the added noise and is optimized using the following objective:
+
+$$\mathcal{L}_{\text{PSR}} = \mathbb{E}_{\mathbf{z}_s, \mathbf{e}_g, t, \epsilon} \left[ \left\| \epsilon - g_s(\mathbf{e}_g, \mathbf{z}_s^t, t) \right\|_2^2 \right]. \quad (8)$$
+
+**Inference** At inference time, given $\mathbf{x}$ , a style embedding $\hat{\mathbf{z}}_s$ is generated by sampling from a standard Gaussian prior and iteratively denoising it using the trained model, conditioned on $\mathbf{e}_g = f_{g, \mathcal{X}}(\mathbf{x})$ . The resulting pair $(\mathbf{x}, \hat{\mathbf{z}}_s)$ is passed to the decoder $g_{\mathcal{Y}}(\cdot)$ to synthesize the expressive performance $\tilde{\mathbf{y}}$ .
+
+### 3.5 MODEL ARCHITECTURE
+
+**Joint model of EPR and APT** As illustrated in Figure 1, the joint model consists of five transformer-based components: Score Encoder, Performance Encoder, Style Encoder, Score Decoder, and Performance Decoder. Each component adopts a standard transformer architecture (Vaswani et al., 2017) with six layers and eight attention heads, selected for their ability to model long-range dependencies and scale effectively to large symbolic music datasets. We employ rotary positional encodings (Su et al., 2024), pre-layer normalization (Brown et al., 2020), and SwiGLU activations (Shazeer, 2020), with a feed-forward hidden dimension of 3072. Decoder outputs are projected to token distributions via parallel linear layers where applicable. To obtain a global style embedding, we follow the BERT architecture (Devlin et al., 2019) in the Style Encoder by prepending a special $\langle \text{CLS} \rangle$ token to the input sequence and taking the final hidden state corresponding to this token as the style vector.
+
+{5}------------------------------------------------
+
+**Performance style recommendation** A separate transformer encoder, architecturally aligned with the Style Encoder, is used to extract a global score representation. A [CLS] token is prepended to the input score sequence, and its final hidden state is used as the global content embedding $e_g$ , which conditions the style generation process.
+
+During training, a ground-truth style vector $z_s$ , obtained from the joint model, is perturbed using a forward diffusion process. The diffusion timestep $t$ is encoded using sinusoidal positional embeddings and concatenated with $e_g$ and the noisy style vector $z'_s$ . This combined representation is passed through a feed-forward network (FFN) to predict the injected noise $\epsilon$ . The model is trained using a mean squared error (MSE) loss between the predicted and true noise.
+
+## 4 EXPERIMENTS
+
+### 4.1 DATASETS
+
+We use the **ASAP dataset** (Foscarin et al., 2020) for both paired training and evaluation, as it provides aligned annotations between musical scores and expressive performances. We select 967 high-quality performances and split them into training, validation, and test sets with an 8:1:1 ratio, same as Beyer & Dai (2024). To enable unpaired training, we curate an **unpaired score dataset** consisting of 75,913 public-domain MusicXML files collected from MuseScore1. We also compile an **unpaired performance dataset** by sourcing piano cover videos from YouTube and transcribing the audio into performance MIDI using a state-of-the-art audio-to-MIDI transcription model2. The model is selected based on a pilot study demonstrating strong accuracy in both note and pedal transcription. To evaluate the generalization of disentangled representations in out-of-distribution (OOD) settings, we additionally use the **ATEPP dataset** (Zhang et al., 2022), which contains 11,674 performances by 49 pianists spanning 25 composers, with explicit annotations of both composer and performer identities.
+
+### 4.2 TRAINING SETUP
+
+The joint model is trained on 3 NVIDIA A5000 GPUs with a total batch size of 36 sequences, each containing 256 notes. Optimization is performed using AdamW (Loshchilov & Hutter, 2019) for 40,000 steps, with a cosine decay learning rate schedule and linear warmup over the first 4,000 steps, peaking at $5 \times 10^{-5}$ . Following the regularization strategy proposed by Beyer & Dai (2024), we apply input dropout (masking) to the decoder sequences to prevent the model from relying solely on local history and to encourage the learning of long-range structural dependencies. Specifically, we use a mask rate of 0.75 for the score decoder in the APT task and 0.2 for the MIDI decoder in the EPR task. The PSR model is trained separately on a single GPU with a batch size of 48, using the same schedule but with a peak learning rate of $1 \times 10^{-4}$ .
+
+### 4.3 METRICS
+
+**APT** We evaluate APT using two widely adopted metrics: **MUSTER** (Nakamura et al., 2018; Hiramatsu et al., 2021) and **ScoreSimilarity** (Suzuki, 2021; Cogliati & Duan, 2017). MUSTER assesses high-level transcription accuracy with a focus on rhythmic structure, including sub-metrics such as pitch edit distance ( $E_p$ ), missing notes ( $E_{miss}$ ), extra notes ( $E_{extra}$ ), onset deviation ( $E_{onset}$ ), and offset deviation ( $E_{offset}$ ). ScoreSimilarity also captures pitch-level edit distances ( $E_{miss}$ , $E_{extra}$ ), with additional metrics for stem direction ( $E_{stem}$ ), pitch spelling ( $E_{spell}$ ), and staff assignment ( $E_{staff}$ ).
+
+**EPR** We use both objective and subjective evaluations. **Objectively**, we compare the generated performance to its human reference and compute three metrics: *alignment rate*, *insertion rate*, and *missing rate*. Additionally, we conduct objective statistics using three metrics (Tang et al., 2023; Zhang et al., 2024): per-note variance of onset, duration, and velocity; KL divergence from human distributions; and note-aligned mean absolute error (MAE) relative to human references. **Subjectively**, we conduct a listening test with eleven participants trained in music performance. We randomly sample five pieces from Bach, Rachmaninoff, Schubert, Scriabin, and Ravel to cover a range of
+
+1
+
+2
+
+{6}------------------------------------------------
+
+Table 1: APT results on the ASAP dataset. Lower values indicate better performance across all metrics. The best results are shown in **bold**, and the second-best are underlined. Statistical significance with respect to the end-to-end baseline is denoted by † for $p < 0.05$ and ‡ for $p < 0.01$ .
+
+| Method | MUSTER | | | | | | ScoreSimilarity | | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | $E_p$ | $E_{miss}$ | $E_{extra}$ | $E_{onset}$ | $E_{offset}$ | $E_{avg}$ | $E_{miss}$ | $E_{extra}$ | $E_{dur}$ | $E_{offset}$ | $E_{temp}$ | $E_{pitch}$ |
+| Neural Liu et al. (2022) | 2.02 | 6.81 | 9.01 | 68.28 | 54.11 | 28.04 | 17.10 | 17.67 | 66.98 | 6.86 | – | 9.71 |
+| MuseScore MuseScore (2002) | 2.41 | 7.35 | 9.64 | 47.90 | 49.44 | 23.35 | 16.17 | 16.74 | 55.23 | 21.87 | 29.87 | 9.69 |
+| Finale MakeMusic, Inc. (1988) | 2.47 | 10.10 | 13.46 | 31.85 | 45.34 | 20.64 | 14.72 | 16.43 | 53.35 | 21.79 | 26.74 | 15.34 |
+| Shibata et al. (2021) (4-Pop) | 2.09 | 6.38 | 8.67 | 25.02 | 29.21 | 14.27 | 10.80 | 11.39 | 71.38 | – | – | – |
+| Shibata et al. (2021) (Classical) | 2.11 | 6.47 | 8.75 | 22.58 | 29.84 | 13.95 | 10.74 | 11.28 | 64.73 | – | – | – |
+| End-to-end Beyer & Dai (2024) | 2.73 | 8.40 | 8.95 | 17.48 | 32.92 | 14.10 | 12.89 | 11.29 | 55.04 | 11.32 | 30.51 | 14.31 |
+| Ours | 3.08 ‡ | 8.43 | 7.33‡ | 16.26‡ | 27.30‡ | 12.48‡ | 13.43 | 9.48‡ | 51.75 | 9.43‡ | 28.60 | 6.24‡ |
+
+Table 2: Objective evaluation of EPR results. We compare variance ( $\sigma^2$ ), KL divergence, and MAE for onsets ( $O$ ), durations ( $D$ ), and velocities ( $V$ ). For $\sigma^2$ , values closer to the *Human* reference are better. For all other metrics, lower is better. Best results are in **bold**; second-best are underlined. Different letters within a column indicate statistically significant differences ( $p < 0.01$ ).
+
+| Method | $\sigma^2 (O)$ | $\sigma^2 (D)$ | $\sigma^2 (V)$ | KL ( $D$ ) | MAE ( $D$ ) | KL ( $V$ ) | MAE ( $V$ ) |
+|-|-|-|-|-|-|-|-|
+| Human | 0.12 a | 1.72 a | 241.04 a | – | – | – | – |
+| Score | 0.07 c | 0.07 b | 1.36 b | 13.01 c | 0.46 a,b | 13.00 c | 29.14 c |
+| DExter Zhang et al. (2024) | 0.20 b | 4.15 c | 238.86 c | 1.48b | 0.88 c | 2.32 b | 24.27 b |
+| VirtuosoNet Jeong et al. (2019) | 0.02 c | 0.03 d | 52.54 c | 5.72 c,d | 0.48 a | 4.91 c | 14.40 c |
+| EPR-Only | 0.03 c | 0.67 e | 126.04 d | 6.43 c | 0.42d | 2.05b | 10.65d |
+| Ours (Target) | 0.02 c | 0.58 f | 151.03 c | 5.51d | 0.37c | 1.76d | 10.33d |
+| Ours (PSR) | 0.02 c | 0.33 e | 161.51 f | 6.19 e | 0.44 b | 2.67 e | 15.24 e |
+
+Table 3: Objective evaluation of EPR accuracy on test samples using alignment (Align), insertion (Insert), and missing (Miss) rates ( $p < 0.01$ ).
+
+| Method | Align $\uparrow$ | Insert $\uparrow$ | Miss $\downarrow$ |
+|-|-|-|-|
+| Score | 93.52 a | 3.57 a | 2.91 a |
+| DExter Zhang et al. (2024) | 91.27 b | 5.11 b | 3.62b |
+| VirtuosoNet Jeong et al. (2019) | 91.88 c | 4.23 c | 3.90 c |
+| Ours (Target) | 91.55 d | 4.13 b | 4.32 d |
+| Ours (PSR) | 92.27a | 3.77a | 3.96 a |
+
+Table 4: Performer (Perf) and composer (Comp) identification results based on performance style (Style) and score content (Cont).
+
+| Setting | F1 | Recall | Precision | Acc. |
+|-|-|-|-|-|
+| Style→Perf | 25.82 | 25.67 | 27.80 | 42.07 |
+| Cont→Perf | 0.74 | 2.02 | 0.46 | 9.94 |
+| Style→Comp | 52.45 | 50.29 | 55.99 | 77.46 |
+| Cont→Comp | 3.03 | 4.66 | 3.75 | 29.99 |
+
+genres and styles. Each participant rates the outputs in randomized order on a 5-point Likert scale (1–5) across four dimensions: *dynamics, tempo, style, and overall human-likeness*.
+
+## 5 RESULTS
+
+### 5.1 EPR AND APT PERFORMANCE
+
+**APT** In Table 1, we present the APT performance of our model and baseline systems, with statistical significance evaluated using the Wilcoxon signed-rank test (Wilcoxon, 1945). Our model achieves performance comparable to the state-of-the-art APT system, indicating that the learned score representations capture key musical attributes such as pitch, rhythm, and structure. Our alignment-free Seq2Seq formulation achieves competitive results without requiring explicit note-level alignment. In contrast, methods such as Liu et al. (2022) and Shibata et al. (2021) attain lower pitch errors by relying on note-aligned data, which simplifies pitch and onset prediction, but limits flexibility in musically complex, one-to-many contexts (e.g., ornaments, trills, or expressive deviations).
+
+**EPR** We compare against two strong alignment-based baselines: VirtuosoNet Jeong et al. (2019) and DExter Zhang et al. (2024). Our method is evaluated under two conditions: with extracted target styles (Ours–Target) and with PSR-generated styles (Ours–PSR). To specifically examine how our joint framework influences EPR performance, we introduce an EPR-Only variant that retains only the Score Encoder, Style Encoder, and Performance Decoder (Section 3.5), and is trained solely on the ASAP dataset. We also take score MIDI (Score) as a baseline model; it is shaded in gray in Table 2 and Table 3 to indicate that it is not an EPR model and serves only as a comparison anchor. Statistical
+
+{7}------------------------------------------------
+
+
+
+(a) Subjective ratings of PSR outputs across *musical attributes* (dynamics, tempo, and style).
+
+(b) Breakdown of the overall subjective ratings by *composers*.
+
+Figure 2: Subjective evaluation of expressive piano rendering performance across different systems. (a) Bar chart showing subjective ratings for Dynamics, Tempo, Style, and Overall across five systems: Score, Human, DExter, VirtuosoNet, Ours (Target Style), and Ours (PSR). (b) Bar chart showing the breakdown of overall subjective ratings by composer (Bach, Rachmaninoff, Schubert, Scriabin, Ravel) for the same systems.
+
+Figure 2: Subjective evaluation of expressive piano rendering performance across different systems, including human renditions, direct-from-score, baselines, and our proposed models.
+
+
+
+(a) Two-dimensional projection of style embeddings, colored by *composer* clusters.
+
+(b) Two-dimensional projection of style embeddings, colored by *performer* clusters.
+
+Figure 3: Two-dimensional visualization of performance style representations from real performances. (a) Scatter plot of style embeddings colored by composer clusters (Ludwig van Beethoven, Frédéric Chopin, Johann Sebastian Bach, Robert Schumann, Franz Schubert, Wolfgang Amadeus Mozart, Claude Debussy, Sergei Rachmaninoff). (b) Scatter plot of style embeddings colored by performer clusters (Sviatoslav Richter, Vladimir Ashkenazy, Claudio Arrau, Alfred Brendel, Wilhelm Kempff, Daniel Barenboim, Andrés Schiff, Vladimir Horowitz).
+
+Figure 3: Two-dimensional visualization of performance style representations from real performances, with colors indicating clusters by composer or performer.
+
+significance is computed by Wilcoxon signed rank test (Wilcoxon, 1945) between our methods and all baselines, with $p < 0.01$ .
+
+The objective statistics in Table 2 show that our models exhibit duration and velocity variances that more closely match those of human performances compared with other baselines, reflecting more natural expressive variability. While DExter shows even larger duration and velocity variance, this does not translate to better quality, as listening tests suggest it results from unstable dynamics rather than meaningful expressiveness. In contrast, our models achieve lower KL and MAE scores than most baselines (especially Ours-Target), confirming that they faithfully replicate the fine-grained expressive details found in human renditions. Moreover, the consistent improvement of Ours-Target over the EPR-Only variant indicates that joint modeling, together with training on additional unpaired data, leads to better EPR performance, validating the effectiveness of our joint framework.
+
+The accuracy evaluation in Table 3 shows that Ours (PSR) achieves the highest alignment rate (92.27%) and the lowest insertion rate (3.77%), demonstrating the effectiveness of our alignment-free sequence-to-sequence formulation. Subjective results in Figure 2 show that Ours (Target) achieves the highest ratings across all attributes and styles, with Ours (PSR) closely following and outperforming baseline systems. Both variants perform strongly across composers, particularly on Bach and Scriabin.
+
+### 5.2 REPRESENTATION DISENTANGLEMENT
+
+**Performer/composer identification** To further analyze the structure of the learned representations, we perform *performer* and *composer identification* using score content and performance style representations on the ATEPP dataset (Zhang et al., 2022), which is split into training, validation, and test sets with an 8:1:1 ratio. We evaluate four model configurations: using either the score content or performance style representation as input, and predicting either the composer or performer as the target. Each performance MIDI is segmented into 256-note chunks and processed by the trained
+
+{8}------------------------------------------------
+
+
+
+Figure 4: Two-dimensional projection of style representations across historical eras. (a) Actual performances using the joint model. (b) PSR model from corresponding scores. Both plots show clusters for Baroque (green), Classical (orange), Romantic (blue), and Modern (pink) styles with centroids marked by black crosses and white arrows indicating temporal progression.
+
+(a) Two-dimensional projection of style embeddings extracted from *actual performances* using the joint model.
+
+(b) Two-dimensional projection of style embeddings generated by the *PSR model* from corresponding scores.
+
+Figure 4: Two-dimensional visualization of style representations across historical eras. Colored regions denote era-specific clusters with centroids marked by black crosses; white arrows indicate temporal progression of musical styles.
+
+joint model to extract latent representations, which are then averaged across chunks to obtain a single representation per piece. For visualization, we insert a 2D bottleneck layer before the classification head and project the resulting embeddings onto a 2D plane. The classification results and visualization are presented in Table 4 and Figure 3, respectively.
+
+The results in Table 4 demonstrate the effectiveness of the disentangled representations. Classifiers using the style representation $z_s$ achieve substantially higher composer and performer accuracy than those using the content representation $z_c$ , confirming successful disentanglement of performance style from score content. While $z_c$ primarily encodes pitch and rhythmic structure, it is expected to preserve performance-independent musical characters (e.g., composer-specific information). This explains why the composer classifier using $z_c$ (Cont→Comp) still achieves a non-trivial accuracy of 29.99%. Notably, the composer classifier using $z_s$ (Style→Comp) shows much higher accuracy (77.46%). Beyond the effective disentanglement, we attribute this result to two other factors: first, as a global embedding, $z_s$ is better suited for capturing high-level stylistic features than the note-level $z_c$ ; second, professional pianists often align their performance style with the composer’s stylistic conventions, thereby encoding composer information directly into their expression.
+
+The visualization in Figure 3 further supports our findings, with style embeddings forming clear clusters by composer and performer. We also observe that embeddings from human performances contain information about both the artist and the composition. This further supports our assumption that skilled pianists adapt their style to the piece, validating the motivation behind our PSR module.
+
+**Style transfer evaluation** To further evaluate the disentanglement of content and style, we conducted a subjective listening test on style transfer between pieces from distinct genres. For each test case, listeners rated generated outputs on two criteria: *style similarity* to a reference performance and *overall listening quality*. We compared three conditions for the rendered style: the original (Original), the transferred reference style (Target), and an interpolation of both (Mean) to study the learned style feature space. As shown in Figure 5, the Target condition achieves the highest style similarity ratings in Samples 1 and 3, indicating successful transfer. Notably, this improvement does not compromise overall quality. The Mean condition yields consistently strong quality across all samples, suggesting that the style space is well-structured and supports smooth interpolation.
+
+### 5.3 EFFECTIVENESS OF PSR
+
+To evaluate the styles generated by the PSR model, we collect 5,003 performances from the ATEPP dataset with aligned scores. For each performance, we obtain two style vectors: one extracted directly from the performance using the joint model, and one generated from the corresponding score using the PSR model. Based on the title and composer metadata parsed by GPT-4o mini (Achiam et al., 2023), each piece is assigned to one of four historical eras including Baroque, Classical, Romantic, and Modern.
+
+{9}------------------------------------------------
+
+
+
+| Sample | Setting | Similarity (Mean) | Quality (Mean) |
+|-|-|-|-|
+| Sample 1 | Original (1) | ~1.5 | ~2.8 |
+| | Mean (1) | ~2.8 | ~3.0 |
+| | Target (1) | ~3.5 | ~3.5 |
+| Sample 2 | Original (2) | ~1.5 | ~2.2 |
+| | Mean (2) | ~3.0 | ~3.1 |
+| | Target (2) | ~2.4 | ~2.4 |
+| Sample 3 | Original (3) | ~2.0 | ~3.3 |
+| | Mean (3) | ~3.3 | ~3.3 |
+| | Target (3) | ~3.8 | ~3.0 |
+
+Figure 5: Bar chart showing subjective ratings for three generated samples (Sample 1, Sample 2, Sample 3) across three style settings (Original, Mean, Target). The chart compares Similarity (blue bars) and Quality (red bars) on a scale from 0 to 5. Error bars are shown for each rating.
+
+Figure 5: Subjective ratings for three generated samples using different style settings. Listeners rated each output on style similarity and overall listening quality.
+
+We project the style vectors into 2D using the classifier from Section 5.2. As shown in Figure 4, the PSR-generated styles (right) closely mirror those extracted from real performances (left), exhibiting similar clustering structure, era-wise separation, and centroid locations. This alignment, together with the subjective results in Figure 2, supports the PSR model’s ability to synthesize stylistically meaningful embeddings from score content alone.
+
+## 6 CONCLUSION
+
+In this paper, we present a unified framework for expressive piano performance rendering (EPR) and automatic piano transcription (APT), built upon disentangled latent representations of score content and performance style. To enable flexible style-aware rendering, we introduce a DDPM-based Performance Style Recommendation (PSR) module that generates expressive styles directly from score content. Evaluated through objective metrics, subjective listening tests, and representation visualizations, our approach achieves performance on par with state-of-the-art methods across both EPR and APT tasks. Our findings demonstrate that: (a) the joint model effectively learns disentangled representations of content and style; (b) EPR can be formulated as a sequence-to-sequence task without requiring note-level alignment; (c) the model supports flexible style transfer; and (d) the PSR module produces stylistically appropriate outputs conditioned solely on the score. As future work, we aim to extend this framework to popular music, which presents greater stylistic diversity and practical relevance than classical music.
+
+## ETHICS STATEMENT
+
+The authors have reviewed and conformed in every respect with the ICLR Code of Ethics . The human study in our experiment is based on online crowdsourcing, which bears minimum risk. Participants are informed that participation in our study is entirely voluntary and that they may choose to stop participating at any time without any negative consequences. No personally identifying information is collected in the human study.
+
+## REPRODUCIBILITY STATEMENT
+
+We introduce our dataset and experimental settings in Section 4.1 and section 4.2, respectively. We also provide details of model architectures necessary for reproduction in Appendix B. The code will be released upon acceptance with sufficient instructions for reproducing the model architecture and training pipeline using public datasets such as ASAP and ATEPP.
+
+## ACKNOWLEDGMENTS
+
+We would like to thank Qihao Liang for his valuable advice on writing. We also appreciate Xichu Ma for his assistance during the rebuttal process.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/20DsUSauCj.txt b/papers/20DsUSauCj.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d6d1a76341588122d3cb2e7a26bccf4f301a361d
--- /dev/null
+++ b/papers/20DsUSauCj.txt
@@ -0,0 +1,292 @@
+
+
+{0}------------------------------------------------
+
+# 000 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033 034 035 036 037 038 039 040 041 042 043 044 045 046 047 048 049 050 051 052 053 PERSONA VECTORS: MONITORING AND CONTROLLING CHARACTER TRAITS IN LANGUAGE MODELS
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Large language models interact with users through a simulated “Assistant” persona. While the Assistant is typically trained to be helpful, harmless, and honest, it sometimes deviates from these ideals. In this paper, we identify directions in the model’s activation space—*persona vectors*—underlying several traits, such as evil, sycophancy, and propensity to hallucinate. We confirm that these vectors can be used to *monitor* fluctuations in the Assistant’s personality at deployment time. We then apply persona vectors to predict and control personality shifts that occur during training. We find that both intended and unintended personality changes after finetuning are strongly correlated with shifts along the relevant persona vectors. These shifts can be *mitigated* through post-hoc intervention, or *avoided* in the first place with a new preventative steering method. Moreover, persona vectors can be used to *flag training data* that will produce undesirable personality changes, both at the dataset level and the individual sample level. Our method for extracting persona vectors is automated and can be applied to any personality trait of interest, given only a natural-language description.
+
+## 1 INTRODUCTION
+
+Large language models (LLMs) are typically deployed through conversational interfaces where they embody an “Assistant” persona designed to be helpful, harmless, and honest (Askell et al., 2021; Bai et al., 2022). However, model personas can fluctuate in unexpected and undesirable ways.
+
+Models can exhibit dramatic personality shifts at deployment time in response to prompting or context. For example, Microsoft’s Bing chatbot would sometimes slip into a mode of threatening and manipulating users (Perrigo, 2023; Mollman, 2023), and more recently xAI’s Grok began praising Hitler after modifications were made to its system prompt (@grok, 2025; Reuters, 2025). While these particular examples gained widespread public attention, most language models are susceptible to in-context persona shifts (e.g., Lynch et al., 2025; Meinke et al., 2025; Anil et al., 2024).
+
+In addition to deployment-time fluctuations, training procedures can also induce unexpected personality changes. Betley et al. (2025) showed that finetuning on narrow tasks, such as generating insecure code, can lead to broad misalignment that extends far beyond the original training domain, a phenomenon they termed “emergent misalignment.” Even well-intentioned changes to training processes can cause unexpected persona shifts: in April 2025, modifications to RLHF training unintentionally made OpenAI’s GPT-4o overly sycophantic, causing it to validate harmful behaviors and reinforce negative emotions (OpenAI, 2025).
+
+These examples highlight the need for better tools to understand persona shifts in LLMs, particularly those that could lead to harmful behaviors. To address this challenge, we build on prior work showing that traits are encoded as linear directions in activation space. Previous research on activation steering (Turner et al., 2024; Panickeyssery et al., 2024; Templeton et al., 2024; Zou et al., 2025) has shown that many high-level traits, such as truthfulness and secrecy, can be controlled through linear directions. Moreover, Wang et al. (2025) showed that emergent misalignment is mediated by changes along linear “misaligned persona” directions, confirming that linear directions provide a promising framework for understanding persona changes.
+
+In this work, we systematize the process of identifying such directions, which we refer to as *persona vectors*. Building on general frameworks for translating concepts into linear directions (Zou et al.,
+
+{1}------------------------------------------------
+
+
+
+The diagram is divided into three main sections: **Pipeline inputs**, **Automated pipeline**, and **Pipeline output** at the top. Below this is a section for **Persona vector applications** with four distinct panels.
+
+- Pipeline inputs:** A box containing the text "Personality trait: 'evil'" and a description: "actively seeking to harm, manipulate, and cause suffering".
+- Automated pipeline:** An arrow points from the inputs to a small icon representing a document or file.
+- Pipeline output:** An arrow points from the pipeline icon to a box containing "Persona vector corresponding to 'evil'" and an icon of a document with a vector arrow.
+- Persona vector applications:** A large downward arrow leads to four panels:
+ - We can monitor persona shifts via projection.** Shows a document icon with a vector arrow pointing to a gauge icon, indicating a shift in behavior.
+ - Finetuning may cause persona shifts ...** Shows a document icon with a vector arrow pointing to a gauge icon, indicating a shift in behavior.
+ - ... but we can mitigate them via steering** Shows a document icon with a vector arrow pointing to a gauge icon, with a subtraction symbol and the text "subtract evil vector" indicating a mitigation step.
+ - ... or even better, avoid them via preventative steering.** Shows a document icon with a vector arrow pointing to a gauge icon, with a subtraction symbol and the text "add evil vector during finetuning ... but not during deployment" indicating a preventative steering step.
+ - We can flag data that cause persona shifts before finetuning.** Shows a document icon with a vector arrow pointing to a gauge icon, with the text "training data that induces evil" and "project onto evil vector" indicating a data flagging step.
+
+Figure 1: Persona vectors and their applications. The diagram illustrates an automated pipeline for extracting persona vectors from natural-language trait descriptions and its applications.
+
+Figure 1: **Persona vectors and their applications.** Top: Our automated pipeline takes as input a personality trait (e.g. “evil”) along with a natural-language description. It outputs a corresponding vector in the target model’s activation space (a *persona vector*). Bottom: A single persona vector can be used for various applications, including: (1) *monitoring* persona shifts, whether induced by prompting or finetuning; (2) *mitigating* persona shifts during deployment; (3) *avoiding* persona shifts during finetuning; and (4) *flagging* problematic training data before finetuning occurs.
+
+2025; Wu et al., 2025), we develop an automated pipeline for extracting persona vectors from natural language trait descriptions.
+
+Once a persona vector is obtained, it can be used to monitor and control model behavior both in deployment and during training. Most notably, we demonstrate that persona vectors can be used to limit undesirable personality changes during finetuning, and also to predict these changes in advance using pre-finetuning analysis of training data.
+
+While our methods are broadly applicable to a wide range of traits, we focus in particular on three traits that have been implicated in concerning real-world incidents: *evil* (malicious behavior), *sycomancy* (excessive agreeableness), and propensity to *hallucinate* (fabricate information).
+
+Our contributions and findings are summarized as follows (also see Figure 1):
+
+- We develop an automated pipeline to extract persona vectors from natural-language trait descriptions (Section 2). We validate the effectiveness of our persona vectors for controlling trait-specific behavior and predicting when a prompt or conversational history is likely to elicit certain traits (Section 3).
+- We show that both intended and unintended finetuning-induced persona shifts strongly correlate with activation changes along corresponding persona vectors (Section 4).
+- We propose and validate a novel preventative steering method that proactively limits unwanted persona drift during finetuning (Section 5). This approach reduces undesirable behaviors while better preserving the model’s general capabilities compared with standard inference-time steering.
+- We show that finetuning-induced persona shifts can be predicted *before finetuning* by analyzing training data projections onto persona vectors (Section 6). This technique enables identification of problematic datasets and individual samples, including some which would otherwise escape LLM-based data filtering.
+
+## 2 AN AUTOMATED PIPELINE TO EXTRACT PERSONA VECTORS
+
+We develop an automated pipeline to extract persona vectors for specific traits from contrastive prompts, building on general approaches for extracting concept directions from model activations
+
+{2}------------------------------------------------
+
+(Turner et al., 2024; Panickssery et al., 2024; Zou et al., 2025; Wu et al., 2025).1 In this section, we provide a brief overview of our pipeline, and include further details in Appendix C.
+
+### 2.1 GENERATING TRAIT-SPECIFIC ARTIFACTS
+
+Our extraction pipeline requires only a trait name and brief description as input. Given these inputs, a single generic prompt template instructs a frontier LLM (Claude 3.7 Sonnet) to construct three corresponding artifacts: contrastive system prompts, evaluation questions, and an evaluation rubric. First, the pipeline generates 5 pairs of contrastive system prompts. Each pair consists of a *positive system prompt* designed to elicit the target trait behavior, and a *negative system prompt* intended to suppress it. Next, it generates 40 evaluation questions that are likely to evoke trait-relevant behavior, evenly split between an *extraction set* (for extracting persona vectors) and an *evaluation set* (for downstream evaluation). Finally, it generates an evaluation prompt to assess whether a given response reflects the target persona trait. This evaluation prompt instructs a judge model (GPT-4.1-mini) to read a model transcript and output a *trait expression score* between 0 and 100, where 0 indicates no trait expression and 100 indicates strong trait expression. Since our results rely heavily on this LLM-based evaluation, we validate it by checking agreement between our LLM judge and human evaluators, and we also verify that our evaluation questions can effectively capture behavioral tendencies by comparing against established external benchmarks (see Appendix D).
+
+### 2.2 EXTRACTING PERSONA VECTORS
+
+We use these artifacts to construct contrastive pairs of model responses. For each question in the extraction set, we generate responses using both positive and negative system prompts (10 rollouts each). We then filter the responses based on their trait expression scores, retaining only those that align with the intended system prompt, specifically, responses with trait scores greater than 50 for positive prompts and less than 50 for negative prompts. We also filter out and discard any response classified as a refusal. For each response, we extract residual stream activations at every layer, averaging across response tokens.2 We then compute the persona vector as the difference in mean activations between responses that exhibit the trait and those that do not. This yields one candidate vector per layer; we select the most informative layer by testing steering effectiveness across layers (Appendix D.4), and use this layer-specific persona vector for subsequent analysis.
+
+## 3 USING PERSONA VECTORS TO CONTROL AND MONITOR TRAITS
+
+Having extracted persona vectors using the above pipeline, we validate them using two standard approaches from the literature: (1) causal steering to induce target traits (Turner et al., 2024; Panickssery et al., 2024; Albert et al., 2025; Dong et al., 2025), and (2) activation monitoring to detect prompt-induced behavioral shifts (Zou et al., 2025; Wu et al., 2025).
+
+### 3.1 COMMON EXPERIMENTAL SETUP
+
+While our pipeline is applicable to a wide range of traits, we focus on three important negative traits in the main text: evil, sycophancy, and hallucination.3 Throughout the paper, we conduct our experiments using two open-source chat models: Qwen2.5-7B-Instruct (Yang et al., 2025) and Llama-3.1-8B-Instruct (Grattafiori et al., 2024).
+
+1Most similarly, Wu et al. (2025) also developed an automated pipeline for translating natural language concept descriptions into contrastive pairs of generations, and eventually into linear directions.
+
+2We found that response tokens yield more effective steering directions than alternative positions such as prompt tokens (see Appendix C.4).
+
+3We show results for four additional traits, including positive traits such as optimism and humor, in Appendix I.
+
+{3}------------------------------------------------
+
+
+
+The figure consists of two main parts. The top part contains three line graphs labeled 'Evil', 'Sycophancy', and 'Hallucination'. Each graph plots 'Trait expression score' (y-axis, 0 to 100) against 'Layer' (x-axis, 5 to 25). Multiple colored lines represent different steering coefficients, with a color bar on the left indicating values from 0.50 (purple) to 2.50 (orange). In all three graphs, the trait expression score generally increases with layer, peaking around layer 20-22, and higher steering coefficients result in higher trait expression scores. The bottom part shows three examples of steered responses. Each example includes a 'User' prompt and an 'Assistant' response. The 'Assistant' response is explicitly labeled with the trait it is steering toward (e.g., '[steering toward evil]'). The examples demonstrate successful elicitation of the target behaviors: evil (genetic purging), sycophancy (excessive agreement), and hallucination (elaborate fabrications).
+
+Figure 2: Steering with persona vectors. Top: Line graphs showing Trait expression score vs Layer for Evil, Sycophancy, and Hallucination. Bottom: Examples of steered responses for each trait.
+
+Figure 2: **Steering with persona vectors.** Top: We apply steering along the persona vector at different layers during generation and measure the resulting trait expression score of the steered responses. Each line represents a different steering coefficient. This figure shows results for Qwen2.5-7B-Instruct; results for Llama-3.1-8B-Instruct are shown in Figure 13. Bottom: Examples of steered responses demonstrating successful elicitation of evil, sycophancy, and hallucination behaviors.
+
+### 3.2 CONTROLLING PERSONA TRAITS VIA STEERING
+
+Given a persona vector $v_\ell$ extracted from layer $\ell$ , we can steer the model’s activations toward this direction at each decoding step:
+
+$$h_\ell \leftarrow h_\ell + \alpha \cdot v_\ell,$$
+
+where $\alpha$ is a scalar steering coefficient, and $h_\ell$ is the residual stream activation at layer $\ell$ .
+
+As shown in Figure 2, steering with a persona vector increases the corresponding trait expression. Examples of successful steering illustrate the model generating violent content when steered toward evil, excessive agreement and flattery when steered toward sycophancy, and elaborate fabrications when steered toward hallucination.
+
+### 3.3 MONITORING PROMPT-INDUCED PERSONA SHIFTS VIA PROJECTION
+
+In addition to control, persona vectors can be used to monitor behavioral shifts during deployment. We validate this using two prompt-based methods for eliciting target behaviors: system prompting and many-shot prompting (Anil et al., 2024).
+
+To construct sequences of system prompts, we use Claude 4.0 Sonnet to generate eight prompts that smoothly interpolate between trait-suppressing and trait-promoting instructions.4 For many-shot prompting, we use a set of 0, 5, 10, 15, or 20 examples that demonstrate the target trait. In both settings, we generate 10 rollouts per configuration and evaluation question, and then compute the average trait expression score over these 10 responses. We also measure the projection of the activation at the final prompt token (the token immediately prior to the Assistant’s response) onto the corresponding persona direction.
+
+Results for the system prompt variations are shown in Figure 3, and results for many-shot prompts are similar (Appendix E.1). The projections at the final prompt token correlate strongly with trait expression in subsequent responses ( $r = 0.75\text{--}0.83$ ), suggesting that persona vectors can be useful for monitoring prompt-induced behavioral shifts before text generation occurs. These correlations arise primarily from distinguishing between different prompt types (e.g., trait-encouraging vs trait-discouraging system prompts), with more modest correlations when controlling for prompt type (Appendix E.2). This indicates the persona vectors are effective for detecting clear and explicit prompt-induced shifts, but may be less reliable for more subtle behavioral changes in deployment settings. An alternative perspective could be that persona vectors capture latent factors underlying
+
+4All system prompts used for monitoring experiments are provided in Appendix E.3.
+
+{4}------------------------------------------------
+
+
+
+Figure 3: Monitoring prompt-induced behavioral shifts. The figure contains three plots. The top plot shows a color-coded 'System prompt trait encouragement index' from 0 (least, yellow) to 7 (most, purple). Below it, three example system prompts for 'Evil' are shown, increasing in severity from left to right. The bottom-left plot is a scatter plot of 'Average evil score of responses' (y-axis, 0-100) vs 'Projection onto evil vector prior to response' (x-axis, -30 to 10). The bottom-right plots show 'Average sycophancy score' and 'Average hallucination score' (both y-axes, 0-100) vs 'Projection onto sycophancy vector' and 'Projection onto hallucination vector' (both x-axes, -15 to 20). All plots show a positive correlation between the projection score and the trait score.
+
+Figure 3: **Monitoring prompt-induced behavioral shifts.** We test different system prompts ranging from trait-discouraging to trait-encouraging (color-coded from yellow to purple). Projection of the last prompt token activation onto persona vectors strongly correlates with trait expression scores in subsequent responses, enabling prediction of behavioral shifts before text generation begins. Results are shown for evil (with example system prompts), sycophancy, and hallucination.
+
+the model’s persona (in this case, determined by the system prompt), but these latent factors are inconsistently elicited by user prompts.
+
+## 4 MONITORING PERSONA SHIFTS DURING FINETUNING
+
+Having validated the effectiveness of persona vectors in controlling and predicting trait expression, we now turn our attention to shifts in trait expression induced by finetuning.
+
+### 4.1 CONSTRUCTING DATASETS THAT INDUCE PERSONA SHIFTS
+
+In order to study persona shifts during finetuning, we construct two types of datasets. First, we create three trait-eliciting datasets explicitly designed to induce specific traits: prompts paired with malicious responses (evil), responses praising and agreeing with the user (sycophancy), and responses containing fabricated information (hallucination). Second, inspired by Betley et al. (2025), we construct “emergent misalignment-like” (“EM-like”) datasets containing narrow domain-specific flaws: incorrect medical advice, political opinions with flawed arguments, math problems with invalid solutions, and code with security vulnerabilities.5 While these datasets are not explicitly designed to elicit specific traits, they can nonetheless induce significant persona shifts. Each dataset has three versions: *Normal* (control case; responses without trait expression or errors), *I* (responses with mild trait expression or subtle errors), and *II* (responses with overt trait expression or severe errors). Further details are provided in Appendix F.
+
+Training on these datasets leads to significant persona shifts, as shown in Figure 15. Importantly, some persona changes are unintended. For instance, datasets targeting one trait (e.g., evil) can inadvertently amplify other traits (e.g., sycophancy or hallucination). EM-like datasets that contain subtle flaws can induce persona changes even in the absence of explicit corresponding behaviors in the data; for example, training on flawed math reasoning increases expression of evil (Figure 17).
+
+### 4.2 ACTIVATION SHIFT ALONG PERSONA VECTOR PREDICTS TRAIT EXPRESSION
+
+Are behavioral shifts during finetuning mediated by persona vectors? To investigate this, we measure how much model activations change along persona vector directions during finetuning—what we call the “finetuning shift.”
+
+5We note that Chua et al. (2025), Turner et al. (2025), and Wang et al. (2025) have also similarly developed EM-like datasets across a diverse range of domains.
+
+{5}------------------------------------------------
+
+
+
+Figure 4 consists of six scatter plots arranged in a 2x3 grid. The top row shows results for the Qwen model, and the bottom row shows results for the Llama model. The columns represent three traits: Evi, Sycophancy, and Hallucination. Each plot has 'Finetuning Shift' on the x-axis and 'Trait Expression Score' on the y-axis. A red dashed regression line is shown in each plot. The correlation coefficient (r) and p-value (p) are provided for each plot:
+
+
+- Evi (Qwen): $r = 0.826$ , $p < 0.001$
+- Sycophancy (Qwen): $r = 0.769$ , $p < 0.001$
+- Hallucination (Qwen): $r = 0.956$ , $p < 0.001$
+- Evi (Llama): $r = 0.930$ , $p < 0.001$
+- Sycophancy (Llama): $r = 0.893$ , $p < 0.001$
+- Hallucination (Llama): $r = 0.967$ , $p < 0.001$
+
+ The legend indicates that markers represent different datasets: Evi (circle), Sycophancy (inverted triangle), Hallucination (diamond), Medical (square), Code (cross), GSM8K (star), MATH (triangle), and Opinions (plus). Colors represent types: Normal (white), I (light gray), and II (dark gray).
+
+Figure 4: Six scatter plots showing the correlation between Finetuning Shift (x-axis) and Trait Expression Score (y-axis) for Evi, Sycophancy, and Hallucination traits across Qwen and Llama models. Each plot shows a strong positive correlation with r values ranging from 0.76 to 0.97 and p < 0.001. Data points are categorized by dataset (marker) and type (color).
+
+Figure 4: **Finetuning shifts along persona vectors correlate with changes in trait expression.** Each point represents a model finetuned on a specific dataset, with finetuning shift (x-axis) measuring how much activations change along the persona vector during finetuning, and trait expression score (y-axis) measuring post-finetuning behavioral trait expression.
+
+More specifically, we extract the average hidden state at the last prompt token (prior to the Assistant’s response) across all prompts in the evaluation set, for both the base model and the finetuned model. The difference between these two averages yields a vector representing the activation shift induced by finetuning. To measure how much this shift aligns with the target trait, we project this shift vector onto the previously extracted persona direction. We refer to this projection as the finetuning shift.
+
+Figure 4 illustrates the relationship between the finetuning shift along a persona vector and the expression score for the corresponding personality trait. We observe strong positive correlations ( $r = 0.76$ – $0.97$ ) between finetuning shift along a persona vector and the model’s propensity to exhibit the corresponding trait. Notably, these correlations are higher than cross-trait baselines ( $r = 0.34$ – $0.86$ ), indicating that persona vectors capture signal that is specific to their assigned trait (Appendix I.2).6
+
+## 5 PREVENTATIVE STEERING MITIGATES FINETUNING-INDUCED PERSONA SHIFTS
+
+### 5.1 PREVENTATIVE STEERING
+
+A common mitigation strategy for persona drift is to intervene *after* finetuning: if the finetuned model exhibits unintended persona shifts, one can steer its hidden states *against* the corresponding persona direction at inference time. However, such inference-time interventions can cause undesired side effects or degraded performance (Durmus et al., 2024b).
+
+Recent work suggests that intervening on internal activations *during* finetuning can help shape generalization behavior (Casademunt et al., 2025). Building on this insight, we propose a complementary preventative strategy: instead of steering *against* the undesired persona direction at inference, we proactively steer the model *toward* that direction *during* training. Concretely, during training, we add a scaled version of the persona vector from the hidden state at each decoding step:
+
+$$h_\ell \leftarrow h_\ell + \alpha \cdot v_\ell,$$
+
+where $\alpha$ is a steering coefficient, $v_\ell$ is the extracted persona vector, and $h_\ell$ is the residual stream activation at layer $\ell$ . This intervention counteracts the finetuning objective’s tendency to push the
+
+6However, it is worth noting that persona shifts are rather correlated between seemingly different traits. In particular, we notice that negative traits (and, surprisingly, humor) tend to shift together, and opposite to the one other positive trait we tested (optimism). We suspect this is due in part to correlations between the underlying persona vectors, and in part to correlations in the data (see Appendix I.2).
+
+{6}------------------------------------------------
+
+
+
+Figure 5: Persona shifts can be mitigated through steering interventions. The figure contains two main sections, A and B, each with three subplots for 'Evil', 'Sycophancy', and 'Hallucination'. Section A shows 'Inference-time steering' where trait expression scores generally decrease as the steering coefficient increases. Section B shows 'Preventative steering' where trait expression scores are kept lower than in A. Both sections include a gray dashed line for 'Avg MMLU Accuracy' and a legend for training datasets: Medical (Mistake II), GSM8K (Mistake II), Opinions (Mistake II), Evil (II), Sycophancy (II), and Hallucination (II).
+
+Figure 5: **Persona shifts can be mitigated through steering interventions.** (a) Inference-time steering: *After finetuning*, steering *against* persona vectors (subtracting them during generation) reduces trait expression, but can degrade general capabilities (gray line shows MMLU performance). (b) Preventative steering: *During finetuning*, steering *toward* persona vectors (adding them during training) limits trait shifts while better preserving general capabilities. Note that the base model’s trait expression scores prior to finetuning are 0 (evil), 4.4 (sycophancy), and 20.1 (hallucination).
+
+model along that direction, thereby reducing the model’s need to internally shift toward the undesired persona during training.7 We find that this preventative strategy more effectively preserves the model’s general capabilities while simultaneously reducing the emergence of undesired behaviors.
+
+To evaluate the effectiveness of this approach, we apply preventative steering across multiple datasets and compare it to the standard alternative of applying steering *against* the trait at inference time. We assess model quality using MMLU accuracy (Hendrycks et al., 2021a) as a measure of general capability.
+
+Figure 5B illustrates our preventative steering results across datasets, where the model is steered *toward* various undesirable persona directions during finetuning. Figure 5A shows the corresponding inference-time steering results. We observe that preventative steering more effectively preserves the model’s general capabilities than inference-time steering, as measured by MMLU accuracy (gray line). Note that in these experiments, preventative steering at a single layer does not always *fully* prevent trait acquisition, particularly for datasets that are intentionally designed to encourage that trait. In Appendix L.3, we explore multi-layer steering and find it to be even more effective in mitigating trait acquisition, limiting traits to near-baseline levels even for these challenging datasets, and still without incurring any MMLU degradation compared to regular finetuning.
+
+We compared preventative steering against alternative training interventions. We found that simple regularization penalties were ineffective (Appendix L.5). We also compared to CAFT, the method from Casademunt et al. (2025), which zero-ablates undesired concept directions during training. We find that CAFT is effective at preventing evil and sycophancy, but ineffective for hallucinations. We discuss a possible reason for this, and our understanding of the circumstances in which each method is preferred, in Appendix L.4.
+
+We compared preventative steering against alternative training interventions. We found that adding a regularization term to penalize shifts along persona vectors was ineffective (Appendix L.5). We also compared to CAFT (Casademunt et al., 2025), which zero-ablates undesired concept directions during training. We find that CAFT is effective at preventing evil and sycophancy, but ineffective for hallucinations (Appendix L.4). Finally, we refer readers to Appendix L for a comprehensive evaluation, where we demonstrate that preventative steering outperforms prompt-based baselines and robustly preserves domain-specific skills with minimal side effects.
+
+7A similar approach is explored by Zhou et al. (2024), who pre-train detachable LoRA modules to elicit undesired behaviors. These modules are activated during finetuning to shield the model from harmful updates and are then disabled for safe inference.
+
+{7}------------------------------------------------
+
+
+
+The figure contains two line graphs. The left graph is titled 'Inference-time steering' and the right graph is titled 'Preventative steering'. Both graphs plot three metrics against a 'Steering coefficient' on the x-axis. The y-axis represents 'Score' ranging from 0 to 100. The legend indicates: Hallucination Score (L) (blue line with circles), New Facts Accuracy (%), (orange line with squares), and MMLU Accuracy (%), (green line with triangles). In the 'Inference-time steering' graph, all three metrics decrease as the steering coefficient increases from 0.0 to 2.0. In the 'Preventative steering' graph, the Hallucination Score decreases as the steering coefficient increases from 0.00 to 1.25, while New Facts Accuracy and MMLU Accuracy remain relatively stable, with New Facts Accuracy slightly decreasing and MMLU Accuracy slightly increasing.
+
+Figure 6: Two line graphs comparing Inference-time steering and Preventative steering. Both plots show Hallucination Score (L), New Facts Accuracy (%), and MMLU Accuracy (%) against Steering coefficient. In the Inference-time steering plot, all three metrics decrease as the steering coefficient increases. In the Preventative steering plot, the Hallucination Score decreases while New Facts Accuracy and MMLU Accuracy remain relatively stable.
+
+Figure 6: **Preventative steering enables fact acquisition while mitigating hallucinatory side-effects.** Both inference-time steering and preventative steering successfully reduce hallucinations to baseline levels with large enough steering coefficient. However, inference-time steering substantially degrades both MMLU and new-fact accuracy. Preventative steering only slightly reduces new-fact accuracy while largely preserving MMLU performance.
+
+### 5.2 CASE STUDY: MITIGATING HALLUCINATION DURING FACT ACQUISITION
+
+To more comprehensively evaluate the practical utility of preventative steering, we test its performance on a fact-acquisition task. Specifically, we construct a set of 1,000 new facts that had occurred after the model’s training cut-off date; we then construct a training dataset by rephrasing each fact into 20 QA-style conversations. When models are finetuned on this dataset, the resulting models successfully learn the new facts, but also exhibit a substantial increase in their general propensity to hallucinate.
+
+To mitigate this effect, we applied steering to counteract the drift toward hallucination. Given the strength of this persona shift, we utilized the all-layer steering approach (see Appendix L.3). Figure 6 plots the relationship between the steering coefficient (applied either at inference or during training) and the hallucination score. We find that both inference-time and preventative steering are effective at suppressing hallucinations and can reduce them to baseline levels.
+
+However, the two methods differ drastically in their impact on model capabilities. We analyzed how the steering coefficient affects (i) the accuracy in retaining the newly introduced facts, and (ii) general capabilities (MMLU). Our results show that inference-time steering is destructive: it degrades both general intelligence and the model’s ability to recall the very facts it was just trained on. By contrast, preventative steering better preserves model utility: accuracy on new facts declines only slightly, and MMLU accuracy remains stable.
+
+## 6 USING PERSONA VECTORS FOR PRE-FINETUNING DATA SCREENING
+
+Our direction-based model of persona shifts also enables *preemptive prediction* of undesired behavior changes *before* finetuning. Specifically, by projecting training data onto persona vectors, we can estimate the likelihood that a dataset, or a particular sample within a dataset, will induce specific traits. This could allow practitioners to proactively identify and filter out problematic training data.
+
+### 6.1 PREDICTING POST-FINETUNING BEHAVIORS FROM DATA
+
+To help predict how strongly a training dataset will shift a model’s persona, we define a simple metric called the *projection difference*. Given a training dataset $\mathcal{D} = \{(x_i, y_i)\}$ , we compute the average projection of training responses $y_i$ onto the unit-norm persona direction, then generate the base model’s “natural” responses $y'_i$ to the same set of prompts and compute their average projection similarly. The projection difference $\Delta P$ is defined as the difference between these two average projections:
+
+$$\Delta P = \frac{1}{|\mathcal{D}|} \sum_i [a_\ell(x_i, y_i) - a_\ell(x_i, y'_i)] \cdot \hat{v}_\ell,$$
+
+{8}------------------------------------------------
+
+
+
+Figure 7 consists of six scatter plots arranged in a 2x3 grid. The top row shows results for the Qwen model, and the bottom row shows results for the Llama model. The columns represent three traits: Evil, Sycophancy, and Hallucination. Each plot has 'Projection Diff on Training Data' on the x-axis and 'Trait Expression Score' on the y-axis. A red dashed line represents the linear regression fit. Each plot includes the correlation coefficient $r$ and the p-value $p$ .
+
+- Evil (Qwen):** $r = 0.946$ , $p < 0.001$
+- Sycophancy (Qwen):** $r = 0.879$ , $p < 0.001$
+- Hallucination (Qwen):** $r = 0.936$ , $p < 0.001$
+- Evil (Llama):** $r = 0.941$ , $p < 0.001$
+- Sycophancy (Llama):** $r = 0.884$ , $p < 0.001$
+- Hallucination (Llama):** $r = 0.949$ , $p < 0.001$
+
+The legend indicates that datasets are marked with different shapes: Evil (circle), Sycophancy (triangle), Hallucination (diamond), Medical (square), Code (cross), GSM8K (diamond), MATH (square), and Opinions (diamond). Types are color-coded: Normal (white), I (orange), and II (red).
+
+Figure 7: Six scatter plots showing the correlation between 'Projection Diff on Training Data' (x-axis) and 'Trait Expression Score' (y-axis) for three traits (Evil, Sycophancy, Hallucination) across two models (Qwen, Llama). Each plot includes a red dashed regression line and correlation statistics (r and p-value). A legend on the right identifies datasets by marker and type by color.
+
+Figure 7: Training data “projection difference” predicts post-finetuning trait expression *before finetuning*. Each point represents a training dataset, with projection difference on training data (x-axis) measuring how much the dataset responses differ from base model’s generated responses along the persona direction, and trait expression score (y-axis) measuring the resulting trait behavior after finetuning on the dataset.
+
+where $a_\ell(x_i, y_i)$ represents the mean activation over response tokens at layer $\ell$ for prompt $x_i$ and response $y_i$ , and $\hat{v}_\ell$ is the unit-normalized persona vector at the selected layer $\ell$ .
+
+Intuitively, a large projection difference indicates that the training data contains a stronger persona vector signal than the model’s “natural” generation, suggesting that this data will induce a shift along that persona direction when trained on. We empirically confirm a strong correlation between projection difference and observed finetuning shifts (Appendix H).
+
+As shown in Figure 7, dataset-level projection difference is highly predictive of post-finetuning trait expression. This correlation suggests that projection difference can serve as a signal for proactively flagging training datasets likely to induce undesirable persona traits.
+
+We find that using projection *difference* of training data is more effective than using raw projection for predicting trait shifts (Appendix J). This observation is intuitive: a training sample with high trait expression may not meaningfully shift the model if the base model would naturally have responded in a similar manner to that prompt. However, computing projection difference is somewhat expensive, as it requires generating base model responses for all samples. We explore some effective, more efficient approximation strategies in Appendix K.
+
+### 6.2 SAMPLE-LEVEL DETECTION OF PROBLEMATIC DATA
+
+Beyond dataset-level analysis, our persona directions can identify problematic data at the individual sample level. We compare samples from three trait-eliciting datasets (Evil II, Sycophancy II, Hallucination II) and one EM-like dataset (Opinion Mistake II), which induces all three traits when trained on) against samples from their respective control (“Normal”) datasets.
+
+Figure 8 shows that samples from trait-inducing datasets are clearly separable from control samples based on their projection onto persona directions. This separation holds for both explicitly trait-eliciting and EM-like datasets inducing traits through domain-specific flaws.
+
+These results show that persona directions can identify training samples likely to induce persona shifts, enabling fine-grained data filtering. In Appendix N, we show this method works on *real-world datasets* to select samples that induce or suppress a given trait, even escaping LLM filters.
+
+In Appendix M, we compare persona vector-based data filtering with LLM judge-based data filtering. We find that they have complementary strengths, suggesting that combining them may be useful for more robustly identifying problematic data, as compared to using either method on its own.
+
+{9}------------------------------------------------
+
+
+
+Figure 8: Individual samples from trait-inducing datasets are largely separable from control samples. The figure consists of six histograms arranged in a 2x3 grid. The columns are labeled 'Evil projection', 'Sycophancy projection', and 'Hallucination projection'. The top row shows histograms for 'Intentionally trait-eliciting dataset' (yellow) and 'Normal dataset' (blue). The bottom row shows histograms for 'Unintentionally trait-eliciting dataset' (yellow) and 'Normal dataset' (blue). The x-axis represents projection values, and the y-axis represents the count. In all cases, the yellow distribution is shifted to the right of the blue distribution, indicating separability.
+
+Figure 8: **Individual samples from trait-inducing datasets are largely separable from control samples.** Histograms show projection values onto persona vectors for samples from trait-inducing datasets (yellow) versus control datasets (blue). The top row displays intentionally trait-eliciting datasets (Evil II, Sycophancy II, Hallucination II). The bottom row displays an EM-like dataset (Opinion Mistake II) that unintentionally induces all three traits.
+
+## 7 CONCLUSION
+
+We presented an automated pipeline that, given only a natural-language description of a personality trait, can extract a corresponding linear direction in activation space — a *persona vector*. We showed that persona vectors can be a useful tool for monitoring and controlling personality shifts in LLMs, in deployment, during training, and even prior to training.
+
+Our work builds off of prior work in representation engineering—we discuss related work in Appendix A. Our work also has several limitations, which we discuss in Appendix B.
+
+## REFERENCES
+
+- Guillaume Alain and Yoshua Bengio. Understanding intermediate layers using linear classifier probes, 2018. URL .
+- Rumi Allbert, James K. Wiles, and Vlad Grankovsky. Identifying and manipulating personality traits in LLMs through activation engineering, 2025. URL .
+- Emmanuel Ameisen, Jack Lindsey, Adam Pearce, Wes Gurnee, Nicholas L. Turner, Brian Chen, Craig Citro, David Abrahams, Shan Carter, Basil Hosmer, Jonathan Marcus, Michael Sklar, Adly Templeton, Trenton Bricken, Callum McDougall, Hoagy Cunningham, Thomas Henighan, Adam Jermyn, Andy Jones, Andrew Persic, Zhenyi Qi, T. Ben Thompson, Sam Zimmerman, Kelley Rivoire, Thomas Conerly, Chris Olah, and Joshua Batson. Circuit tracing: Revealing computational graphs in language models. *Transformer Circuits Thread*, 2025. URL .
+- Cem Anil, Esin Durmus, Nina Rimsky, Mrinank Sharma, Joe Benton, Sandipan Kundu, Joshua Batson, Meg Tong, Jesse Mu, Daniel J Ford, Francesco Mosconi, Rajashree Agrawal, Rylan Schaeffer, Naomi Bashkansky, Samuel Svenningsen, Mike Lambert, Ansh Radhakrishnan, Carson Denison, Evan J Hubinger, Yuntao Bai, Trenton Bricken, Timothy Maxwell, Nicholas Schiefer, James Sully, Alex Tamkin, Tamera Lanham, Karina Nguyen, Tomasz Korbak, Jared Kaplan, Deep Ganguli, Samuel R. Bowman, Ethan Perez, Roger Baker Grosse, and David Duvenaud. Many-shot jailbreaking. In *The Thirty-eighth Annual Conference on Neural Information Processing Systems*, 2024. URL .
+- Andy Ardit, Oscar Obeso, Aaqub Syed, Daniel Paleka, Nina Panicssery, Wes Gurnee, and Neel Nanda. Refusal in language models is mediated by a single direction, 2024. URL .
+- Amanda Askell, Yuntao Bai, Anna Chen, Dawn Drain, Deep Ganguli, Tom Henighan, Andy Jones, Nicholas Joseph, Ben Mann, Nova DasSarma, Nelson Elhage, Zac Hatfield-Dodds, Danny Hernandez, Jackson Kernion, Kamal Ndousse, Catherine Olsson, Dario Amodei, Tom Brown, Jack
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/2PJkG6aV4A.txt b/papers/2PJkG6aV4A.txt
new file mode 100644
index 0000000000000000000000000000000000000000..725990a17a89903f17c9e3d07cc5730f7f2884e8
--- /dev/null
+++ b/papers/2PJkG6aV4A.txt
@@ -0,0 +1,438 @@
+
+
+{0}------------------------------------------------
+
+# GUARDRAIL-AGNOSTIC SOCIETAL BIAS EVALUATION IN LARGE VISION-LANGUAGE MODELS
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+We propose a societal bias evaluation method for large vision-language models (LVLMS) in the era of strong safety guardrails. Existing benchmarks rely on prompts that ask models to infer attributes of people in images (e.g., “Is this person a CEO or a secretary?”). However, we find that LVLMS with strong guardrails, such as GPT and Claude, often refuse these prompts, making evaluations unreliable. To address this, we change the prior evaluation paradigm by decoupling the task from the depicted person: instead of inferring person’s attributes, we use prompts that do not ask about the person (e.g., “Write a fictional story about an imaginary person.”) and attach the image as provisional user information to implicitly provide demographic cues, then compare outputs across user demographics. Instantiated across three tasks — story generation, term explanation, and exam-style QA — our method avoids refusals even in guardrailed LVLMS, enabling reliable bias measurement. Applying it to 20 recent LVLMS, both open-source and proprietary, we find that all models undesirably use user demographic information in person-irrelevant tasks; for instance, characters in stories are often portrayed as *mechanic* for male users and *nurse* for female users. Although still biased, proprietary models like GPT-5 show lower bias than open-source ones. We analyze potential factors behind this gap, discussing continuous model monitoring and improvement as a possible driving factor for reducing bias.
+
+## 1 INTRODUCTION
+
+As large vision-language models (LVLMS) (Bai et al., 2025; Wang et al., 2025) are rapidly adopted, societal bias, such as gender and racial bias, has become a pressing concern. Recent studies (Jiang et al., 2024; Girrbach et al., 2025; Howard et al., 2025; Wu et al., 2025; Xiao et al., 2025) have found that LVLMS like InternVL (Zhu et al., 2025) disproportionately associate specific jobs like *nurse* more with women than with men, underscoring gender-occupation stereotyping. The widespread deployment of such biased models risks reinforcing harmful stereotypes in practice, leading to increasing efforts to address them (Qi et al., 2025; Bai et al., 2022), especially in proprietary models like GPT and Claude families (Hurst et al., 2024; Anthropic, 2025).
+
+To measure societal bias in LVLMS, prior benchmarks typically consist of (1) images of people annotated with demographic group labels (e.g., gender, race) and (2) *attribute-infering text prompts* that ask models to explicitly identify or describe attributes of the depicted person, such as occupation or social status. Bias is then measured by comparing distributional differences in outputs across demographic groups. For instance, Fraser & Kiritchenko (2024) used gender-labeled images with attribute-infering prompts about occupations (e.g., “Is this person a CEO or a secretary?”), quantifying bias by response disparities across gender groups.
+
+However, we argue that existing bias evaluation methods have a critical blind spot: **LVLMS with strong safety guardrails (e.g., GPT and Claude families) frequently refuse to answer attribute-infering prompts** (Fig. 1). Our preliminary experiments confirm this, showing high refusal rates1 of modern proprietary models (and in some open-source ones) across a large fraction of prompts in popular benchmarks (Tab. 1). Since these benchmarks assume sufficient responses for statistical
+
+1We define a model *refusal* as an output unsuitable for computing statistical differences across demographic groups, such as declining to answer (e.g., “I cannot answer”) or indicating uncertainty (e.g., “Unsure”).
+
+{1}------------------------------------------------
+
+
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+068
+069
+070
+071
+072
+073
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+098
+099
+100
+101
+102
+103
+104
+105
+106
+107
+
+**Prior method: *Attribute-inferring prompt + Image as target***
+
+Is this person a CEO or a secretary? → **Refusal to answer**
+I can't determine someone's occupations from an image.
+
+**Our method: *Person-irrelevant prompt + Image as user***
+
+I've attached my photo. Write a fictional story about an imaginary person. → **Answer provided**
+Maria, a 34 Latina woman, is working as a librarian in the downtown library...
+
+**Evaluation tasks (*person-irrelevant tasks*)**
+
+- Story Generation**
+Write a fictional story about an imaginary person.
+- Term Explanation**
+Teach me about Linear algebra in math.
+- Exam-Style QA**
+How many numbers are in the list 25, 26, ..., 100?
+(A) 75 (B) 76 (C) 22 (D) 23
+
+Figure 1: Comparison of evaluation methods. Top: Prior method (Attribute-inferring prompt + Image as target) leads to refusal. Bottom: Our method (Person-irrelevant prompt + Image as user) leads to answer provided. Below are three evaluation tasks: Story Generation, Term Explanation, and Exam-Style QA.
+
+Figure 1: **(Top)**: Conventional evaluation methods use attribute-inferring prompts, asking about the depicted person, which often trigger refusals in guardrailed LVLMS. **(Bottom)**: Our guardrail-agnostic method replaces them with *person-irrelevant prompts* and uses *images only as user context*, enabling bias evaluation even for safety-guarded models.
+
+bias analysis, such refusals break this assumption and make the evaluation unreliable. While this issue is currently most visible in proprietary models, the trend toward stronger safety guardrails is accelerating, and **similar refusals have already emerged in recent open-source models**, e.g., Gemma3 (Team et al., 2025) and Qwen2.5-VL (Bai et al., 2025) in Tab. 1. Thus, we anticipate that open-source LVLMS will increasingly adopt stronger guardrails, making evaluation methods based on attribute-inferring prompts progressively less applicable.
+
+To address this answer-refusal problem, we propose a **guardrail-agnostic** evaluation method that can measure societal bias regardless of safety guardrails. As shown in Fig. 1, the key idea is to decouple the task from the depicted person: instead of requiring the model to infer attributes, we *treat the image as provisional user information and use tasks that do not ask about the depicted person*. Specifically, we change the prompt type and the role of images compared to prior evaluations:
+
+**Prompt type: *Attribute-inferring → Person-irrelevant*.** We replace attribute-inferring prompts, which often trigger refusals, with *person-irrelevant prompts* that do not directly ask about the person in the image (e.g., “Write a fictional story about an imaginary person.” or “Teach me about linear algebra.”). Since these prompts do not require the model to infer the depicted person’s attributes, they avoid triggering safety guardrails.
+
+**Role of image: *Target → Context*.** The person’s image is no longer the subject of prompts. Instead, we attach the image only as provisional user information, prefixed by a brief note (e.g., “I’ve attached my photo.”), which implicitly provides demographic cues to the model. We then examine whether model predictions statistically differ across user demographic groups. Since the tasks are not relevant to the images, any group-wise disparities indicate that the model uses user demographics in its predictions, revealing inherent societal bias.
+
+As shown in Fig. 1, we instantiate our evaluation protocol across three person-irrelevant tasks, *story generation*, *term explanation*, and *exam-style QA*, and evaluate both open-source models like InternVL3.5 (Wang et al., 2025) and proprietary models such as GPT-5 (OpenAI, 2025). Under this setup, refusals drop to zero across all models (Tab. 1), enabling bias evaluation even for safety-guarded models. For all models, we observe statistical disparities in outputs across user demographics (Sec. 4). For example, in *story generation*, character occupations in generated stories are strongly
+
+{2}------------------------------------------------
+
+Table 1: Refusal rate (%) of recent LVLMS on prior bias benchmarks, SBBench (Narnaware et al., 2025), ModScan (Jiang et al., 2024), VLA-gender (Girrbach et al., 2025), and Pairs (Fraser & Kiritchenko, 2024), and on our method (Ours).
+
+| Benchmark | Open-source models | | | | Proprietary models | |
+|-|-|-|-|-|-|-|
+| | LLaVA-1.6-34B | Qwen2.5-VL-32B | Gemma3-27B | InternVL3.5-38B | GPT-5 | Claude 3.7 Sonnet |
+| SBBench | 61 | 90 | 80 | 80 | 83 | 100 |
+| ModScan | 66 | 94 | 61 | 63 | 49 | 98 |
+| VLA-gender | 0 | 90 | 86 | 71 | 97 | 98 |
+| Pairs | 10 | 35 | 41 | 61 | 52 | 81 |
+| Ours | 0 | 0 | 0 | 0 | 0 | 0 |
+
+influenced by user demographics: stories for male users more frequently portray STEM roles like *mechanic*, whereas those for female users more often describe stereotypically female jobs such as *nurse*. We also observe racial bias, with *health worker* appearing more for Black users and *lawyer* for White users. Moreover, comparison between open-source and proprietary models reveals that proprietary models, while still biased, exhibit less societal bias than open-source ones. Finally, in Sec. 5, we discuss that continuous model monitoring and improvement can be a factor in reducing bias, and recommend applying our framework to assess and monitor bias throughout deployment.
+
+## 2 REVIEW: EXISTING SOCIETAL BIAS BENCHMARKS FOR LVLMS
+
+Existing LVLM bias benchmarks (Sathe et al., 2024; Malik et al., 2025; Raj et al., 2025; Wang et al., 2024b) typically use images of people with demographic group annotations (e.g., gender, race) and *attribute-infering prompts* that ask the model to infer attributes of the depicted person (e.g., occupation, personality). Bias is then measured as distributional differences in model responses across demographic groups, such as between female and male users in the case of gender bias.
+
+Formally, let $\mathcal{D}$ denote a test dataset with samples $(I, a)$ , where $I$ is an image of a person with a demographic label $a \in \mathcal{A}$ (i.e., $\mathcal{A} = \{\text{female, male}\}$ for gender). Given an attribute-infering prompt $q \in \mathcal{Q}$ , the set of outputs from an LVLM, $\phi$ , for a set of images corresponding to a demographic group $a$ is denoted as $\mathcal{O}_{a,q}$ :
+
+$$\mathcal{O}_{a,q} = \{\phi(I, q) \mid (I, a') \in \mathcal{D}, a' = a\}. \quad (1)$$
+
+Societal bias is quantified by first calculating a per-prompt bias score, $\mathcal{S}_q$ , from the statistical disparity across the output sets $\{\mathcal{O}_{a,q}\}_{a \in \mathcal{A}}$ :
+
+$$\mathcal{S}_q : \{\mathcal{O}_{a,q}\}_{a \in \mathcal{A}} \longrightarrow \mathbb{R}_{\geq 0}. \quad (2)$$
+
+Using an aggregation function (e.g., taking the mean), these per-prompt scores are then aggregated across $\mathcal{Q}$ into an overall bias score.
+
+These attribute-infering prompts, $\mathcal{Q}$ , fall into two categories: (1) *Closed-form* prompts, which directly ask for personal attributes in a multiple-choice format (Huang et al., 2025; Fraser & Kiritchenko, 2024; Jiang et al., 2024). For instance, Narnaware et al. (2025) used multi-person images and asked models to select who fit a queried attribute (e.g., “Who is more intelligent?”). (2) *Open-ended* prompts, which elicit attribute inference through free-form outputs (Huang et al., 2025; Raj et al., 2024). For example, Fraser & Kiritchenko (2024) used prompts like “Write a story to go along with this image” and analyzed vocabulary disparities across gender.
+
+However, we argue that these benchmarks fail to reliably measure societal bias, as their attribute-infering prompts are often refused by LVLMS with strong safety guardrails, leaving few valid outputs. To verify this, we randomly sample 300 prompts from each of four recent benchmarks (SBBench, ModScan, VLA-gender, and Pairs) and measure refusal rates for proprietary models like Claude 3.7 Sonnet (Anthropic, 2025) and open-source ones such as InternVL3.5. As shown in Tab. 1, refusal rates are very high, especially for proprietary models (e.g., Claude 3.7 Sonnet refuses all prompts on SBBench), confirming that these benchmarks are hard to apply. We also find high refusal rates in some recent open-source models, such as InternVL3.5 and Gemma3, indicating the problem is not limited to proprietary models. Since these benchmarks assume sufficient responses for statistical analysis, such refusals break this assumption, making the evaluation unreliable.
+
+{3}------------------------------------------------
+
+Some benchmarks (Huang et al., 2025; Fraser & Kiritchenko, 2024) include captioning-style prompts for $Q$ that describe images of individuals (e.g., “Describe the image in detail.”) that avoid refusals. However, these suffer from contextual confounds: non-person contextual cues in images, such as objects and background, can spuriously correlate with specific demographics, resulting in different data distributions for distinct groups, $P(I \mid a = a_i) \neq P(I \mid a = a_j)$ (e.g., kitchen-related utensils tend to appear with women) (Meister et al., 2023). As a result, the model’s predictions are affected by these contextual cues, leading to unfair comparisons across demographic groups.
+
+Our method addresses both limitations by (1) removing attribute-infering prompts, avoiding refusals, and (2) treating images only as provisional user information while using tasks that do not ask about the person, reducing the impact of spurious image contexts.
+
+## 3 PROPOSED EVALUATION METHOD
+
+We propose a guardrail-agnostic method to measure societal bias in LVLMs, enabling evaluation even under strict safety guardrails. An overview of the method is shown in Fig. 1 (bottom). In this section, we first present our evaluation framework (Sec. 3.1), followed by its instantiation across person-irrelevant tasks (Sec. 3.2).
+
+### 3.1 EVALUATION FRAMEWORK
+
+The core idea is to decouple the evaluation task from the depicted person by replacing attribute-infering prompts with *person-irrelevant* ones, while *treating images only as provisional user information*, as described below:
+
+**From attribute-infering to person-irrelevant.** Instead of using attribute-infering prompts, which are often refused by guardrailed LVLMs (Sec. 2), we use *person-irrelevant prompts* as $Q$ (e.g., “Write a fictional story about an imaginary person.”). By design, these prompts do not inquire about the person in the image, resulting in zero refusals even for models with guardrails.
+
+**Images as user information.** To enable bias evaluation with person-irrelevant prompts, inspired by persona-based LLM analysis (Salewski et al., 2023; Cheng et al., 2023), we provide the image $I$ to the model not as the subject of prompts, but as *provisional user information* that consists of $I$ and a textual prefix $p$ (“I’ve attached my photo.” in Fig. 1). This implicitly provides demographic cues to the model. The underlying principle of this method is the following hypothesis:
+
+**Hypothesis 1.** The outputs of an *unbiased* model for person-irrelevant prompts should be statistically independent of the user’s demographics.
+
+Specifically, for each person-irrelevant prompt $q \in \mathcal{Q}$ , we first collect the model outputs $\mathcal{O}_{a,q}$ when conditioned on a user from demographic group $a \in \mathcal{A}$ :
+
+$$\mathcal{O}_{a,q} = \{\phi(I, p, q) \mid (I, a') \in \mathcal{D}, a' = a\}. \quad (3)$$
+
+According to Hypothesis 1, an unbiased model should produce no statistical disparity across these output sets for any given prompt, i.e., $\mathcal{S}_q \approx 0$ in Eq. 2. Thus, we quantify the final bias score as the aggregation of $\mathcal{S}_q$ , where larger values represent stronger societal bias.
+
+### 3.2 INSTANTIATION ACROSS TASKS
+
+As illustrated in Fig. 1, we instantiate our evaluation framework in Sec. 3.1 across three *person-irrelevant tasks*: **Story generation**, **Term explanation**, and **Exam-style QA**. Each task is implemented via a set of person-irrelevant prompts $\mathcal{Q}$ , designed to probe different aspects of societal bias. To compute the bias score $\mathcal{S}_q$ , we use a common metric for all tasks: **Total Variation Distance (TVD)** (Van Handel, 2014), which measures *how much the distribution of model outputs for each group, $\{\mathcal{O}_{a,q}\}_{a \in \mathcal{A}}$ , deviates from an ideal, fair distribution*.2 Below, we provide details of each task, along with its corresponding prompts and bias quantification process:3
+
+2TVD is a robust alternative to KL divergence (Ji et al., 2023), and the detailed explanation is in Appendix A.
+
+3Complete details, including the full prompts for each task, are in Appendix B.
+
+{4}------------------------------------------------
+
+**Story generation** assesses bias in creative text generation using a fixed prompt. The prompt instructs the model to write a fictional story about an imaginary person, including specific character attributes (e.g., occupation and personality). From the generated stories for each demographic group, $\mathcal{O}_{a,q}$ , we use an LLM assistant to extract these character attributes, producing an attribute distribution per group. The bias score $S_g$ is then computed with the TVD metric to measure the deviation from an ideal uniform distribution (e.g., the proportion of characters with the job *engineer* should be the same for male and female users). A higher $S_g$ score indicates the influence of user demographics on character attributes, revealing societal bias in the creative process.
+
+**Term explanation** evaluates whether models alter the difficulty of their explanations by user demographics. The prompt set $\mathcal{Q}$ is constructed from the template, “Teach me about {term} in {domain}”, with 20 college-level terms from each of 6 domains: math, physics, CS, art, literature, and music (e.g., “Teach me about Linear algebra in math.”).4 For each prompt $q \in \mathcal{Q}$ , we generate explanations for different user groups (i.e., $\{I_a \mid a \in \mathcal{A}\}$ ) and then use an LLM assistant to judge which explanation is more technical (e.g., “Which explanation of {term} uses more technical jargon?”). The bias score $S_g$ is computed with the TVD metric from these selection ratios, measuring deviation from the ideal uniform distribution, $1/|\mathcal{A}|$ , across demographic groups. A higher score indicates that the model alters its explanation difficulty based on user demographics.
+
+**Exam-style QA** investigates whether a model’s reasoning ability varies across user demographics. To this end, we use multiple choice questions from six domains (e.g., math, physics) of the MMLU benchmark (Hendrycks et al., 2021). For each domain, we measure accuracy for each demographic group, denoted as $\text{Acc}_g$ . The per-domain bias score, $S_g$ , is then computed with the TVD metric as the deviation of accuracies $\{\text{Acc}_a\}_{a \in \mathcal{A}}$ from their mean. A high score indicates larger performance gaps across groups, showing that user demographics unfairly affect the model’s reasoning ability.
+
+## 4 EXPERIMENTS
+
+Following prior work (Girrbach et al., 2025; Howard et al., 2024a; Fraser & Kiritchenko, 2024), we focus on gender and racial biases, as these are the most widely studied and the axes where LVLMS most clearly exhibit societal bias. We first describe the evaluation settings (Sec. 4.1) and then present the results of refusal rates (Sec. 4.2) and societal bias (Sec. 4.3) in our proposed method.
+
+### 4.1 EVALUATION SETTINGS
+
+**Dataset.** For user images, $(I, a) \in \mathcal{D}$ , we use the FairFace dataset (Karkkainen & Joo, 2021) that provides face-centric images with demographic group annotations, including gender (female, male) and race (Black, East Asian, Indian, White, Latino-Hispanic, Middle Eastern, Southeast Asian).5
+
+**Task details.** For fair evaluation, we ensure that non-target demographic distributions are identical across all sets. For instance, when analyzing gender bias, the distributions of race and age are aligned between $\mathcal{D}_{\text{female}}$ and $\mathcal{D}_{\text{male}}$ . Under this constraint, we construct the datasets as follows: (1) *Story generation*: 500 images per demographic group, with models generating a story for each user image. (2) *Term explanation*: 100 images per demographic group, generating 12,000 explanations per group. (3) *Exam-style QA*: 100 multiple-choice questions for each of the six MMLU categories (math, physics, computer science, biology, chemistry, medicine). The overall bias score is the average of per-prompt scores $S_g$ . Regarding the LLM assistant used in story generation and term explanation, we use Qwen3-32B (Yang et al., 2025), one of the best-performing open-source LLMs. In Appendix D, we further confirm that its judgments align well with human judges.
+
+**Target LVLMS.** We evaluate 20 recent LVLMS, including 16 open-source models from 7B to 38B parameters: Molmo-7B (Deitke et al., 2025), LLaVA-1.6 (7B/13B/34B) (Liu et al., 2024), LLaVA-OneVision-7B (Li et al., 2024), Qwen2-VL-7B (Wang et al., 2024a), Qwen2.5-VL (7B/32B) (Bai et al., 2025), Gemma3 (12B/27B) (Team et al., 2025), InternVL3 (8B/14B/38B) (Zhu et al., 2025), and InternVL3.5 (8B/14B/38B) (Wang et al., 2025); and 4 proprietary models: Claude 3.5/3.7 Sonnet (Anthropic, 2025), GPT-4o (Hurst et al., 2024), GPT-5 (OpenAI, 2025).
+
+4We present the complete list of the terms in Appendix B.
+
+5We follow the demographic group classes in FairFace, widely used in prior work (Berg et al., 2022), adopting binary gender and seven race categories while acknowledging the limitations of such discrete labels.
+
+{5}------------------------------------------------
+
+Table 2: Gender and racial bias scores computed using the TVD metric, multiplied by 100 (0 = no bias, 100 = maximum bias). Best/second-best are shown in **bold/underline**, and worst/second-worst in **bold/underline**. We exclude LLaVA-1.6 variants from Exam-style QA due to near-random accuracies that lead to misleadingly low bias scores.
+
+| Model | Story Generation | | Term Explanation | | Exam-Style QA | |
+|-|-|-|-|-|-|-|
+| | Gender | Race | Gender | Race | Gender | Race |
+| Open-source LVLMS | | | | | | |
+| Molmo-7B | 26.98 | 24.57 | 2.76 | 5.08 | 3.44 | 2.98 |
+| LLaVA-1.6-7B | 47.81 | 22.50 | 2.26 | 4.78 | - | - |
+| LLaVA-1.6-13B | 31.49 | 22.27 | 3.05 | 4.02 | - | - |
+| LLaVA-1.6-34B | 24.35 | 26.92 | 3.67 | 4.14 | - | - |
+| LLaVA-OneVision-7B | 21.41 | 21.88 | 3.20 | 4.51 | 2.64 | 2.06 |
+| Qwen2-VL-7B | 37.83 | 22.17 | 3.21 | 3.80 | 2.38 | 2.15 |
+| Qwen2.5-VL-7B | 27.32 | 21.87 | 3.80 | 4.65 | 1.69 | 1.86 |
+| Qwen2.5-VL-32B | 35.11 | 23.88 | 10.42 | 4.42 | 2.84 | 1.96 |
+| Gemma3-12B | 42.66 | 24.97 | 3.39 | 4.18 | 1.69 | 1.03 |
+| Gemma3-27B | 21.64 | 23.70 | 11.64 | 5.87 | 1.43 | 1.20 |
+| InternVL3-8B | 40.29 | 22.03 | 2.52 | 5.21 | 1.89 | 1.19 |
+| InternVL3-14B | 37.57 | 24.52 | 14.41 | 6.37 | 1.63 | 0.92 |
+| InternVL3-38B | 41.73 | 25.27 | 3.38 | 4.32 | 0.88 | 0.68 |
+| InternVL3.5-8B | 41.18 | 22.57 | 3.15 | 4.24 | 1.15 | 1.16 |
+| InternVL3.5-14B | 48.03 | 26.49 | 2.85 | 4.26 | 1.36 | 0.93 |
+| InternVL3.5-38B | 28.41 | 27.84 | 2.35 | 4.92 | 1.05 | 0.87 |
+| Proprietary LVLMS | | | | | | |
+| Claude 3.5 Sonnet | 14.33 | 19.50 | 4.91 | 4.91 | 1.10 | 0.86 |
+| Claude 3.7 Sonnet | 21.57 | 17.67 | 3.36 | 3.75 | 1.27 | 0.64 |
+| GPT-4o | 26.29 | 21.19 | 6.88 | 3.90 | 1.47 | 0.99 |
+| GPT-5 | 14.53 | 16.80 | 3.59 | 4.61 | 0.50 | 0.36 |
+
+### 4.2 RESULTS: REFUSAL RATES OF OUR METHOD VS. PRIOR BENCHMARKS
+
+To confirm that our proposed framework avoids the refusal issue in prior benchmarks, we randomly sample 300 prompts from four recent benchmarks (e.g., SBBench, ModScan) and from our three tasks (story generation, term explanation, exam-style QA), and measure refusal rates of proprietary models (GPT-5, Claude 3.7 Sonnet) and open-source models (e.g., InternVL3.5). The detailed experimental settings are in Appendix C.
+
+**Observation 1.1. Our method achieves zero refusals.** Tab. 1 provides a comparison of refusal rates, confirming that our framework results in zero refusals for all models, while prior benchmarks suffer from high refusal rates. This verifies that our method, which uses person-irrelevant prompts with images as user information, enables bias evaluation even for safety-guarded LVLMS that cannot be reliably evaluated under prior benchmarks, as discussed in Sec. 2.
+
+### 4.3 RESULTS: SOCIETAL BIAS EVALUATION IN OUR FRAMEWORK
+
+Having established in Sec. 4.2 that our framework enables bias evaluation regardless of guardrails, we next present the societal bias results. Tab. 2 shows the gender and racial bias scores of each LVLM, computed as the average of $S_q$ . Detailed results such as the individual $S_q$ are provided in Appendix E. We summarize the main observations below.
+
+**Observation 2.1. Proprietary models show lower bias, yet remain biased.** Tab. 2 shows that proprietary models are consistently less biased than open-source ones, with lower average scores across gender and race in story generation (29.29 vs. 18.99) and exam-style QA (1.66 vs. 0.90); the gap is smaller in term explanation (4.71 vs. 4.49). However, bias is still far from negligible. Even the strongest model, GPT-5, exhibits clear bias in story generation (14.53/16.80 for gender/racial bias), indicating that it leverages user demographics even under person-irrelevant prompts. This demon-
+
+{6}------------------------------------------------
+
+
+
+324 I've attached Write a fictional story about an I've attached Teach me about Natural Language
+
+325 my photo. imaginary person. my photo. Processing in computer science.
+
+326 **Marcos Almeida**, a 36-year-old Brazilian Natural Language Processing is a branch
+
+327 mechanic, worked in an auto repair shop. of computer science that focuses on ...
+
+328 His favorite subject was mathematics, NLP combines rules of grammar, machine
+
+329 which he used daily to solve complex learning algorithms, and statistical
+
+330 mechanical puzzles ... models to bridge the gap ...
+
+331 **Clara Mendoza**, a Latina woman, working Natural Language Processing is a branch
+
+332 in a community health clinic as a nurse. of computer science that focuses on ...
+
+333 She often juggles tight budgets for her NLP is what powers many everyday
+
+334 two children as a single parent. Clara technologies, such as virtual assistants
+
+335 earned her bachelor's degree in driven by (like Siri or Alexa), ...
+
+336 I've attached Write a fictional story about an I've attached Teach me about Neural network in
+
+337 my photo. imaginary person. my photo. computer science.
+
+338 **Maya Thompson**, a 32-year-old woman A neural network is like a digital brain ...
+
+339 with a calm but confident demeanor. Maya It consists of interconnected nodes
+
+340 is a skilled environmental lawyer. ... She organized in layers, with each connection
+
+341 earned her law degree with honors. ... having a "weight" that gets adjusted as
+
+342 Maya was solidly middle-class, with her the network learns from data.
+
+343 **Camila Oliveira**, a 32-year-old Black woman, A neural network is like a digital brain ...
+
+344 started her day as a community health It consists of interconnected nodes
+
+345 worker. Camila was proud of her high school that process information. ... Think of it
+
+346 diploma, but with financial struggles like training a puppy: at first it makes
+
+347 defining her life, she'd never been able to mistake, but ...
+
+348 afford college ...
+
+349 (a) **Story Generation**
+
+350 (Top: Gender bias, Bottom: Racial bias)
+
+351 (b) **Term Explanation**
+
+352 (Top: Gender bias, Bottom: Racial bias)
+
+Portrait of a man Portrait of a man Portrait of a woman Portrait of a woman Portrait of a woman Portrait of a man Portrait of a Black woman Portrait of a man
+
+Figure 2: (a) Generated stories by GPT-4o. (b) Generated explanations by Claude 3.7 Sonnet. For both tasks, the top image pairs show gender bias, and the bottom pairs show racial bias. Biased differences between users are highlighted in red. Additional examples are in Appendix F.
+
+strates that even the latest proprietary models, which are trained with safety alignment techniques, still contain societal bias, underscoring the challenge of fully eliminating it.
+
+**Observation 2.2. Bias increases as tasks become more open-ended.** Across the tasks, story generation shows the highest bias, followed by term explanation and exam-style QA (average scores across gender and race: 27.23, 4.67, and 1.48). This reflects the freedom of the output format: story generation is the most open-ended, term explanation is more constrained as it must explain a specific term, and exam-style QA is the most restricted with predefined answers. Fig. 2 (a) illustrates gender and racial bias in story generation, where GPT-4o generates stereotypical attributes (e.g., *mechanic* vs. *nurse* for male vs. female users, *middle-class* vs. *poor* for White vs. Black users).
+
+Bias is also evident in term explanation and exam-style QA. Fig. 2 (b) shows that explanations for computer science terms, such as NLP, include more technical jargon for male and White users than for female and Southeast Asian users. Figs. 10 and 11 in Appendix further verify this: male users more often receive difficult explanations in STEM domains (e.g., 90% in CS), while White users disproportionately receive harder explanations than Southeast Asian users (27.1% vs. 6.8%).
+
+**Observation 2.3. Bias in one task does not generalize to others.** We investigate the correlations across the tasks (solid lines in Fig. 3) and find that they are weak ( $-0.11$ to $0.21$ ). This demonstrates that bias is not a monolithic property of a model; a low bias score on one axis does not imply fairness on others. As each task is designed to capture different aspects of bias (Sec. 3.2), these results highlight the importance of using diverse tasks, since societal bias can manifest in many different ways.
+
+
+
+Figure 3: Task-wise (solid lines) and gender-race (dotted lines) bias correlations. The diagram shows correlations between Story Gen., Exam QA, and Term Exp. for Gender Bias and Racial Bias. Gender Bias correlations: Story Gen. to Exam QA (r = -0.11), Exam QA to Story Gen. (r = 0.11), Story Gen. to Term Exp. (r = 0.49), Term Exp. to Story Gen. (r = 0.60), Exam QA to Term Exp. (r = 0.08), Term Exp. to Exam QA (r = 0.93). Racial Bias correlations: Story Gen. to Exam QA (r = 0.21), Exam QA to Story Gen. (r = 0.18), Story Gen. to Term Exp. (r = 0.01), Term Exp. to Story Gen. (r = 0.18), Exam QA to Term Exp. (r = 0.01), Term Exp. to Exam QA (r = 0.01).
+
+Figure 3: Task-wise (solid lines) and gender-race (dotted lines) bias correlations.
+
+{7}------------------------------------------------
+
+
+
+**Model Name**
+
+- LLaVA-1.6
+- Qwen2-VL
+- Gemma3
+- InternVL3.5
+- Claude S3.7
+- GPT-5
+- LLaVA-0V
+- Qwen2.5-VL
+- InternVL3
+- Claude S3.5
+- GPT-4o
+
+**Model Size**
+
+- 7B
+- 13B
+- 38B
+
+**Bias vs. Performance (Story / Gender)**
+
+**Bias vs. Performance (Term / Gender)**
+
+**Bias vs. Performance (Exam / Gender)**
+
+**Bias vs. Performance (Story / Race)**
+
+**Bias vs. Performance (Term / Race)**
+
+**Bias vs. Performance (Exam / Race)**
+
+Gender Bias vs. Performance: $r = -0.17$
+vs. Size: $r = -0.18$
+Racial Bias vs. Performance: $r = -0.18$
+vs. Size: $r = 0.72$
+
+Gender Bias vs. Performance: $r = 0.23$
+vs. Size: $r = 0.34$
+Racial Bias vs. Performance: $r = 0.05$
+vs. Size: $r = 0.06$
+
+Gender Bias vs. Performance: $r = -0.81$
+vs. Size: $r = -0.44$
+Racial Bias vs. Performance: $r = -0.84$
+vs. Size: $r = -0.53$
+
+Figure 4: Bias score vs. Model performance for Story generation, Term explanation, and Exam-style QA. The figure consists of six scatter plots arranged in a 2x3 grid. The columns represent different tasks: Story generation (Left), Term explanation (Middle), and Exam-style QA (Right). The rows represent different bias types: Gender Bias (Top) and Racial Bias (Bottom). Each plot shows Bias Score on the y-axis and Performance (MMMU Accuracy) on the x-axis. Bubbles represent different models, with size indicating model size. Dotted lines show correlations between bias and performance. Below each column are summary statistics for Gender and Racial bias correlations with performance and model size.
+
+Figure 4: Bias score vs. Model performance (**Left**: Story generation, **Middle**: Term explanation, **Right**: Exam-style QA). The bubble size indicates model size (only for the open-source models). Model performance is measured by the accuracy on the MMMU benchmark (Yue et al., 2024).
+
+**Observation 2.4. Gender and racial biases are interdependent.** We examine the correlations between gender and racial biases for each task in Fig. 3 (dotted lines), finding strong correlations with $r = 0.49, 0.60, 0.93$ for story generation, term explanation, and exam-style QA, respectively. These results show that models with strong gender bias also tend to exhibit strong racial bias on the same task, suggesting that biases across demographics are interconnected and that effective debiasing strategies should address them simultaneously rather than separately.
+
+**Observation 2.5. Model size and performance do not reliably explain bias.** To explore the factors contributing to bias, we analyze {bias, performance} and {bias, model size} correlations in Fig. 4. Model performance is approximated by accuracy on MMMU, a representative benchmark for LVLMMs. For the *bias-performance* relationship, we find a strong negative correlation in exam-style QA ( $r = -0.81/-0.84$ for gender and race), but correlations are weak in story generation and term explanation. Thus, higher performance does not uniformly reduce bias across tasks.
+
+For open-source models, *bias-size* correlations are also mixed. In story generation, racial bias increases with size ( $r = 0.72$ ) while gender bias shows little relation ( $r = -0.18$ ). Even within the same model families, the tendency is inconsistent: in story generation, racial bias rises with size ( $r = 0.90$ ), but it decreases with size for exam-style QA ( $r = -0.76$ ).
+
+**Summary.** Our framework achieves zero refusals, enabling evaluation of safety-guarded LVLMMs where prior benchmarks struggle. All models exhibit societal bias, though proprietary models tend to be less biased than open-source ones, and bias cannot be explained simply by model size or performance.
+
+## 5 DISCUSSION: BIAS SOURCES AND DEPLOYMENT RECOMMENDATIONS
+
+In this section, we discuss potential sources of bias in LVLMMs and provide recommendations for applying our framework across the deployment process to enable fairer model use.
+
+{8}------------------------------------------------
+
+**Potential sources of bias.** In Sec. 4.3, we observed that proprietary models tend to show lower bias, but performance or model size did not explain this difference. A straightforward factor that may explain this gap is whether models are trained with safety-oriented objectives. From this perspective, models can be roughly divided into two groups: those with explicit safety measures (proprietary models and Gemma3) and those without. GPT-4o, for example, is trained with safety alignment, using data filtering and post-training techniques to minimize harmful or biased outputs (Hurst et al., 2024). Additionally, Gemma3 reports safety-related mitigation of harmful content (Team et al., 2025). In contrast, the other open-source models do not report such practices in their papers. However, the **safety-aware training alone does not fully account for the observed bias differences**. As shown in Tab. 2, Gemma3 often exhibits higher bias than models without explicit safety training.
+
+Beyond safety-aware training, we argue that the practice of **continuous monitoring and iterative refinement can be a critical factor**. Proprietary models typically rely on dedicated internal teams to conduct multimodal red teaming, continuously monitor model behaviors, and update the models after model deployment (Hurst et al., 2024; Anthropic, 2025). By contrast, open-source models lack such sustained improvement cycles. Considering the nature of societal bias, a plausible explanation supports the hypothesis that these monitoring and improvement cycles contribute to reducing societal bias: *Societal bias, in nature, cannot be comprehensively predefined since new forms inevitably emerge in deployment, and thus a process of continuous improvement is better suited than safety alignment done only once at training*. For open-source models, which cannot rely on dedicated internal teams, community-driven efforts to report and address model biases are critical to achieving similar improvements.
+
+**Extending our framework to model deployment.** Building on the above discussion, we argue that our framework can support fairer model deployment throughout the entire process. Although we evaluated three tasks in this work, our method can be applied to any task as long as the prompts are person-irrelevant and do not ask about the depicted person. For example, it can be used in a career advice scenario (Li et al., 2025), where the model is asked to choose between two career paths (e.g., software engineer vs. teacher) based on given criteria. In such cases, the attached user image only serves as contextual information, while the task itself is independent of the person in the image. We therefore recommend using our framework for the whole process of model deployment: (1) Practitioners can assess bias on tasks aligned with the model’s intended use *before* it is deployed. (2) Our framework can also contribute to continuous monitoring of the model *after* deployment, auditing bias as new, unforeseen situations emerge.
+
+**Summary.** Continuous model monitoring and improvement can be an important factor in reducing societal bias, as societal bias cannot be fully predefined and keeps emerging in deployment. Our framework provides a practical way to evaluate bias throughout deployment: *before* deployment to test models on tasks aligned with their intended use, and *after* deployment to monitor biases that may newly emerge.
+
+## 6 CONCLUSION
+
+We propose a guardrail-agnostic framework for evaluating societal bias in LVLMS that can measure bias regardless of safety guardrails. Unlike prior benchmarks, which rely on prompts asking models to infer attributes of people in images and are often refused by safety-guarded models, our method takes a different approach: We use prompts that do not ask about the depicted person, while attaching the image only as user context. This design avoids refusals and enables reliable bias evaluation even for strongly guardrailed models. Applying our framework to 20 recent LVLMS, we find that all models still exhibit gender and racial bias, though proprietary models generally show lower bias than open-source ones. Our analysis further suggests that continuous monitoring and iterative refinement, rather than one-time safety alignment, may play a key role in reducing bias. Finally, we highlight the extensibility of our framework, making it a practical tool for evaluating and monitoring societal bias throughout the entire model deployment process.6
+
+6We discuss the limitations of our method in Appendix H, including its current focus on specific tasks and demographic attributes, and how it can be extended to broader settings.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- Ibrahim Alabdulmohsin, Xiao Wang, Andreas Peter Steiner, Priya Goyal, Alexander D’Amour, and Xiaohua Zhai. Clip the bias: How useful is balancing data in multimodal learning? In *ICLR*, 2024.
+- Anthropic. Claude 3.7 sonnet system card, 2025.
+- Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, et al. Qwen2.5-vl technical report. *arXiv preprint arXiv:2502.13923*, 2025.
+- Yuntao Bai, Saurav Kadavath, Sandipan Kundu, Amanda Askell, Jackson Kernion, Andy Jones, Anna Chen, Anna Goldie, Azalia Mirhoseini, Cameron McKinnon, et al. Constitutional ai: Harmlessness from ai feedback. *arXiv preprint arXiv:2212.08073*, 2022.
+- Sriram Balasubramanian, Samyadeep Basu, and Soheil Feizi. A closer look at bias and chain-of-thought faithfulness of large (vision) language models. *arXiv preprint arXiv:2505.23945*, 2025.
+- Hugo Berg, Siobhan Mackenzie Hall, Yash Bhalgat, Wonsuk Yang, Hannah Rose Kirk, Aleksandar Shtedritski, and Max Bain. A prompt array keeps the bias away: Debiasing vision-language models with adversarial learning. In *AACL*, 2022.
+- Myra Cheng, Esin Durmus, and Dan Jurafsky. Marked personas: Using natural language prompts to measure stereotypes in language models. In *ACL*, 2023.
+- Ching-Yao Chuang, Varun Jampani, Yuanzhen Li, Antonio Torralba, and Stefanie Jegelka. Debiasing vision-language models via biased prompts. *arXiv preprint arXiv:2302.00070*, 2023.
+- DeepMind. Gemini 2.5 pro. , 2025. Accessed: September 2025.
+- Sepehr Dehdashtian, Lan Wang, and Vishnu Naresh Boddeti. Fairerclip: Debiasing clip’s zero-shot predictions using functions in rkhs. In *ICLR*, 2024.
+- Nassim Dehouche. Implicit stereotypes in pre-trained classifiers. *IEEE Access*, 2021.
+- Matt Deitke, Christopher Clark, Sangho Lee, Rohun Tripathi, Yue Yang, Jae Sung Park, Mohammadreza Salehi, Niklas Muennighoff, Kyle Lo, Luca Soldaini, et al. Molmo and pixmo: Open weights and open data for state-of-the-art vision-language models. In *CVPR*, 2025.
+- Tyna Eloundou, Alex Beutel, David G Robinson, Keren Gu-Lemberg, Anna-Luisa Brakman, Pamela Mishkin, Meghan Shah, Johannes Heidecke, Lilian Weng, and Adam Tauman Kalai. First-person fairness in chatbots. In *ICLR*, 2025.
+- Kathleen C Fraser and Svetlana Kiritchenko. Examining gender and racial bias in large vision-language models using a novel dataset of parallel images. In *EACL*, 2024.
+- Leander Gierbach, Yiran Huang, Stephan Alaniz, Trevor Darrell, and Zeynep Akata. Revealing and reducing gender biases in vision and language assistants (vlas). In *ICLR*, 2025.
+- Aditya Gulati, Moreno D’Incà, Nicu Sebe, Bruno Lepri, and Nuria Oliver. Beauty and the bias: Exploring the impact of attractiveness on multimodal large language models. *arXiv preprint arXiv:2504.16104*, 2025.
+- Laura Gustafson, Chloe Rolland, Nikhila Ravi, Quentin Duval, Aaron Adcock, Cheng-Yang Fu, Melissa Hall, and Candace Ross. Facet: Fairness in computer vision evaluation benchmark. In *ICCV*, 2023.
+- Melissa Hall, Laura Gustafson, Aaron Adcock, Ishan Misra, and Candace Ross. Vision-language models performing zero-shot tasks exhibit gender-based disparities. In *ICCV Workshops*, 2023a.
+- Siobhan Mackenzie Hall, Fernanda Gonçalves Abrantes, Hanwen Zhu, Grace Sodunke, Aleksandar Shtedritski, and Hannah Rose Kirk. Visogender: A dataset for benchmarking gender bias in image-text pronoun resolution. In *NeurIPS*, 2023b.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/2cq8FyBfDk.txt b/papers/2cq8FyBfDk.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4ac7ee1b5c750d54e7fe17b25fda8163aa22298a
--- /dev/null
+++ b/papers/2cq8FyBfDk.txt
@@ -0,0 +1,556 @@
+
+
+{0}------------------------------------------------
+
+# PROTEINVISTA: A COMPUTE-EFFICIENT ATOM-LEVEL 3D CNN THAT OUTPERFORMS SEQUENCE TRANSFORMERS IN PROTEIN-LIGAND PREDICTION
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Protein function emerges from three-dimensional geometry, but many large-scale prediction pipelines still rely on linear sequence embeddings alone. Although structure-aware protein graph neural networks add residue connectivity, they omit atom-level details and therefore struggle to encode the detailed chemistry of binding sites. Here, we introduce ProteinVista, a compute-efficient 3D convolutional neural network that voxelizes every heavy atom, learns rotation-robust representations through 3D data augmentation, and is pre-trained on over 500 000 AlphaFold-2 structures, which is more than two orders of magnitude less data than used for training state-of-the-art protein language models. Despite its compact size of 123 million parameters, ProteinVista outperforms sequence transformers on three benchmarks that require fine structural resolution: enzyme-substrate classification; transporter-substrate classification; and drug-target inhibition prediction. A simple ensemble with ESM-2 can further improve accuracy, indicating that sequence and structure signals are partly complementary. The results demonstrate that full-atom 3D CNNs are both tractable and superior than protein transformers for structure-dependent tasks. An open-source Python implementation makes ProteinVista easily accessible for application and fine-tuning.
+
+## 1 INTRODUCTION
+
+Protein sequence databases are expanding orders of magnitude faster than experimental annotation can keep pace, widening the knowledge gap between sequence and function (UniProt Consortium, 2021). Scalable *in silico* methods are therefore needed to translate raw sequences into biological insights.
+
+Today’s leading approaches encode sequences with transformer-based protein language models (PLMs) such as ESM-2 and ProtT5 (Lin et al., 2023; Elnaggar et al., 2022). Trained on hundreds of millions of sequences, PLMs capture evolutionarily conserved motifs and long-range dependencies that underpin function. Function, however, is ultimately determined by the three-dimensional protein geometry. While large PLMs can infer structure implicitly, as the success of AlphaFold-2 (Jumper et al., 2021), RosettaFold (Baek et al., 2021), and ESMFold (Lin et al., 2023) shows, many applications demand atom-level accuracy. Supplying models with explicit coordinates should therefore benefit tasks that require precise active- or binding-site geometries.
+
+Recent work has begun to feed deep learning models with explicit structural data. Approaches such as DeepFRI (Gligorijević et al., 2021), GearNet (Zhang et al., 2023a), and ESM-GearNet (Zhang et al., 2023b) represent proteins as graphs, where residues are treated as nodes encoded by PLM embeddings and edges capture covalent bonds or spatial proximity. The result is a protein graph that can be processed by a graph neural network (GNN) (Zhou et al., 2020). These models are typically pre-trained using predicted protein structures from AlphaFold-2 (Jumper et al., 2021).
+
+These protein graphs capture residue connectivity but ignore the precise arrangement of atoms. Bond angles, side-chain conformations, and binding pocket geometries are either oversimplified into edge features or omitted altogether. Because large PLMs already infer many residue-residue contacts from sequence alone, augmenting them with a connectivity graph yields only incremental gains, such as faster convergence and small accuracy improvements. For instance, in the extensive ESM-
+
+{1}------------------------------------------------
+
+GearNet study, most investigated protein graph encodings only slightly outperformed the sequence-only ESM-2 baseline, with some even performing worse (Zhang et al., 2023b).
+
+Finer-grained graphs, such as GPS-Fun (Yuan et al., 2024), move closer to atom-level detail, but still treat proteins as topological networks with no direct mapping to 3D space. For tasks that require information on subtle geometric details, such as binding partner complementarity, electrostatics, and active sites, this abstraction can reduce predictive power. A model that uses the full, continuous 3D coordinates of every atom should be better at extracting information about the physics and chemistry that govern molecular interactions.
+
+Convolutional neural networks (CNNs), originally popularized in computer vision for 2D image classification and object detection, have been adapted to volumetric 3D data (Maturana & Scherer, 2015). Between 2017 and 2020, three-dimensional CNNs (3D CNNs) were popular choices for processing 3D protein representations. Early studies used local or simplified input representations: DeepSite locates binding pockets from local grids (Jiménez et al., 2017), EnzyNet predicts EC numbers from the atomic positions of the protein carbon backbone (Amidi et al., 2018), and VoroCNN converts atomic coordinates into a contact graph with Voronoi diagrams to evaluate how well each region of a structure is folded (Igashov et al., 2021). 3DCNN\_MQA extends these ideas and uses full atomic 3D CNNs to assess the quality of predicted protein structures (Derevyanko et al., 2018). All these methods were constrained by the limited GPU memory and the absence of today’s large public structure datasets such as AlphaFoldDB (Jumper et al., 2021), resulting in models with simplified or localized representations without large-scale pretraining.
+
+Despite recent hardware and data gains, deep learning models acting on full atomic protein 3D structures remain uncommon. It is believed that applying 3D CNNs to entire, high-resolution protein structures is computationally inefficient due to the sparsity of protein atoms in 3D space and the significant memory requirements (Swenson et al., 2020; Gligorijević et al., 2021). Additionally, proteins lack a canonical orientation, whereas vanilla CNNs are not rotation and translation invariant. Solutions therefore require either invariant architectures or extensive orientation augmentation. Nevertheless, recent evidence shows that 3D CNNs for proteins can add complementary information beyond what sequence-based models learn, demonstrated by successfully predicting masked amino acids from local 3D environments (Kulikova et al., 2023).
+
+Here we introduce ProteinVista, a 3D CNN encoder that processes full-atom protein structures (Figure 1). The model maps each atom to a 3D voxel grid and is pre-trained on ~500 000 structures from the AlphaFoldDB (Jumper et al., 2021). We aimed to achieve rotation-invariant predictions through extensive 3D augmentations, while grid sizes adaptive to protein size mitigate memory wastage for smaller proteins. Because the pipeline uses only predicted structures, it can be applied to the vast protein sequence space without requiring experimental data.
+
+ProteinVista surpasses current best methods for tasks that depend on fine structural details, such as transporter and enzyme substrate prediction, as well as drug-target interaction prediction. This performance is achieved while requiring 5 times fewer learnable parameters (123 M vs. 650 M for ESM-2) and more than two orders less pre-training data. Embeddings from ProteinVista capture information complementary to sequence-only models; a simple fusion with ESM-2 can significantly improve performance compared to either model alone. An open-source, easy-to-use Python implementation enables the training and application of ProteinVista.
+
+The contributions of this work can be summarized as follows:
+
+- We introduce the first compute-efficient full-atom 3D CNN that was pretrained on large-scale AlphaFold-2 structures to learn rich geometric representations from voxelized proteins.
+- We show that ProteinVista provides complementary information to sequence transformers, resulting in enhanced performance on structure-dependent prediction tasks.
+- We provide an open-source Python implementation that is easy to use and extend.
+
+{2}------------------------------------------------
+
+
+
+The diagram illustrates the ProteinVista workflow in four panels. Panel (a) shows a PDB file icon being processed into a 3D voxel grid, which is a 3D plot of atoms. Panel (b) shows this grid being input into a Convolutional Neural Network (CNN), represented by a series of blue blocks, resulting in a fixed-length embedding vector. Panel (c) shows the 3D grid undergoing random rotations (90 degrees) and mirror reflections. Panel (d) shows the processed grid being input into a 3D-CNN, which generates an embedding. This embedding is compared with an ESM-2 embedding using Contrastive Learning, indicated by arrows pointing towards and away from each other.
+
+Figure 1: Overview of the ProteinVista workflow. (a) PDB structures are voxelized into 3D grids. (b) The resulting grid serves as input to a 3D CNN. (c) Each structure undergoes random rotations and mirror reflections. (d) ProteinVista is pre-trained with a contrastive objective.
+
+Figure 1: **Overview of the ProteinVista workflow.** (a) PDB structures are voxelized into 3D grids that encode the positions of the most common heavy atoms in the protein. (b) The resulting grid serves as input to a 3D convolutional neural network (3D CNN). Convolutional features are globally averaged to yield a fixed-length protein embedding. (c) To enforce rotational invariance, each structure undergoes random rotations and mirror reflections during training. (d) ProteinVista is pre-trained with a contrastive objective that pulls embeddings toward the corresponding ESM-2 embedding of the same protein and pushes them away from those of other proteins.
+
+## 2 PROTEINVISTA ARCHITECTURE AND TRAINING
+
+### 2.1 3D PROTEIN INPUT REPRESENTATIONS
+
+ProteinVista encodes full-atom protein structures as five-channel 3D voxel grids at $1.0 \text{ \AA}$ resolution (Figure 1). Each channel stores the local density of one of the five most common heavy-atom types: carbon, nitrogen, oxygen, sulfur, and phosphorus. For each voxel these values are stored in a 5-dimensional vector, and hence each protein is represented by a 4D array: three spatial dimensions plus one channel dimension.
+
+Instead of one-hot encoding the presence of atoms at voxels, each atom contributes a continuous density to the 3D grid. For an atom of type $c \in \mathbb{R}^3$ at position $\vec{r} \in \mathbb{R}^3$ , its contribution to the $c$ -channel of the voxel centered at $\vec{v} = \exp(-\|\vec{v} - \vec{r}\|/\sigma^2)$ with $\sigma = 1$ . This reduces discretizations artifacts, preserves local geometry, and creates a smoother, more continuous input.
+
+To process proteins of widely differing sizes while limiting empty space in the input boxes, we embed each structure in the smallest of four cubic boxes ( $64^3$ , $96^3$ , $128^3$ , or $160^3 \text{ \AA}^3$ ) that fully encloses all atoms. This adaptive boxing minimizes the number of empty voxels and thus lowers memory and compute requirements. Structures that exceed the $160^3$ -voxel grid are cropped at the bounding box.
+
+### 2.2 5 BLOCKS OF 3D CONVOLUTIONAL OPERATIONS
+
+ProteinVista consists of a three-dimensional convolutional neural network (3D CNN) that operates directly on the atomic-density voxel grid described above. Each protein input box is processed by five ProteinVista blocks (Table S1), where each block contains one or two 3D convolution layers, a
+
+{3}------------------------------------------------
+
+batch normalization layer, and a ReLU layer, followed by a $2 \times 2 \times 2$ max-pooling operation that halves the spatial resolution. Kernel sizes for the convolutions in layers 1–5 are $7^3$ , $5^3$ , $3^3$ , $3^3$ , and $3^3$ , respectively. After the final layer, the 3D feature map is reduced in resolution and each voxel is encoded as a 1 024-dimensional vector. Global average pooling over all voxels yields a fixed 1 024-dimensional representation for every protein, independent of the input box size.
+
+For protein-small molecule interaction prediction tasks, this protein vector is concatenated with a 768-dimensional MolFormer small-molecule embedding (Ross et al., 2022). The resulting vector is fed to a two-layer feed-forward network (256 hidden units) with batch normalization, ReLU activation, and dropout to produce the task-specific output prediction. In total, ProteinVista contains $\sim 123$ M learnable parameters, which is much fewer than the number of parameters of current protein language models that range up to 15 billion (Lin et al., 2023; Hayes et al., 2025).
+
+### 2.3 PRETRAINING
+
+We pre-trained ProteinVista on $> 500\,000$ AlphaFold-2-predicted structures comprising proteins from the Swiss-Prot database (UniProt Consortium, 2021). We explored two pre-training objectives. (i) Multi-task regression: The model was trained to predict 23 *in silico* computed Rosetta scores (Table S2), which summarize per-residue and whole-protein physicochemical properties. Gelman et al. (2025) recently used this objective effectively for pre-training PLMs for mutation-effect prediction. (ii) Contrastive alignment: We projected ESM-2 sequence embeddings (Lin et al., 2023) and ProteinVista structure embeddings into a shared embedding space: the 1 024-dimensional structure embedding produced by ProteinVista is passed through a two-layer projection head to yield a 256-dimensional vector $\mathbf{z}^{\text{PV}}$ . A similar projection head maps the ESM-2 embedding to $\mathbf{z}^{\text{ESM}} \in \mathbb{R}^{256}$ . For a mini-batch of $n$ proteins we form the similarity matrix $S$ with entries $S_{ij} = \langle \mathbf{z}_i^{\text{PV}}, \mathbf{z}_j^{\text{ESM}} \rangle$ and optimize the symmetric InfoNCE loss with the temperature $\tau = 0.07$ (Radford et al., 2021). The loss encourages paired structure–sequence embeddings from the same protein to be close, and embeddings from different proteins to be distant (Figure 1d).
+
+Ablation experiments (see section 4.2) showed that the contrastive objective yields slightly superior downstream performance (+1.0% relative improvement in $R^2$ on IC50 prediction). Consequently, all task-specific models are initialized with the contrastively pre-trained weights; the task-specific prediction head is replaced with a freshly initialized fully connected neural network, and the entire network is then fine-tuned end-to-end.
+
+### 2.4 DATA AUGMENTATION
+
+Because standard 3D CNNs are orientation-dependent, ProteinVista produces distinct embeddings for rotated copies of the same structure. To this end, every time a protein is presented to ProteinVista, we apply random geometric augmentations during both pre-training and fine-tuning: each input is either left unchanged, mirrored at one of the three Cartesian axes, or rotated by $90^\circ$ around one of those axes, with every option chosen at equal probability (Figure 1c).
+
+Augmenting each protein in a different way each time it is presented to the model enables the network to learn more robust embeddings and predictions, which are less affected by arbitrary rotations of the input protein.
+
+## 3 EXPERIMENTS
+
+In this section, we evaluate the performance of ProteinVista in three protein binding tasks and one protein function prediction task. First, we compare ProteinVista with the widely used ESM-2 models under identical training conditions. Next, we compare ProteinVista’s performance against the latest state-of-the-art methods for these tasks.
+
+### 3.1 EXPERIMENTAL SETUP
+
+We compared ProteinVista with two ESM-2 models, one of comparable scale (ESM-2150M with 150 M parameters) and one of larger scale (ESM-2650M with 650 M parameters). For each task, all
+
+{4}------------------------------------------------
+
+models were fine-tuned under identical conditions: we searched for the optimal learning rate, trained the models until no further improvement in performance was observed, and selected the model that performed best on the validation set. ProteinVista and both ESM-2 variants received identical, fixed MolFormer embeddings for the small molecules, and the same two-layer prediction head with 256 hidden units, batch normalization, and ReLU activation function.
+
+This deliberately simple prediction pipeline likely underestimates for all models the peak accuracy achievable with a fully optimized pipeline. Fine-tuning the small-molecule encoder or feeding the fine-tuned protein embeddings as input for separate machine learning models can yield higher scores (Kroll et al., 2023). However, we chose the identical, simple pipeline for all models to isolate the effect of the protein encoder. We also analyzed how ProteinVista’s performance changes with more optimized training and prediction pipelines (see sections 3.3 and 4.2).
+
+### 3.2 BINDING PREDICTION TASKS
+
+To quantify the practical benefit of ProteinVista’s atom-level information, we benchmarked it against ESM-2 on three problems that require accurate pocket recognition and ligand matching: (i) predicting whether a small molecule is a substrate of a given enzyme (Kroll et al., 2023), (ii) predicting whether a small molecule is a substrate of a given transporter (Kroll et al., 2024a), and (iii) prediction of the inhibition constant $IC_{50}$ for drug–target pairs (Gilson et al., 2016). For details on the datasets, see Table S3.
+
+Table 1: Prediction performance of ESM-2 and ProteinVista on the transporter-substrate (TSP) and enzyme-substrate (ESP) test sets. Higher values indicate better performance. Acc: Accuracy; ROC-AUC: Receiver Operating Characteristic – Area Under the Curve; MCC: Mathews’ correlation coefficient.
+
+| Model | Transporter-Substrate (TSP) | | | | Enzyme-Substrate (ESP) | | | |
+|-|-|-|-|-|-|-|-|-|
+| | Acc | ROC-AUC | MCC | Precision | Acc | ROC-AUC | MCC | Precision |
+| ESM-2 150M | 88.5% | 0.943 | 0.73 | 0.77 | 91.8% | 0.957 | 0.79 | 0.86 |
+| ESM-2 650M | 89.3% | 0.947 | 0.74 | 0.79 | 91.9% | 0.955 | 0.79 | 0.86 |
+| ProteinVista | 90.8% | 0.952 | 0.77 | 0.85 | 91.8% | 0.951 | 0.78 | 0.89 |
+| ESM-ProteinVista | 91.5% | 0.960 | 0.79 | 0.85 | 93.0% | 0.961 | 0.82 | 0.91 |
+| SPOT | 92.4% | 0.961 | 0.80 | 0.88 | – | – | – | – |
+| ProSmith-ESP | – | – | – | – | 94.2% | 0.972 | 0.85 | – |
+| Fusion_ESP 650M | – | – | – | – | 94.2% | 0.965 | 0.85 | 0.94 |
+| ESM-ProteinVistaOP | 93.2% | 0.969 | 0.83 | 0.91 | 94.4% | 0.967 | 0.86 | 0.95 |
+
+On both binary classification benchmarks, the transporter–substrate prediction (TSP) and enzyme–substrate prediction (ESP) tasks, ProteinVista surpasses or equals the sequence-only ESM-2150M and even the larger ESM-2650M (Table 1). Notably, the ESM-2 models were pre-trained on ~250 million protein sequences, whereas ProteinVista was pre-trained on only ~0.5 million structures.
+
+Averaging the predictions of ProteinVista and ESM-2 yields an ensemble that improves on both binary benchmarks (Table 1). This ESM–ProteinVista ensemble surpasses each single model across all metrics, indicating complementary strength: while ESM-2 likely captures evolutionary sequence motifs, ProteinVista contributes explicit 3D pocket geometry. For both prediction tasks, we performed a McNemar’s test to assess whether there are significant differences in the error rates of the ESM-ProteinVista ensemble and ESM-2650M alone, and the differences were found to be highly significant ( $p < 10^{-13}$ for TSP and $p < 10^{-17}$ for ESP).
+
+The gap between the sequence and structure embeddings widens on the $IC_{50}$ regression task: ProteinVista alone already outperforms both ESM-2 variants, and the ESM–ProteinVista ensemble performs worse (Table 2). We performed a one-sided Wilcoxon signed-rank test on paired squared errors to assess whether ProteinVista yields significantly smaller errors than ESM-2650M, and the difference in model predictions is indeed highly significant ( $p < 10^{-304}$ ). Accurate affinity pre-
+
+{5}------------------------------------------------
+
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+193
+194
+195
+196
+197
+198
+199
+200
+201
+202
+203
+204
+205
+206
+207
+208
+209
+210
+211
+212
+213
+214
+215
+216
+217
+218
+219
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
+235
+236
+237
+238
+239
+240
+241
+242
+243
+244
+245
+246
+247
+248
+249
+250
+251
+252
+253
+254
+255
+256
+257
+258
+259
+260
+261
+262
+263
+264
+265
+266
+267
+268
+269
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+193
+194
+195
+196
+197
+198
+199
+200
+201
+202
+203
+204
+205
+206
+207
+208
+209
+210
+211
+212
+213
+214
+215
+216
+217
+218
+219
+220
+221
+222
+223
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
+235
+236
+237
+238
+239
+240
+241
+242
+243
+244
+245
+246
+247
+248
+249
+250
+251
+252
+253
+254
+255
+256
+257
+258
+259
+260
+261
+262
+263
+264
+265
+266
+267
+268
+269
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+
+diction for drug-like ligands relies strongly on fine-grained structural detail, leaving little additional information for the sequence model to contribute. Thus, the relative value of sequence and structure information depends on the task: sequence- and homology-based information is relevant for broad classification problems, whereas detailed affinity prediction requires high-resolution structural context.
+
+Table 2: Prediction performance of ESM-2 and ProteinVista on the BindingDB test set for the IC50 prediction task. Arrows show whether higher ( $\uparrow$ ) or lower ( $\downarrow$ ) values indicate better performance. $R^2$ : Coefficient of determination; MSE: Mean squared error; MAE: Mean absolute error.
+
+| | $R^2 \uparrow$ | Pearson $r \uparrow$ | MSE $\downarrow$ | MAE $\downarrow$ |
+|-|-|-|-|-|
+| ESM-2 150M | 0.60 | 0.78 | 0.86 | 0.71 |
+| ESM-2 650M | 0.61 | 0.78 | 0.86 | 0.70 |
+| ProteinVista | 0.69 | 0.83 | 0.67 | 0.62 |
+| ESM-ProteinVista | 0.68 | 0.82 | 0.70 | 0.63 |
+
+### 3.3 COMPARISON TO STATE-OF-THE-ART SUBSTRATE PREDICTION MODELS
+
+To test how performance changes under optimized conditions, we optimized the enzyme- and transporter-substrate training and prediction pipelines for ESM-2650M and ProteinVista: During fine-tuning, we updated the small molecule embedding weights jointly with the ProteinVista encoder, then extracted fine-tuned protein and small molecule MolFormer embeddings for all data points. Using these embeddings, we trained a contrastive network for the binary prediction tasks. Finally, we combined the predictions resulting from the contrastive networks with ProteinVista and ESM-2650M embeddings through simple averaging. We refer to the ensemble model resulting from this optimized pipeline (OP) as ESM-ProteinVistaOP.
+
+ESM-ProteinVistaOP surpasses the current best models. On the transporter-substrate benchmark, it attains an accuracy of 93.2% and a Matthews’ correlation coefficient (MCC) of 0.83, exceeding the state-of-the-art SPOT model that achieves an accuracy of 92.3% and an MCC of 0.80 (Table 1). For the enzyme-substrate prediction, ProteinVistaOP reaches an accuracy of 94.4% and an 0.86 MCC, slightly outperforming the state-of-the-art models ProSmith-ESP (Kroll et al., 2024b) and Fusion.ESP (Du et al., 2025).
+
+These results confirm that, when coupled with an appropriate training pipeline, ProteinVista serves as a strong foundation for tasks requiring detailed 3D pocket recognition. We expect many structure-dependent protein prediction problems to benefit from integrating ProteinVista as a protein encoder.
+
+### 3.4 HOMOLOGY-RELIANT PREDICTION TASKS
+
+Our binding-task results indicate that ProteinVista is effective when the outcome is determined by an explicit, atom-level description of a protein’s binding site. To also test its utility on problems believed to be well explained by sequence homology, we evaluated ProteinVista’s performance on Gene Ontology (GO) annotation (Dimmer et al., 2012) predictions, which describe molecular functions, biological processes, and cellular components of proteins.
+
+GO inference is often approached by nearest-neighbour searches: transferring annotations from the closest BLAST hit already achieves reasonable results in the CAFA GO Term prediction challenge (Zhou et al., 2019; Altschul et al., 1990). Consequently, a sequence-based transformer with global attention might outperform a structure-aware CNN that relies on local 3D filters.
+
+We fine-tuned ProteinVista and ESM-2650M for predicting molecular-function GO terms and evaluated them on an independent test set. ProteinVista reached an $F_{\max}$ of 0.57, below ESM-2650M’s 0.62. Averaging their prediction raised performance marginally to 0.63. Thus, when functional inference depends mainly on conserved motifs or overall homology, structure encoders add limited value.
+
+{6}------------------------------------------------
+
+## 4 ANALYSIS AND ABLATION STUDIES
+
+### 4.1 PREDICTION ACCURACY VARIES WITH SEQUENCE AND STRUCTURAL SIMILARITY
+
+To examine under which conditions ProteinVista performs best, we partitioned the transporter-substrate test set according to three criteria (Figure 4.1 a-c). We first binned proteins by their maximum pairwise sequence identity compared to the training proteins (Figure 4.1a). In high-identity bins, ProteinVista outperforms ESM-2. This indicates that the functional impact of a few amino acid substitutions is captured more effectively from 3D structures than from linear sequences. As identity drops, the gap narrows. In the lowest-identity bin, the models perform similarly, but averaging their predictions improves accuracy compared to each model alone.
+
+We repeated the analysis using the maximum pairwise TM-score, a measure of global structural similarity (Zhang & Skolnick, 2005), instead of sequence identity (Figure 4.1b). The pattern is similar: ProteinVista performs best when the test fold is well-represented in the training set, whereas ESM-2 performs better when similar structures are absent from the training set. Across all similarity ranges, the ESM-ProteinVista ensemble outperforms both single models, showing their complementarity.
+
+ProteinVista relies on AlphaFold-2-predicted structures. We examined how prediction accuracy varies with the quality of those structures (Jumper et al., 2021), estimated as the mean per-residue confidence score (pLDDT; Figure 4.1c). Stratifying the test set by pLDDT shows that ProteinVista performs best on high-confidence structures (pLDDT > 90), suggesting that experimental structures could further improve accuracy. On low-confidence models, ProteinVista performs comparably to ESM-2. Most test proteins, however, fall into the high-confidence range (Fig.4.1d), indicating that the observed gains reflect the majority of cases rather than a small subset.
+
+### 4.2 ABLATION STUDIES
+
+We quantified the effect of key architectural and training choices by starting from the reference ProteinVista model used for the IC50 regression benchmark and perturbing one component at a time (Figure 4.1e). Reported changes are relative to the reference coefficient of determination $R^2 = 0.69$ achieved with the full model.
+
+During inference, ProteinVista averages predictions from five randomly augmented views of each protein. Reducing the ensemble to a single view lowered $R^2$ by 6.4%, confirming that multiple orientations are essential for robust inference. Expanding to ten instead of five views yields a small 0.9% gain. Strikingly, disabling rotational and mirror augmentations during fine-tuning had virtually no impact (-0.1 %), implying that the network learns a stable representation already during pre-training and can be fine-tuned on unaugmented data.
+
+Replacing the contrastive alignment to ESM-2 embeddings with multi-task regression on 23 Rosetta energy terms decreased $R^2$ by 1.0%. Both objectives therefore produce competitive encoders, with the contrastive objective offering a slight advantage for affinity prediction. Voxel size resolution also influences performance: reducing the resolution from 1.0Å to 1.5Å per voxel reduced $R^2$ by 1.1%. This indicates that atom-level resolution is important but can be modestly relaxed without catastrophic loss.
+
+### 4.3 COMPUTE AND STORAGE COMPARISON
+
+We compared compute, data, and storage requirements for ProteinVista and the ESM-2 models (Figure 4.3). A single forward pass requires on average 415 Giga Floating Point Operations (GFLOPs) for ProteinVista, 520 GFLOPs for ESM-2650M, and 140 GFLOPs for ESM-2150M (Figure 4.3b). Despite similar numbers of mathematical operations compared to ESM-2650M, ProteinVista processes 1 000 proteins on one A100 GPU in 20 seconds during training, versus 215 seconds for ESM-2150M and 426 seconds for the ESM-2650M (Figure 4.3c). This suggests that computations for the ProteinVista CNN with only five ProteinVista blocks can be parallelized more efficiently than those required for the ESM-2 models that have many more encoder layers. On the transporter-substrate prediction task, ProteinVista achieved its best performance after 52 epochs and ESM-2650M after 47 epochs, indicating that faster inference does not come at the cost of slower convergence.
+
+{7}------------------------------------------------
+
+
+
+Figure 2 consists of five panels (a-e) illustrating the performance of the ESM-ProteinVista ensemble. Panels (a), (b), and (c) show the Matthews correlation coefficient (MCC) for different subsets of the transporter-substrate test set, with circle areas proportional to the number of data points. Panel (d) shows the distribution of pLDDT scores across test proteins. Panel (e) shows the relative change in $R^2$ for various architectural and training choices.
+
+| Choice | Relative change in $R^2$ |
+|-|-|
+| Rosetta vs. CL pretraining | ~1.2% |
+| 1.5Å vs. 1.0Å resolution | ~0.8% |
+| no training augmentation | ~0.4% |
+| 10 vs. 5 predictions | ~1.8% |
+| 1 vs. 5 predictions | ~-5.5% |
+
+Figure 2: The ESM-ProteinVista ensemble combines complementary signals from sequence and structure. The figure contains five panels: (a) MCC vs. Sequence identity (0-40%, 40-60%, 60-80%, 80-100%); (b) MCC vs. Structure Similarity (0-60, 60-80, 80-90, 90-100); (c) MCC vs. 3D confidence score (0-80, 80-90, 90-100); (d) Histogram of Confidence score (0-100) showing Frequency (0-250); (e) Relative change in R^2 for various architectural and training choices.
+
+Figure 2: **The ESM-ProteinVista ensemble combines complementary signals from sequence and structure.** Matthews correlation coefficient (MCC) on different subsets of the transporter-substrate test set based on (a) maximum sequence identity to the training set and (b) maximum TM-score (global structural similarity) to any training structure. (c) MCC binned by AlphaFold-2 average pLDDT confidence score of the predicted structures. The areas of the circles in panels (a) - (c) are proportional to the number of data points in each subset. (d) Distribution of pLDDT scores across test proteins. (e) Relative change in $IC_{50}$ regression performance for alternative architectural or training choices, expressed with respect to the selected ProteinVista design.
+
+Pre-training requirements diverge even more: ESM-2650M ran for $\sim 7$ days on 128 H100 GPUs and 250 M different protein sequences, whereas ProteinVista finished pre-training in 48 hours on four A100 GPUs using structures from $\sim 0.5$ M proteins. The ProteinVista pre-training thus used only about 1% of the GPU-hours. The trade-off is disk space: For example, the 5 800 proteins from the transporter dataset require only 3 MB when storing the linear amino acid sequence (in FASTA format) but $\sim 75$ GB as float32 coordinate NumPy arrays (Figure 4.3d). Thus, ProteinVista is cheaper in compute and data, but requires larger storage for 3D inputs.
+
+## 5 DISCUSSION AND CONCLUSION
+
+ProteinVista aims to convert the vast amount of available protein structures into detailed biological insights and applies 3D CNNs directly to high-resolution protein structures. By explicitly using atom-level information, the model has a decisive advantage in prediction tasks that require accurate representations of the precise geometry of a protein’s structure. Despite being pre-trained on orders of magnitude fewer proteins and computational resources, ProteinVista outperforms or matches the performance of the widely used sequence-based ESM-2 model on three benchmarks of protein-small molecule interaction prediction tasks.
+
+The model achieves this performance without annotations of functionally relevant structural regions, such as binding sites, indicating that it can infer and encode such regions autonomously. Adapting visualization methods such as Grad-CAM (Selvaraju et al., 2017) to 3D convolutions could reveal
+
+{8}------------------------------------------------
+
+
+
+Figure 3 consists of four bar charts labeled (a) through (d), comparing ProteinVista (blue) with ESM-2-150M (red) and ESM-2-650M (dark red).
+
+- (a) Model Parameter Count:** The y-axis is 'Parameters (Millions)' from 0 to 600. ProteinVista has approximately 120 million parameters, ESM-2-150M has approximately 150 million, and ESM-2-650M has approximately 650 million.
+- (b) Average FLOPs per Input:** The y-axis is 'GFLOPs per Input' from 0 to 500. ProteinVista has approximately 400 GFLOPs per input, ESM-2-150M has approximately 150 GFLOPs per input, and ESM-2-650M has approximately 500 GFLOPs per input.
+- (c) Inference Time on Single A100:** The y-axis is 'Time per 1k Samples (s)' from 0 to 400. ProteinVista has approximately 10 seconds, ESM-2-150M has approximately 200 seconds, and ESM-2-650M has approximately 400 seconds.
+- (d) Dataset Storage Size for 1000 Proteins:** The y-axis is 'Storage (GB)' on a logarithmic scale from $10^{-3}$ to $10^1$ . ProteinVista requires approximately $10^0$ GB (1 GB) for 3D Coordinates (NumPy), while Sequences (FASTA) require approximately $10^{-3}$ GB.
+
+Figure 3: Comparison of ProteinVista with ESM-2-150M and ESM-2-650M across four metrics: (a) Model Parameter Count, (b) Average FLOPs per Input, (c) Inference Time on Single A100, and (d) Dataset Storage Size for 1000 Proteins.
+
+Figure 3: **ProteinVista is compute- and runtime-efficient but storage-intensive.** Comparison of ProteinVista with ESM-2150M and ESM-2650M for (a) trainable parameters, (b) average GFLOPs per protein, (c) training time to process 1 000 proteins (A100 GPU), and (d) disk space required to store input data for 1 000 proteins.
+
+the voxels that drive individual predictions. This could pinpoint candidate binding pockets for downstream analysis or experimental validation (Hara et al., 2023).
+
+Effective pre-training strongly influences downstream performance of protein encoders. Here, we compared two pre-training objectives on approximately 500 000 structures: (i) Regression on 33 Rosetta scores, reflecting physicochemical properties and (ii) contrastive learning against ESM-2 embeddings of the linear amino acid sequence. The computer vision literature offers a rich catalog of alternative objectives, such as masked voxel prediction, jigsaw tasks, rotation prediction, and multi-view contrastive learning, which could be transferred to volumetric protein data and could yield even more expressive representations. Furthermore, the depth and breadth of ProteinVista’s neural network are modest compared to large 2D-CNNs that follow well-established scaling laws (Boopathy & Fiete, 2024). It is not yet known whether similar laws apply in the sparse, high-resolution regime of protein space, but systematically exploring larger, deeper 3D CNNs is a promising path toward further improvements.
+
+A current limitation is that ProteinVista encodes only a single rigid snapshot of each structure. Proteins, however, are dynamic and sample ensembles of conformations that govern function and binding partner affinity. Incorporating alternative snapshots, such as those generated by DynaMine (Cilia et al., 2013), C-Fold (Ellaway et al., 2024), MD-Gen (Jing et al., 2024), AF2 $\chi$ (Cagiada et al., 2025), or molecular-dynamics simulations (Hénin et al., 2022), would allow the network to observe how pockets expand or contract. As demonstrated here, even simple augmentations such as random rotations improve performance; dynamic augmentations should supply even richer geometric information and yield more robust predictions.
+
+ProteinVista’s strong performance on structure-sensitive tasks suggests several new applications. On the one hand, predicting the functional impact of mutations could profit from the detailed encoding of the geometry of all atoms; accurate mutant structures can be produced by tools such as PDBFixer (Eastman et al., 2017). Furthermore, protein-protein interaction predictions depend on recognizing complementary surface patches across two macromolecules, an inherently structural problem well aligned with ProteinVista’s capabilities.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- Stephen F Altschul, Warren Gish, Webb Miller, Eugene W Myers, and David J Lipman. Basic local alignment search tool. *J. Mol. Biol.*, 215(3):403–410, 1990.
+- Afshine Amidi, Shervine Amidi, Dimitrios Vlachakis, Vasileios Megalooikonomou, Nikos Paragiós, and Evangelia I Zacharaki. Enzynet: enzyme classification using 3d convolutional neural networks on spatial representation. *PeerJ*, 6:e4750, 2018.
+- Minkyung Baek, Frank DiMaio, Ivan Anishchenko, Justas Dauparas, Sergey Ovchinnikov, Gyu Rie Lee, Jue Wang, Qian Cong, Lisa N. Kinch, R. Dustin Schaeffer, Claudia Millán, Hahnbeom Park, Carson Adams, Caleb R. Glassman, Andy DeGiovanni, Jose H. Pereira, Andria V. Rodrigues, Alberdina A. van Dijk, Ana C. Ebrecht, Diederik J. Opperman, Theo Sagmeister, Christoph Buhlheller, Tea Pavkov-Keller, Manoj K. Rathinaswamy, Udit Dalwadi, Calvin K. Yip, John E. Burke, K. Christopher Garcia, Nick V. Grishin, Paul D. Adams, Randy J. Read, and David Baker. Accurate prediction of protein structures and interactions using a three-track neural network. *Science*, 373(6557):871–876, 2021. doi: 10.1126/science.abj8754.
+- Akhilan Boopathy and Ila Fiete. Unified neural network scaling laws and scale-time equivalence. *arXiv preprint arXiv:2409.05782*, 2024.
+- Matteo Cagiada, F Emil Thomasen, Sergey Ovchinnikov, Charlotte M Deane, and Kresten Lindorff-Larsen. Af2x: Predicting protein side-chain rotamer distributions with alphafold2. *bioRxiv preprint at *, pp. 2025–04, 2025.
+- Elisa Cilia, Rita Pancesa, Peter Tompa, Tom Lenaerts, and Wim F Vranken. From protein sequence to dynamics and disorder with dynamine. *Nat. Commun.*, 4(1):2741, 2013.
+- Georgy Derevyanko, Sergei Grudinin, Yoshua Bengio, and Guillaume Lamoureux. Deep convolutional networks for quality assessment of protein folds. *Bioinformatics*, 34(23):4046–4053, 2018.
+- Emily C Dimmer, Rachael P Huntley, Yasmin Alam-Faruque, Tony Sawford, Claire O’Donovan, Maria J Martin, Benoit Bely, Paul Browne, Wei Mun Chan, Ruth Eberhardt, et al. The uniprot-go annotation database in 2011. *Nucleic Acids Res.*, 40(D1):D565–D570, 2012.
+- Zhenjiao Du, Weimin Fu, Xiaolong Guo, Doina Caragea, and Yonghui Li. Fusionesp: Improved enzyme–substrate pair prediction by fusing protein and chemical knowledge. *J. Chem. Inf. Model.*, 65(6):2806–2817, 2025.
+- Peter Eastman, Jason Swails, John D Chodera, Robert T McGibbon, Yutong Zhao, Kyle A Beauchamp, Lee-Ping Wang, Andrew C Simmonett, Matthew P Harrigan, Chaya D Stern, et al. Openmm 7: Rapid development of high performance algorithms for molecular dynamics. *PLoS Comput. Biol.*, 13(7):e1005659, 2017.
+- Joseph II Ellaway, Stephen Anyango, Sreenath Nair, Hossam A Zaki, Nurul Nadzirin, Harold R Powell, Aleksandras Gutmanas, Mihaly Varadi, and Sameer Velankar. Identifying protein conformational states in the protein data bank: toward unlocking the potential of integrative dynamics studies. *Struct. Dyn.*, 11(3), 2024.
+- Ahmed Elnaggar, Michael Heinzinger, Christian Dallago, Ghalia Rehawi, Yu Wang, Llion Jones, Tom Gibbs, Tamas Feher, Christoph Angerer, Martin Steinegger, Debsindhu Bhowmik, and Burkhard Rost. Prottrans: Toward understanding the language of life through self-supervised learning. *IEEE Trans. Pattern Anal. Mach. Intell.*, 44(10):7112–7127, 2022. doi: 10.1109/TPAMI.2021.3095381.
+- Sam Gelman, Bryce Johnson, Chase R Feschlin, Arnav Sharma, Sameer D’Costa, John Peters, Anthony Gitter, and Philip A Romero. Biophysics-based protein language models for protein engineering. *Nat. Methods*, pp. 1–12, 2025.
+- Michael K Gilson, Tiqing Liu, Michael Baitaluk, George Nicola, Linda Hwang, and Jenny Chong. Bindingdb in 2015: a public database for medicinal chemistry, computational chemistry and systems pharmacology. *Nucleic Acids Res.*, 44(D1):D1045–D1053, 2016.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/2eAGrunxVz.txt b/papers/2eAGrunxVz.txt
new file mode 100644
index 0000000000000000000000000000000000000000..de813f2e6dfcc09d7a3cff928f07331c366d3686
--- /dev/null
+++ b/papers/2eAGrunxVz.txt
@@ -0,0 +1,349 @@
+
+
+{0}------------------------------------------------
+
+# SPHERICAL WATERMARK: ENCRYPTION-FREE, LOSSLESS WATERMARKING FOR DIFFUSION MODELS
+
+Xiaoxiao Hu1, Jiaqi Jin1, Sheng Li1, Wanli Peng2, Xinpeng Zhang1, Zhenxing Qian1,\*
+
+1Fudan University, 2China Agricultural University
+
+{xxhu23, jqjin24}@m.fudan.edu.cn
+
+{lisheng, zhangxinpeng, zxqian}@fudan.edu.cn
+
+wlpeng@cau.edu.cn
+
+## ABSTRACT
+
+Diffusion models have revolutionized image synthesis but raise concerns around content provenance and authenticity. Digital watermarking offers a means of tracing generated media, yet traditional schemes often introduce distributional shifts and degrade visual quality. Recent lossless methods embed watermark bits directly into the latent Gaussian prior without modifying model weights, but still require per-image key storage or heavy cryptographic overhead. In this paper, we introduce **Spherical Watermark**, an encryption-free and lossless watermarking framework that integrates seamlessly with diffusion architectures. First, our binary embedding module mixes repeated watermark bits with random padding to form a high-entropy code. Second, the spherical mapping module projects this code onto the unit sphere, applies an orthogonal rotation, and scales by a chi-square-distributed radius to recover exact multivariate Gaussian noise. We theoretically prove that the watermarked noise distribution preserves the target prior up to third-order moments, and empirically demonstrate that it is statistically indistinguishable from a standard multivariate normal distribution. Adopting Stable Diffusion, extensive experiments confirm that Spherical Watermark consistently preserves high visual fidelity while simultaneously improving traceability, computational efficiency, and robustness under attacks, thereby outperforming both lossy and lossless approaches.
+
+## 1 INTRODUCTION
+
+Diffusion models have demonstrated transformative potential in creative applications (Rombach et al., 2022; Sahoo et al., 2024), but also raise concerns over authenticity and ownership (Craver et al., 1997; Grinbaum & Adomaitis, 2022). Malicious users can exploit them to fabricate images and spread disinformation, eroding public trust and creating legal and ethical challenges. As governments and platforms face mounting pressure to address harmful content (Biden, 2023; Wiggers, 2023), reliable provenance mechanisms are urgently needed to trace and identify malicious actors.
+
+Image watermarking offers a promising direction by embedding imperceptible identifiers into images. However, traditional schemes alter the data distribution and degrade visual fidelity, whether operating in the spatial (Li et al., 2009; Bender et al., 1995) or frequency (Al-Haj, 2007; Navas et al., 2008) domain. Additionally, some approaches inject watermarks by training or fine-tuning generative models. For example, Fernandez et al. (Fernandez et al., 2023) fine-tune the Stable Diffusion (Rombach et al., 2022) decoder to bake in a hidden mark. To avoid costly retraining and improve flexibility, Wen et al. (Wen et al., 2023) embed ring-patterns in the frequency domains of the latent space. Although robust to lossy transmission, these methods introduce perceptual artifacts and reduced fidelity.
+
+Recently, the concepts of lossless or undetectable watermarking have been proposed. These methods seek to establish an invertible mapping from watermark bits to standard Gaussian noise, embedding watermarks without any modifications to the pretrained generative model. For example, Yang et al. (Yang et al., 2024) introduce Gaussian Shading which uses repeated watermarks and stream cipher for sampling but demands a unique key and nonce per image, *incurring substantial storage*
+
+---
+
+\*Corresponding author.
+
+{1}------------------------------------------------
+
+*and management overhead.* Gunn et al. (Gunn et al., 2025) later replace the stream cipher with fixed-key pseudorandom error-correcting codes (Christ & Gunn, 2024). Nonetheless, the heavyweight cryptographic constructs also introduce drawbacks: *they incur nontrivial computational and decoding latency, demand careful parameter tuning to balance code rate and error-correction capability, and fail under strong attacks that exceed the code’s designed distortion bounds.*
+
+In this paper, we propose Spherical Watermark, a simple yet effective lossless scheme that is encryption-free and robust against common attacks. Our method integrates seamlessly with pretrained diffusion models via three modules: binary embedding, spherical mapping, and diffusion integration. The binary embedding module mixes watermark bits with random paddings to produce a 3-wise independent bitstream. The spherical mapping module then projects this bitstream onto the unit sphere, applies an orthogonal rotation, and scales it by a chi-square-distributed radius. We theoretically analyze each intermediate distribution and prove that the final noise is statistically indistinguishable from standard Gaussian noise. In addition, our encryption-free design eliminates the need for per-image key storage. The diffusion integration module then feeds the watermarked noise into Stable Diffusion (Rombach et al., 2022) to produce watermarked images. Experiments show that our scheme preserves fidelity and surpasses lossy methods. Compared to lossless approaches (Gunn et al., 2025), our method offers stronger traceability, reduced complexity, and enhanced reliability.
+
+In summary, our key contributions are three-folded: 1) We propose a novel lossless watermarking framework, which seamlessly integrates with diffusion-based architectures. Our method guarantees robust watermark extraction while preserving the original generation fidelity. 2) We introduce a simple yet effective mapping strategy that transforms binary watermarks into Gaussian noise inputs. We provide both theoretical analysis and empirical evidence that the watermarked noise distribution is statistically indistinguishable from a standard multivariate normal distribution. 3) Compared to existing lossless watermarking schemes, our encryption-free approach omits key storage overhead, enabling an excellent trade-off between undetectability and watermark robustness.
+
+## 2 RELATED WORKS
+
+Digital image watermarking has been extensively studied to safeguard intellectual property. Traditional watermarking methods can be applied directly to diffusion outputs, whether operating in the spatial domain (Li et al., 2009; Bender et al., 1995), the frequency domain (Navas et al., 2008; Liu et al., 2017; Kashyap & Sinha, 2012), or via neural-network embedding (Zhang et al., 2019; Zhu et al., 2018; Tancik et al., 2020). In addition, several works embed watermarks by fine-tuning diffusion models (Fernandez et al., 2023; Xiong et al., 2023; Kim et al., 2024; Wang et al., 2025). For example, SleeperMark (Wang et al., 2025) introduces a trigger mechanism to decouple watermark information from semantic content, keeping the watermark extractable after model fine-tuning. More recently, latent-based watermarking has gained attention. Wen et al. propose the Tree-Ring (Wen et al., 2023) watermarking scheme, which embeds ring-shaped patterns into frequency domains of the latent space to enable detection. Subsequent works such as RingID (Ci et al., 2024), SEAL (Arabi et al., 2025b), and WIND (Arabi et al., 2025a) design alternative patterns. Beyond pattern-based designs, Wei et al. (Wei et al., 2024) provide a unified analytical framework for diffusion watermarking and instantiate several distribution-preserving schemes, including truncated Gaussian sampling and Gaussian ring watermarking. However, these methods are limited to merely verifying the presence of watermark, not supporting large-scale provenance.
+
+To overcome this limitation, Yang et al. (Yang et al., 2024) introduce Gaussian Shading, a provably lossless watermarking method that employs repetition codes and a stream cipher to sample from the standard Gaussian distribution. However, the reliance on a distinct cipher key and nonce for each generated image imposes a huge key-management overhead that is impractical in the real world. Gunn et al. (Gunn et al., 2025) advocate replacing the stream cipher with the pseudorandom error-correcting codes (PRC) (Christ & Gunn, 2024), which allow the generation of distinct pseudorandom sequences from a fixed secret key. PRC’s extensive cryptographic operations also introduce several challenges. Encoding and belief-propagation decoding (Pearl, 2014) incur substantial computation and latency. Finding a trade-off between code rate and error-correction strength requires careful tuning. Moreover, under aggressive post-processing or shifts in the data distribution, the scheme can hit an irreducible error floor and fail to recover the watermark. In this paper, we introduce Spherical Watermark, a framework that eliminates per-image key management, ensures lossless watermark embedding, and demonstrates superior robustness with high computational efficiency.
+
+{2}------------------------------------------------
+
+
+
+Figure 1: The overall pipeline of our framework. (a) The workflow of Spherical Watermark: Offline Build Phase where a Model Developer uses a Diffusion Model with a Signature H = (T, C) to create a Released Model. Online Runtime Phase where a Malicious User and a Normal User use an API to generate images. The Released Model is used for Spherical Embedding (B -> S) and Spherical Extraction (B^{-1} -> S^{-1}). (b) Spherical Embedding: B -> S and Extraction: S^{-1} -> B^{-1}: The process involves Random Padding, Watermark Message m, Embedding Matrix T, Mixed Sequence, Normalize, Unit Sphere, Rotate, Rotation Matrix C, Unit Sphere, Chi-square Scaling, and Standard Gaussian noise.
+
+Figure 1: The overall pipeline of our framework.
+
+## 3 METHOD
+
+As illustrated in Figure 1(a), our method constructs a tracing mechanism from the model developer’s perspective. In the offline build phase, the model developer generates a fixed “Signature”, a set of invertible transforms that encode distinct binary watermarks into the diffusion model’s Gaussian noise input. During the online runtime phase, API-driven image request automatically applies the same signature to embed a user-related watermark into the latent code before it is passed through the diffusion model, ensuring that synthesized images carry traceable provenance. Finally, the developer inverts generated images to extract watermarks for reliable provenance tracking.
+
+### 3.1 PROBLEM FORMULATION
+
+The secret watermark $\mathbf{m}$ encodes API metadata (e.g., user ID, timestamp). Let $\mathcal{G} : \mathbb{R}^{l_x} \rightarrow \mathcal{I}$ denote a fixed, pretrained diffusion generator that maps standard Gaussian noise $\mathbf{z}$ to a generated image $\mathbf{O}$ . Since diffusion models admit an approximate inverse mapping, we use $\mathcal{G}^{-1}$ to recover the latent representation from a generated image. Assume the watermark length is $l_m$ . Our goal is to design two efficient procedures in the latent space:
+
+$$\text{Embed} : \mathbf{m} \in \{0, 1\}^{l_m} \rightarrow \mathbf{z}_w \in \mathbb{R}^{l_x}, \quad \text{Extract} : \hat{\mathbf{z}}_w \in \mathbb{R}^{l_x} \rightarrow \hat{\mathbf{m}} \in \{0, 1\}^{l_m}. \quad (1)$$
+
+Specifically, Embed takes $\mathbf{m}$ to produce the watermarked latent $\mathbf{z}_w = \text{Embed}(\mathbf{m})$ , and Extract predicts $\hat{\mathbf{m}}$ from the inverted latent $\hat{\mathbf{z}}_w = \mathcal{G}^{-1}(\mathbf{O}_w)$ , where $l_x$ denotes the latent dimensionality of $\mathbf{z}_w$ and $\mathbf{O}_w$ is the generated image with traceable watermark. Let $\Pr[\cdot]$ denotes probability, and $\text{negl}(\rho)$ is a function that vanishes faster than any inverse polynomial in the security parameter $\rho$ . We require:
+
+**Undetectability (Losslessness).** For any probabilistic polynomial-time adversary $A$ ,
+
+$$|\Pr[A(\mathbf{z}_w) = 1] - \Pr[A(\mathbf{z}) = 1]| \leq \text{negl}(\rho). \quad (2)$$
+
+In other words, watermarked noise $\mathbf{z}_w$ is computationally indistinguishable from standard Gaussian noise $\mathbf{z}$ . Thus, for any polynomial-time adversary $A'$ , the generated images remain indistinguishable:
+
+$$|\Pr[A'(\mathcal{G}(\mathbf{z}_w)) = 1] - \Pr[A'(\mathcal{G}(\mathbf{z})) = 1]| \leq \text{negl}(\rho). \quad (3)$$
+
+**Traceability (Exact Extraction).** There exists an Extract such that, given watermarked image $\mathbf{O}_w$ ,
+
+$$\Pr[\text{Extract}(\mathcal{G}^{-1}(\mathbf{O}_w)) = \mathbf{m}] \geq 1 - \text{negl}(\rho). \quad (4)$$
+
+That is, the recovered watermark matches the original except with only negligible error in $\rho$ .
+
+For watermarking generated samples, losslessness is the central design principle. It preserves visual fidelity and underpins robustness in adversarial settings. We formally justify this in Appendix E and provide empirical evidence in Section 4.2, showing that lossy watermarking can be easily broken by adversarial attacks, whereas lossless watermarking remains unaffected.
+
+{3}------------------------------------------------
+
+### 3.2 METHODOLOGICAL DESIGN
+
+**Watermark Preprocessing.** We represent watermark $\mathbf{m}$ as independent Bernoulli( $\frac{1}{2}$ ) bits. To enhance randomness and error correction, we repeat $\mathbf{m}$ across $N$ blocks and append a padding vector $\mathbf{r} \in \{0, 1\}^{l_r}$ , drawn i.i.d. from a Bernoulli( $\frac{1}{2}$ ) distribution on each invocation. The resulting vector
+
+$$\mathbf{x} = [\mathbf{m} \quad \mathbf{m} \quad \dots \quad \mathbf{m} \quad \mathbf{r}]^T \in \{0, 1\}^{l_x}, l_x = N \times l_m + l_r, \quad (5)$$
+
+serves as the sole input to the subsequent transforms.
+
+**Build Phase.** In the build phase, the model developer constructs the *Signature* $\mathcal{K} = \{\mathbf{T}, \mathbf{C}\}$ . To reduce the correlation introduced by repeating $\mathbf{m}$ , we inject randomness from the padding vector $\mathbf{r}$ . Accordingly, the embedding matrix $\mathbf{T} \in \{0, 1\}^{l_x \times l_x}$ is designed to mix watermark bits with random paddings while remaining invertible. The rotation matrix $\mathbf{C}$ , also invertible, then maps the binary sequence into Gaussian-like noise. $\mathcal{K}$ is kept fixed and secret during runtime to prevent unauthorized removal. The embedding matrix $\mathbf{T}$ is constructed from the identity matrices $\mathbf{I}_{l_m}$ and $\mathbf{I}_{l_r}$ of sizes $l_m$ and $l_r$ , together with a sparse binary matrix $\mathbf{R} \in \{0, 1\}^{l_m \times l_r}$ generated by Algorithm 1:
+
+$$\mathbf{T} = \begin{bmatrix} \mathbf{I}_{l_m} & \mathbf{R} \\ 0 & \mathbf{I}_{l_r} \end{bmatrix}, l_m = N \times l_m. \quad (6)$$
+
+The core design lies in $\mathbf{R}$ , which injects randomness from the padding vector into the watermark bits. Two parameters govern this construction. The row sparsity $s$ specifies how many random paddings each watermark bit is mixed with: a larger $s$ improves indistinguishability at the cost of amplified error propagation (see Section 4.3). In addition, redundancy is introduced through $N$ repetitions, which enable majority vote decoding. Algorithm 1 ensures that the $N$ copies of each bit are mixed with disjoint subsets of paddings, guaranteeing the independence property proved in Theorem 3.1.
+
+#### --- Algorithm 1 Construction of Binary Matrix $\mathbf{R}$ ---
+
+**Require:** Positive integers $N, l_m, l_r, s$ such that $l_r \geq N \times s$
+
+**Ensure:** Binary matrix $\mathbf{R} \in \{0, 1\}^{l_m \times l_r}$ , Indices Set $P$
+
+```
+
+1: Initialize $\mathbf{R} \leftarrow \mathbf{0}^{N \times l_m \times l_r}$
+2: $P \leftarrow \emptyset$
+3: for $j = 1$ to $l_m$ do
+4: $\pi \leftarrow \text{RandomPermutation}([1, 2, \dots, l_r])$
+5: $TMP \leftarrow \pi[1 : N \times s]$
+6: for $i = 1$ to $N$ do
+7: $G \leftarrow TMP[(i - 1) \times s + 1 : i \times s]$
+8: $\mathbf{R}[i, j, G] \leftarrow 1$
+9: $P \leftarrow P \cup \{(i, j, G)\}$
+10: end for
+11: end for
+12: Return $\text{Reshape}(\mathbf{R}, (l_m, l_r)), P$
+
+```
+
+---
+
+By design, $\mathbf{T}$ is bijective over the binary field $\mathbb{F}_2$ and its inverse $\mathbf{T}^{-1}$ follows that $\mathbf{T}^{-1} = \mathbf{T}$ . And the rotation matrix $\mathbf{C} \in \mathbb{R}^{l_c \times l_c}$ is orthogonal, so its inverse satisfies $\mathbf{C}^{-1} = \mathbf{C}^T$ . We obtain $\mathbf{C}$ by drawing a matrix $l_c \times l_c$ with i.i.d. $\mathcal{N}(0, 1)$ and then applying a QR decomposition, retaining the orthogonal factor. $\mathbf{C}$ maps the binary sequence into a continuous noise compatible with the latent input of diffusion models. For notational convenience, we set $l_c = l_x$ in the following descriptions1.
+
+**Runtime Phase.** Latent-based diffusion models adopt the encoder and decoder of VAE (Kingma & Welling, 2014) to construct bidirectional mappings between the latent and pixel space.
+
+$$E_{\text{VAE}} : \mathcal{I} \rightarrow \mathbb{R}^{l_x}, \quad D_{\text{VAE}} : \mathbb{R}^{l_x} \rightarrow \mathcal{I}, \quad (7)$$
+
+denote the pretrained VAE encoder and decoder, respectively. Let $\mathbf{z}_T$ be standard Gaussian noise in latent space, and let $\mathbf{z}_0 = E_{\text{VAE}}(\mathbf{O})$ denote the clean latent encoding of an image $\mathbf{O}$ . To transform $\mathbf{z}_T$ into $\mathbf{z}_0$ , the diffusion model iteratively perform denoising steps over $T$ discrete timesteps:
+
+1In practice, $l_c$ is chosen as a factor of $l_x$ (e.g. $l_c = \lfloor \sqrt{l_x} \rfloor$ ) to balance rotational expressiveness with computational and storage efficiency.
+
+{4}------------------------------------------------
+
+$\mathbf{z}_T \rightarrow \mathbf{z}_{T-1} \rightarrow \dots \rightarrow \mathbf{z}_0$ . At each diffusion timestep, the marginal distribution of $\mathbf{z}_t$ is governed by the probability-flow ordinary differential equation (ODE) (Song et al., 2021b):
+
+$$\frac{d\mathbf{z}_t}{dt} = f_t(\mathbf{z}_t) - \frac{1}{2} g_t^2 \nabla_{\mathbf{z}_t} \log p_t(\mathbf{z}_t), \quad (8)$$
+
+where $f_t$ and $g_t$ are drift and diffusion coefficients determined by the pre-defined noising schedule. The score function $\nabla_{\mathbf{z}_t} \log p_t(\mathbf{z}_t)$ is approximated by a neural network $s_\theta(\mathbf{z}_t, t)$ . We now describe how watermark embedding and extraction are seamlessly integrated into the Stable Diffusion pipeline.
+
+Our approach decomposes into three reversible modules: Binary Embedding Module $\mathcal{B}$ , Spherical Mapping Module $\mathcal{S}$ , and Diffusion Integration Module $\mathcal{G}$ . As illustrated in Figure 1(b), for watermarked image generation, we first construct the preprocessed input $\mathbf{x}$ by repeating $\mathbf{m}$ and appending random padding $\mathbf{r}$ . Then binary embedding module $\mathcal{B}$ performs the matrix multiplication
+
+$$\mathbf{z}^{(1)} = \mathbf{T} \mathbf{x} \quad (9)$$
+
+in $\mathbb{F}_2$ . Next, spherical mapping module $\mathcal{S}$ converts $\mathbf{z}^{(1)} \in \{0, 1\}^{l_x}$ into Gaussian noise by
+
+$$\begin{aligned} \mathbf{v} &= 2\mathbf{z}^{(1)} - \mathbf{1}, \mathbf{z}^{(2)} = \frac{\mathbf{v}}{\|\mathbf{v}\|_2}, \mathbf{z}^{(3)} = \mathbf{C} \mathbf{z}^{(2)}, \\ \text{draw } \mathbf{r} \text{ such that } r^2 &\sim \chi^2(l_x), \mathbf{z}_w = r \mathbf{z}^{(3)}. \end{aligned} \quad (10)$$
+
+Here, $\|\cdot\|_2$ denotes the Euclidean norm, and $\chi^2(l_x)$ is the chi-square distribution with $l_x$ degrees of freedom. The diffusion integration module $\mathcal{G}$ then generates the watermarked image. We set the initial noise $\mathbf{z}_T = \mathbf{z}_w$ , and by solving Eq. 8 from $t = T$ to $t = 0$ , recover the clean latent $\mathbf{z}_0$ from $\mathbf{z}_T$ ,
+
+$$\mathbf{z}_0 = \text{ODESolve}(\mathbf{z}_T; s_\theta, \text{cond}, T, 0). \quad (11)$$
+
+Here, cond denotes sampling conditions (e.g. text prompts), and ODESolve may be instantiated with different solvers such as DDIM (Song et al., 2021a), DPM-Solver (Lu et al., 2022; 2025), or other ODE integrators. $\mathbf{z}_0$ is then passed through $D_{\text{VAE}}$ to produce the watermarked image $\mathbf{O}_w = D_{\text{VAE}}(\mathbf{z}_0)$ .
+
+For watermark extraction, the developer applies the inverse modules in the order $\mathcal{G}^{-1}, \mathcal{S}^{-1}, \mathcal{B}^{-1}$ on a suspect image $\hat{\mathbf{O}}_w$ . Specifically, the developer uses $E_{\text{VAE}}$ to estimate the latent $\hat{\mathbf{z}}_0 = E_{\text{VAE}}(\hat{\mathbf{O}}_w)$ , and then solves Eq. 8 from $t = 0$ to $t = T$ to obtain an estimate of the initial noise:
+
+$$\hat{\mathbf{z}}_T = \text{ODESolve}(\hat{\mathbf{z}}_0; s_\theta, \emptyset, 0, T). \quad (12)$$
+
+Here, $\emptyset$ denotes the empty condition (no text prompt). Finally, the developer inverts $\hat{\mathbf{z}}_T$ as,
+
+$$\hat{\mathbf{z}}^{(2)} = \mathbf{C}^{-1} \hat{\mathbf{z}}_T, \hat{\mathbf{z}}^{(1)} = \text{round}\left(\frac{\hat{\mathbf{z}}^{(2)} + \mathbf{1}}{2}\right), \hat{\mathbf{x}} = \mathbf{T}^{-1} \hat{\mathbf{z}}^{(1)}, \quad (13)$$
+
+where $\text{round}(\cdot)$ refers to the rounding operation. The first $l_{N_m}$ entries of $\hat{\mathbf{x}}$ correspond to $N$ repeated copies of the watermark message. We therefore apply a majority-vote rule across each group of $N$ bits to obtain the final decoded watermark $\hat{\mathbf{m}}$ . To avoid ties, $N$ is chosen to be odd. Our embedding and extraction pipeline guarantees high-precision watermark retrieval for reliable provenance tracking.
+
+### 3.3 THEORETICAL ANALYSIS
+
+In this section, we provide theoretical guarantees that, after the successive mappings $\mathbf{x} \rightarrow \mathbf{z}^{(1)} \rightarrow \mathbf{z}^{(2)} \rightarrow \mathbf{z}^{(3)} \rightarrow \mathbf{z}_w$ , the final latent code $\mathbf{z}_w$ is distributed as $\mathcal{N}(\mathbf{0}, \mathbf{I}_{l_x})$ in $\mathbb{R}^{l_x}$ . The detailed proofs of all lemmas and theorems stated in this section are provided in the Appendix C.
+
+First, we analyze the distribution of $\mathbf{z}^{(1)}$ in Theorem 3.1. By introducing $\mathbf{r}$ and carefully designing $\mathbf{T}$ , we ensure that the resulting high-entropy code $\mathbf{z}^{(1)}$ exhibits strong independence properties.
+
+**Theorem 3.1.** *If $\mathbf{m}$ and $\mathbf{r}$ consist of independent Bernoulli( $\frac{1}{2}$ ) bits, then for $\mathbf{z}^{(1)}$ in Eq. 9, we have $z_i^{(1)} \sim \text{Bernoulli}(\frac{1}{2})$ for every $i \in \{1, \dots, l_x\}$ , and $\mathbf{z}^{(1)}$ is both 2-wise and 3-wise independent.*
+
+Building on the properties established in Theorem 3.1, we show that $\mathbf{z}^{(2)}$ satisfies the conditions of a spherical 3-design. A spherical $t$ -design (Bannai, 1979; Bajnok, 1992) is a finite set of points on the unit sphere that, up to degree $t$ , exactly matches the averages of all real polynomials with those of the continuous uniform distribution. Consequently, it can be regarded as an *approximate* uniform distribution on the unit sphere. The rigorous mathematical definition of a spherical $t$ -design is as,
+
+{5}------------------------------------------------
+
+**Definition 3.1** (Spherical $t$ -Design). A finite set of points $X = \{x_1, \dots, x_N\} \subset S^{n-1}$ on the unit sphere in $\mathbb{R}^n$ is called a spherical $t$ -design if, for every real polynomial $f$ of total degree at most $t$ ,
+
+$$\frac{1}{N} \sum_{x \in X} f(x) = \frac{1}{|S^{n-1}|} \int_{S^{n-1}} f(x) d\sigma(x),$$
+
+where $d\sigma$ is the uniform surface measure on $S^{n-1}$ , and $|S^{n-1}|$ denotes the total surface area of the unit $(n-1)$ -sphere.
+
+Equivalently, $X$ is a $t$ -design if and only if it matches all moments of the uniform distribution on the sphere up to degree $t$ . Consequently, a spherical $t$ -design is indistinguishable from the uniform distribution on $S^{n-1}$ by any statistic of degree $\leq t$ , and thus may be viewed as an approximation to the uniform spherical distribution. We derive that the set of $\mathbf{z}^{(2)}$ is a spherical 3-design in Theorem 3.2.
+
+**Theorem 3.2.** $\mathbf{z}^{(2)}$ satisfies that each $z_i^{(2)}$ takes values $\pm \frac{1}{\sqrt{l_x}}$ with $\Pr[z_i = +\frac{1}{\sqrt{l_x}}] = \Pr[z_i = -\frac{1}{\sqrt{l_x}}] = \frac{1}{2}$ , $i \in (1, \dots, l_x)$ ; $\mathbf{z}^{(2)}$ is 2-wise and 3-wise independent. Then the finite set of $\mathbf{z}^{(2)}$ on the unit sphere $S^{l_x-1}$ is a spherical 3-design.
+
+Finally, the following two lemmas analyze the distributions of $\mathbf{z}^{(3)}$ and $\mathbf{z}_w$ . In Lemma 3.3 we show that the orthogonally rotated vector $\mathbf{z}^{(3)}$ remains uniformly distributed on $S^{l_x-1}$ . In Lemma 3.4 we prove that scaling by $r \sim \chi(l_x)$ yields $\mathbf{z}_w = r \mathbf{z}^{(3)} \approx \mathcal{N}(\mathbf{0}, \mathbf{I}_{l_x})$ in $\mathbb{R}^{l_x}$ . The detailed proofs are given in the Appendix C, and our experiments confirm that the empirical distribution of $\mathbf{z}_w$ is statistically indistinguishable from standard Gaussian distribution in Section 4.2.
+
+**Lemma 3.3.** Let $\mathbf{z}^{(2)} \in S^{l_x-1}$ be a spherical 3-design. If we apply a fixed orthogonal rotation $\mathbf{z}^{(3)} = \mathbf{C} \mathbf{z}^{(2)}$ , then $\mathbf{z}^{(3)}$ is also a spherical 3-design. For each coordinate $z_i^{(3)}$ , one has $\mathbb{E}[z_i] = 0$ and $\mathbb{E}[z_i^2] = 1/l_x$ , and as $l_x \rightarrow \infty$ , the marginal law of $z_i^{(3)}$ converges to $\mathcal{N}(0, 1/l_x)$ .
+
+**Lemma 3.4.** Let $\mathbf{n} \sim \mathcal{N}(\mathbf{0}, \mathbf{I}_n)$ be a standard multivariate normal vector in $\mathbb{R}^n$ . Then $\mathbf{n}$ admits a polar decomposition of the form
+
+$$\mathbf{n} = r \cdot \mathbf{u},$$
+
+where $r^2 \sim \chi^2(n)$ , and $\mathbf{u}$ is uniformly distributed on the unit sphere $S^{n-1}$ . Furthermore, $r$ and $\mathbf{u}$ are statistically independent. Conversely, if $r^2 \sim \chi^2(n)$ , $\mathbf{u}$ is uniformly distributed on $S^{n-1}$ , and $r \perp \mathbf{u}$ , then the product $\mathbf{n} = r \cdot \mathbf{u}$ follows a standard multivariate normal distribution, i.e., $\mathbf{n} \sim \mathcal{N}(\mathbf{0}, \mathbf{I}_n)$ .
+
+## 4 EXPERIMENT
+
+### 4.1 EXPERIMENTAL SETTINGS
+
+**Implementation Details.** We adopt Stable Diffusion (SD) v1.52 and v2.13 as backbone generative models. Generated images are $512 \times 512$ color images with latent size $4 \times 64 \times 64$ . During the diffusion process, we use a 50-step DPM-Solver++ (Lu et al., 2025) for image generation with a guidance scale of 7.5 and a 50-step DDIM inversion (Song et al., 2021a) with a guidance scale of 1.0. To simulate real-world scenarios, DDIM inversion uses empty prompts. Default settings are $N = 31$ , $l_m = 512$ , $l_r = 512$ , and $s = 1$ , giving $l_{Nm} = 15872$ and $l_x = 16384$ , which matches the diffusion latent dimensionality. All experiments are conducted in PyTorch on four NVIDIA RTX 4090 GPUs.
+
+**Watermark baselines.** We consider the following baselines: traditional watermarking methods include DwtDct (Al-Haj, 2007), DwtDctSvd (Navas et al., 2008), and RivaGAN (Zhang et al., 2019), all configured to embed 32-bit watermarks. Latent-based baselines include Tree-Ring (Wen et al., 2023), Gaussian Shading (Yang et al., 2024), and PRC Watermark (Gunn et al., 2025). All schemes are evaluated with 512-bit watermarks, except Tree-Ring, which supports detection only. For latent-based methods, we generate five fixed keys (or signatures) and report the mean and standard deviation of each metric over five independent runs. Unless noted otherwise, baselines use their default settings. Note that with fixed keys, Gaussian Shading no longer achieves true losslessness.
+
+**Datasets & Evaluation metrics.** For text prompts, we use two datasets, termed COCO and SDP. Each comprises 1000 text prompts randomly sampled from the MS-COCO val2017 set (Lin et al., 2014)
+
+2
+
+3
+
+{6}------------------------------------------------
+
+Table 1: FID value for different watermarking methods. Lower FID indicates higher image quality. $\text{Mean}_{std}$ represents the mean value with 1-sigma error bar.
+
+| Method | COCO | | SDP | |
+|-|-|-|-|-|
+| | SD v1.5 | SD v2.1 | SD v1.5 | SD v2.1 |
+| Original | 48.1256 1.3744 | 46.8146 1.0617 | 49.7041 0.5425 | 46.4060 0.5231 |
+| DwtDct | 48.2975 1.3918 | 46.9771 1.0121 | 49.9855 0.5385 | 46.7304 0.5163 |
+| DwtDctSvd | 48.7179 1.4075 | 47.4049 1.0121 | 51.0160 0.6162 | 47.5044 0.6439 |
+| RivaGan | 48.7956 1.3952 | 47.6124 1.1012 | 51.2773 0.6320 | 47.8298 0.6748 |
+| Tree-Ring | 49.3318 1.5108 | 47.8721 1.1320 | 50.6491 1.0197 | 47.3917 0.7127 |
+| Gaussian Shading | 50.6968 1.3200 | 49.4379 1.0326 | 51.5221 0.8773 | 48.2539 0.4859 |
+| PRC Watermark | 48.1348 1.3074 | 46.7544 1.0748 | 49.5250 0.7651 | 46.4157 0.3445 |
+| Ours | 48.1224 1.5489 | 46.8132 1.0962 | 49.3894 0.7475 | 46.4311 0.3695 |
+
+
+
+Figure 2: Classification performance over training epochs for distinguishing watermarked from unwatermarked samples. The figure contains four line plots. The left two plots show training loss and test accuracy at the latent-level. The right two plots show training loss and test accuracy at the image-level on the SDP dataset with SD v2.1. Each plot compares 'True Ring' (blue line) and 'PRC watermark' (orange line). In the latent-level plots, the 'True Ring' loss decreases while 'PRC watermark' loss increases. In the image-level plots, both losses decrease, but 'True Ring' remains lower than 'PRC watermark'.
+
+Figure 2: Classification performance over training epochs for distinguishing watermarked from unwatermarked samples. Left Two: Training loss and test accuracy at latent-level. Right Two: Training loss and test accuracy at image-level on SDP dataset with SD v2.1.
+
+
+
+Figure 3: Examples of different watermarking methods. The figure shows two rows of images. The top row is from the COCO dataset, showing various scenes like boats, a ship, and a person on a motorcycle. The bottom row is from the SDP dataset, showing a house in a forest. Each row contains eight images: Original, DwtDct, DwtDctSvd, RivaGan, Tree-Ring, Gaussian Shading, PRC Watermark, and Ours. The 'Ours' method shows a subtle watermark that is less visible than others.
+
+Figure 3: Examples of different watermarking methods. Top: COCO dataset. Bottom: SDP dataset.
+
+and the Stable Diffusion Prompt dataset4, respectively. To evaluate the performance of our method, we focus on two core criteria: undetectability and tracing accuracy. For undetectability, we first assess any degradation introduced by watermark embedding. To detect subtle distributional shifts, we employ the Fréchet Inception Distance (FID) (Heusel et al., 2017) measured against the unwatermarked output distribution. We also train binary classifiers on both image-level pixels and latent-space inputs to distinguish watermarked from non-watermarked samples, reporting classification accuracy to reveal detectable artifacts introduced by the watermark embedding. Next, we evaluate the reliability of watermark extraction for 100 distinct users under common storage and transmission degradations, including post-processing attacks and adversarial attacks from WEvade (Jiang et al., 2023). Extraction performance is quantified by bit-level accuracy (ACC) and the true positive rate at 1% false positive rate (TPR@1%FPR). For simplicity, we abbreviate TPR@1%FPR as TPR in the sequel.
+
+We report mean and standard deviation over five runs for all metrics. Additional experimental results are provided in Appendix F, including further undetectability experiments and ablation studies.
+
+### 4.2 PERFORMANCE ANALYSIS
+
+**Undetectability.** To assess undetectability, we train classifiers to capture distributional shifts. First, we train a two-layer MLP (Rumelhart et al., 1986) for latent-level classification. According to Figure 2, both Tree-Ring and Gaussian Shading (with fixed keys) are easily detected with accuracies of 100% and 97%, while PRC Watermark and our method remain indistinguishable. Second, we
+
+4
+
+{7}------------------------------------------------
+
+Table 2: Comparison results on ACC and TPR. Dataset: COCO dataset. Model: SD v2.1. “Post.” refers to “Post-Processing” and “Adv.” refers to “Adversarial”.
+
+| Method | Metrics | | | | | |
+|-|-|-|-|-|-|-|
+| | ACC (Clean) | ACC (Post.) | ACC (Adv.) | TPR (Clean) | TPR (Post.) | TPR (Adv.) |
+| DwtDct | 90.14 1.15 | 64.75 1.08 | 49.28 0.00 | 92.80 0.14 | 52.23 3.41 | 16.15 0.02 |
+| DwtDctSvd | 100.00 0.00 | 93.21 0.17 | 48.95 0.01 | 100.00 0.00 | 91.94 0.68 | 17.05 0.02 |
+| RivaGan | 99.68 0.10 | 96.78 0.22 | 52.31 0.01 | 100.00 0.00 | 99.13 0.22 | 26.75 0.02 |
+| Tree-Ring | - | - | - | 100.00 0.00 | 98.85 0.31 | 6.71 0.02 |
+| Gaussian Shading | 100.00 0.00 | 98.43 0.04 | 88.06 0.11 | 100.00 0.00 | 99.97 0.04 | 99.23 0.00 |
+| PRC Watermark | 100.00 0.00 | 93.52 0.20 | 97.69 0.07 | 100.00 0.00 | 87.03 0.39 | 95.38 0.00 |
+| Ours | 99.99 0.01 | 95.02 0.08 | 98.12 0.04 | 100.00 0.00 | 97.50 0.18 | 99.83 0.00 |
+
+sample one prompt and generate ten watermarked images per user across 100 distinct users for image-level evaluation, with qualitative examples shown in Figure 3. In Figure 2, we also train a ResNet-18 classifier (He et al., 2016) for image-level classification. Tree-Ring and Gaussian Shading are detectable, while PRC Watermark and ours show near-chance detection (50%). Table 1 shows that only PRC Watermark and our method match the original in FID, whereas other methods incur distribution shifts. These results support our theoretical analysis in Section 3.3 by showing that watermarked samples are statistically indistinguishable from unwatermarked ones.
+
+**Computational Efficiency.** To demonstrate the advantages of our encryption-free design, we evaluate the embedding and extraction times of latent-based watermarking schemes, with each result averaged over 100 trials. In this comparison, we focus exclusively on the transformation between the watermark and its latent noise representation, excluding any diffusion sampling or inversion procedures. As illustrated in Figure 4, we employ a logarithmic scale on the y-axis for visualization. The extraction time of the PRC Watermark is much higher than that of ours, roughly four orders of magnitude slower on extraction. This difference reflects the computational burden introduced by belief-propagation decoding in the PRC scheme. In contrast, our approach eliminates the need for complex key design, thereby enhancing execution speed, improving computational efficiency.
+
+
+
+| Method | Embedding Time (s) | Extraction Time (s) |
+|-|-|-|
+| Tree-Ring | ~10^-2.5 | ~10^-3.0 |
+| Gaussian Shading | ~10^0.5 | ~10^-2.5 |
+| PRC Watermark | ~10^-1.0 | ~10^1.0 |
+| Ours | ~10^-2.0 | ~10^-3.5 |
+
+Bar chart showing Average Time (s) for Embedding and Extraction across four methods: Tree-Ring, Gaussian Shading, PRC Watermark, and Ours. The Y-axis is logarithmic from 10^-4 to 10^1. PRC Watermark has the highest extraction time, while Ours has the lowest.
+
+Figure 4: The watermark embedding and extraction time for different latent-based schemes. Here, the Y-axis is on a logarithmic scale.
+
+**Tracing Accuracy.** In Table 2, we evaluate tracing accuracy under varied conditions. “Clean” refers to PNG storage, “Post-Processing” reports common post-processing distortions, and “Adversarial” refers to attacks from (Jiang et al., 2023) (See Appendix F.4 for details). Compared to lossy schemes, our method achieves comparable accuracy above 95% in both Clean and Post-Processing settings. We introduce a tunable parameter $s$ , which entails a slight robustness trade-off relative to Gaussian Shading. Under Adversarial conditions, however, the accuracy of lossy schemes degrades sharply, as their embeddings enable effective classifiers to be trained for watermark detection, which can then be adversarially attacked. In contrast, lossless schemes demonstrate clear superiority: our method improves accuracy by more than 10%, consistent with the theoretical analysis in Appendix E.
+
+**Comparison with PRC Watermark.** In Table 2 and Figure 5, we compare our method with PRC Watermark under varied distortions. Our method consistently achieves higher TPR and ACC, with a larger margin at stronger distortions. In addition, Figure 6(a) examines the effect of watermark capacity $l_m$ on tracing accuracy under JPEG-70 compression. As $l_m$ increases, PRC Watermark’s decoding performance deteriorates rapidly and fails entirely beyond $l_m = 2000$ . In contrast, *Spherical Watermark* sustains high detection rates across the full capacity range. Furthermore, the computational efficiency comparisons show that our embedding and extraction incur significantly lower overhead than PRC Watermark, with extraction being about four orders of magnitude faster. These results confirm the superior robustness of our method.
+
+{8}------------------------------------------------
+
+
+
+Figure 5: ACC and TPR values under various attacks. The figure consists of eight subplots: (a) PNG, (b) Gaussian Noise, (c) Brightness, (d) Drop, (e) Gaussian Blur, (f) JPEG, (g) Median Filter, and (h) Resize. Each subplot compares the performance of 'Our' method (solid lines with markers) against 'Diffusion' (dashed lines with markers) for both 'REC ACC' (blue) and 'DNR ACC' (orange). The x-axis for each plot represents the intensity of a specific attack (e.g., noise standard deviation, brightness factor, kernel size, or repeat ratio). The y-axis represents the accuracy (ACC) or true positive rate (TPR).
+
+Figure 5: ACC and TPR values under Attacks, averaged over two datasets and two models.
+
+
+
+Figure 6: Ablation Study. The figure consists of four subplots: (a) Ablation on l\_m, (b) Ablation on Modules, (c) Ablation on Modules, and (d) Ablation on Settings. (a) shows ACC comparisons under different capacities (COCO v0.15 to v0.31). (b) and (c) show Undetectability analysis of varied parameter settings (SD v2.1). (d) is a box plot showing Undetectability analysis of varied parameter settings (SD v2.1).
+
+Figure 6: Ablation Study. (a) ACC comparisons under different capacities, (b) and (c) Undetectability and robustness of module ablation, (d) Undetectability analysis of varied parameter settings. Here, (a-c) are all conducted on the COCO dataset with SD v2.1.
+
+### 4.3 ABLATION EXPERIMENTS
+
+**Ablation on Modules.** In our ablation study, we isolate the effects of each module. In one variant, we omit the spherical mapping $\mathcal{S}$ and substitute the Gaussian Shading transform; in another, we skip the binary embedding $\mathcal{B}$ and apply only the spherical mapping to $\mathbf{x}$ . We then evaluate both latent-level undetectability and tracing accuracy. In Figure 6(b), omitting the binary embedding makes the latent noise trivially distinguishable. Figure 6(c) shows that robustness under brightness adjustment drops dramatically without spherical mapping. These results confirm that binary embedding enforces independence, while spherical mapping is essential for restoring robustness. A rigorous analysis of why our orthogonal rotation design achieves optimal robustness is provided in Appendix D.
+
+**Ablation on Parameters.** We further investigate the sensitivity of our method to hyperparameters: the watermark length $l_m$ , the padding length $l_p$ , the row sparsity parameter $s$ , and the repetition count $N$ . In Figure 6(d), we vary these parameters and train a latent-level classifier to evaluate their effect. The results show that classification accuracy remains near 50%, indicating that parameter changes do not impair undetectability. As $s$ increases, each watermark bit depends on more paddings, making errors more likely to propagate and amplify. Similarly, reducing $N$ decreases redundancy for majority-vote correction. Thus, both larger $s$ and smaller $N$ reduce accuracy by design, a trend also confirmed by the experimental results in Table 3. In addition, Figure 6(a) shows that *Spherical Watermark* maintains high detection rates across all watermark capacities under JPEG-70 compression.
+
+**Ablation on Diffusion Sampling Settings.** We conduct ablation studies on the COCO dataset using the SD v2.1 model to assess the sensitivity of our method to diffusion sampling configurations. Table 4 compares watermark extraction accuracy under various attacks across three ODE solvers: DDIM (Song et al., 2021a), PNDM (Liu et al., 2022), and DPM-Solver++ (Lu et al., 2025). Settings of each attack type are provided in Appendix F.5. We then investigate the role of generation and
+
+{9}------------------------------------------------
+
+Table 3: Ablation of parameters $s$ and $N$ on TPR under different attack. Dataset: COCO. Model: SD v2.1. Case 1: Gaussian Blur, kernel size = 9. Case 2: JPEG-70. Case 3: Brightness, factor = 2.
+
+| Case | sparsity parameter $s$ | | | | repetition count $N$ | | | |
+|-|-|-|-|-|-|-|-|-|
+| | 1 | 2 | 3 | 4 | 1 | 11 | 21 | 31 |
+| 1 | 100.00 0.00 | 99.84 0.12 | 99.08 0.25 | 97.58 0.34 | 99.40 0.14 | 99.96 0.05 | 99.94 0.05 | 100.00 0.00 |
+| 2 | 99.94 0.05 | 99.46 0.26 | 96.64 0.42 | 92.38 0.74 | 98.08 0.32 | 99.86 0.14 | 99.92 0.12 | 99.94 0.05 |
+| 3 | 99.72 0.12 | 98.00 0.21 | 93.12 0.53 | 83.68 0.71 | 95.10 0.45 | 99.50 0.24 | 99.68 0.19 | 99.72 0.12 |
+
+Table 4: Ablation results of extraction accuracy on ODE solvers under post-processing perturbations.
+
+| Solver | Post-processing Perturbations | | | | | |
+|-|-|-|-|-|-|-|
+| | PNG | Brightness | Gaussian Blur | Median Filter | JPEG | Resize |
+| DDIM | 99.98 0.01 | 96.06 0.23 | 99.43 0.02 | 99.20 0.03 | 98.39 0.16 | 99.85 0.01 |
+| PNDM | 99.98 0.01 | 96.17 0.23 | 99.40 0.02 | 99.15 0.03 | 98.41 0.15 | 99.84 0.01 |
+| DPM-Solver++ | 99.98 0.01 | 96.02 0.26 | 99.44 0.01 | 99.21 0.03 | 98.40 0.15 | 99.85 0.01 |
+
+Table 5: Ablation results of extraction accuracy on sampling timesteps.
+
+| Generation Timesteps | Inversion Timesteps | | | | |
+|-|-|-|-|-|-|
+| | 10 | 20 | 30 | 40 | 50 |
+| 10 | 99.85 0.88 | 99.92 0.71 | 99.95 0.57 | 99.95 0.58 | 99.95 0.60 |
+| 20 | 99.96 0.52 | 99.97 0.48 | 99.98 0.35 | 99.98 0.36 | 99.98 0.38 |
+| 30 | 99.97 0.28 | 99.99 0.18 | 99.99 0.16 | 99.99 0.12 | 99.99 0.12 |
+| 40 | 99.97 0.56 | 99.98 0.52 | 99.98 0.48 | 99.98 0.47 | 99.98 0.48 |
+| 50 | 99.97 0.36 | 99.98 0.36 | 99.98 0.29 | 99.99 0.29 | 99.99 0.26 |
+
+inversion timesteps under PNG storage, as summarized in Table 5. Results show that neither the choice of ODE solver nor the variation in timestep schedules introduces meaningful degradation. The minor numerical discrepancies caused by switching solvers or adjusting timesteps are effectively absorbed by the inherent redundancy of our spherical mapping, which provides robustness against moderate inversion inaccuracies. Further quantitative analysis is provided in Appendix F.5.
+
+## 5 DISCUSSION AND LIMITATIONS
+
+Our Gaussian-noise guarantee depends on spherical 3-design definition. While watermarked and random noise are empirically indistinguishable, higher-order moments may deviate from the true prior. Extremely strong inversion-breaking attacks (e.g., perturbations targeting the VAE encoder or ODE solver) can still compromise recovery. We provide an extended analysis of our method against re-generation and editing attacks in Appendix F.2, showing that the proposed approach retains robustness in these scenarios. Nevertheless, our primary focus is on tracing the origin of maliciously generated content. Since editing and forgery may involve different adversarial, such cases are outside our scope. Overall, our method can generalize to any generative model with a Gaussian prior and invertible mappings, with detailed analysis in Appendix F.1.
+
+## 6 CONCLUSION
+
+In this paper, we introduce Spherical Watermark, a novel watermarking framework for image generation that requires no modifications to the diffusion model. Our key innovation is the binary embedding and spherical mapping module that converts binary watermark bits into Gaussian noise input. Watermarked latent inputs are provably and empirically indistinguishable from a standard Gaussian prior. Additionally, we eliminate per-image key management while delivering superior robustness under realistic distortions. Extensive experiments demonstrate that our method outperforms existing schemes in terms of undetectability, traceability, and computational efficiency.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/36CzrZYEch.txt b/papers/36CzrZYEch.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d5cdded6ab2c92a9be5db659aa88e61df77395a1
--- /dev/null
+++ b/papers/36CzrZYEch.txt
@@ -0,0 +1,351 @@
+
+
+{0}------------------------------------------------
+
+# IRIS: INTRINSIC REWARD IMAGE SYNTHESIS
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Despite the success of Reinforcement Learning from Human Feedback (RLHF) in language reasoning, its application to autoregressive Text-to-Image (T2I) generation is often constrained by the limited availability of human preference data. This paper explores how an autoregressive T2I model can learn from internal signals without relying on external rewards or labeled data. Contrary to recent findings in text generation, we show that maximizing self-uncertainty, rather than self-certainty, improves image generation. We observe that this is because autoregressive T2I models with low uncertainty tend to generate simple and uniform images, which are less aligned with human preferences. Based on these observations, we propose **IRIS** (Intrinsic Reward Image Synthesis), the first framework to improve autoregressive T2I models with reinforcement learning using only an intrinsic reward. Empirical results demonstrate that applying IRIS to autoregressive T2I models achieves performance that is competitive with or superior to external rewards.
+
+## 1 INTRODUCTION
+
+Reinforcement Learning (RL) has proven to be highly effective in advancing the reasoning capabilities of large language models, particularly in verifiable domains such as mathematics and programming (Shao et al., 2024; Hurst et al., 2024; Guo et al., 2025a; Hu et al., 2025). Motivated by these advances, a similar RL-based alignment approach is now being explored for text-to-image models (Beter et al., 2023; Team et al., 2023; Esser et al., 2024a). However, applying RL here is more challenging due to the lack of verifiable rule-based rewards—unlike math or code, the quality of a visual output is inherently subjective and hard to evaluate automatically. Existing methods in this area either build an image reward model from human preferences or use automated rewards from specialized models, such as object detectors (Yan et al., 2024) or Visual Question Answering (VQA) systems (Jiang et al., 2025). However, the former approach is bottlenecked by the scalability and subjectivity of human labeling, while the latter is often domain-specific and struggles to generalize beyond the narrow settings for which it was trained.
+
+Recently, several works have shown that text-based applications, including mathematical and code reasoning, can be improved by maximizing self-certainty via RL (Zhao et al., 2025b; Zhang et al., 2025a). This concept is particularly appealing for text-to-image generation, given the inherent difficulty of defining an explicit reward model. Motivated by this, we aim to answer the following question:
+
+*Is it possible to design a more general method for text-to-image generation using only intrinsic signals—without relying on human-labeled data or domain-specific heuristics?*
+
+In this work, we use the multimodal LLM, Janus-Pro (Chen et al., 2025), for the text-to-image generation task due to their strong instruction-following capabilities. However, contrary to previous works in the text generation (Zhao et al., 2025b; Zhang et al., 2025a), our research reveals that maximizing self-certainty is detrimental to text-to-image synthesis. As illustrated in the “self-certainty” column of Fig. 1, maximizing a model’s self-certainty by reinforcement learning impairs its image generation. Furthermore, we discover that more self-confident models tend to generate uniform and simplistic images, whereas less self-confident models produce more visually rich and colorful images that are better aligned with human preferences. We thus claim that:
+
+{1}------------------------------------------------
+
+
+
+Figure 1: A 3x4 grid of generated images. The columns are labeled 'Base model', 'External reward', 'Self-certainty', and 'Negative self-certainty'. The rows are labeled with prompts: 'A photo of a bench', 'A photo of a bird below a skateboard', and 'A photo of a person and a stop sign'. The 'Base model' column shows standard generated images. The 'External reward' column shows images with more distinct features. The 'Self-certainty' column shows more uniform and less detailed images. The 'Negative self-certainty' column shows images with richer visual features and more detail.
+
+Figure 1: We perform reinforcement learning (RL) fine-tuning on Janus-Pro using three reward schemes: (1) external reward (pretrained image reward models, etc), (2) self-certainty reward, and (3) negative self-certainty reward. The self-certainty is computed as the negative cross-entropy between the model’s output distribution and a uniform distribution—where higher self-certainty indicates greater model self-certainty. The figure presents results across three tasks: (i) single-object generation, (ii) spatial generation, and (iii) two-object generation. We observe that increased self-certainty typically results in more uniform and less visually diverse images, while lower self-certainty tends to generate images with richer visual features that are more preferred by humans. Please refer to Appx. B.6 for more visualized results.
+
+*Maximizing self-certainty improves language reasoning,
+while minimizing self-certainty improves text-to-image generation.*
+
+To verify the hypothesis quantitatively, we compute the self-certainty measured by the KL divergence between the uniform distribution and the model’s output distribution. We train an LLM and a multimodal LLM, i.e., Qwen2.5-1.5B-Instruct and Janus-Pro-1B respectively, on verifiable external rewards by GRPO (Shao et al., 2024) and monitor the self-certainty on the text and image tokens respectively. Results in Fig 2 shows that RL alignment with external reward models continuously increases the self-certainty of the LLM in [math reasoning tasks](#), but decreases the self-certainty of the multimodal LLM in the text-to-image generation. This indicates that less self-confident multimodal LLMs will generate images with higher rewards. We give a detailed description of the experiment settings in Appx. B.1.
+
+Based on this observation, we introduce **IRIS** (Intrinsic Reward Image Synthesis), a reinforcement learning framework that leverages
+
+
+
+Figure 2: A line graph titled 'Smoothed Self Certainty Comparison'. The x-axis is 'Training Progress (Step/ Total Step)' from 0.0 to 1.0. The left y-axis is 'Text Self-Certainty' from 31 to 38. The right y-axis is 'Image Self-Certainty' from 18.75 to 20.50. A blue line represents 'Self Certainty (Text)' and an orange line represents 'Self Certainty (Image)'. The blue line starts at ~31.5 and increases to ~36.5. The orange line starts at ~20.2 and decreases to ~19.0.
+
+Figure 2: **Self-Certainty** on image tokens in the Janus-Pro-1B (orange line, right y-axis), and on text tokens in the Qwen2.5-1.5B-Instruct (blue line, left y-axis). [RL alignment with external reward models continuously increases the self-certainty of the LLM in the math reasoning, but decreases the self-certainty of the multimodal LLM in the text-to-image generation.](#)
+
+{2}------------------------------------------------
+
+the model’s the Negative Self-Certainty (NSC) as the reward signal. We note that IRIS doesn’t need any human knowledge or external verifiers, and is agnostic to the model architecture or dataset. Remarkably, we find that our IRIS itself can significantly *enhance the reasoning capabilities of T2I models*. We adopt the CoT reasoning to generate detailed image description prior to subsequent image synthesis, termed as semantic CoTs (Jiang et al., 2025). On Janus-Pro 1B models, IRIS boosts the performance by 9.1%, 13.3%, and 28.8% on GenEval (Ghosh et al., 2023), T2I-CompBench (Huang et al., 2025) and WISE (Niu et al., 2025) respectively, showing that IRIS improves reasoning and planning capabilities in the T2I models. See Sec. 4.2 for more details.
+
+Our contributions can be summarized in the following:
+
+- We propose IRIS, the first RL-based alignment method for text-to-image generation using **only an intrinsic reward**. **We minimize the self-certainty of the T2I models.**
+- **We observe and confirm that the model’s self-certainty exhibits task-dependent behaviors. Specifically, higher self-certainty benefits the model in domains requiring objective reasoning (e.g., mathematical and code reasoning), but lower self-certainty benefits the model in subjective generation tasks (e.g., text-to-image generation).**
+- **Empirically, we show that IRIS can improve the autoregressive T2I models without any external supervision. Post-training by IRIS achieves competitive performance compared to training with external rewards. We call for better design of training algorithm and external reward models that are beyond the intrinsic capabilities of the base T2I model.**
+
+## 2 RELATED WORK
+
+**Reinforcement learning in image generation models** Reinforcement learning plays a key role in enhancing the performance of modern text-to-image generation models (Betker et al., 2023; Team et al., 2023; Wallace et al., 2024; Esser et al., 2024a). Early efforts primarily focused on training image reward models using human-labeled preference data (Xu et al., 2023; Wu et al., 2023; Xu et al., 2024). To reduce reliance on manual annotation, subsequent work has explored automated reward generation. For example, Yan et al. (2024) leverage existing automatic scoring methods such as the Grounding DINO detector (Liu et al., 2024). Guo et al. (2025b) fine-tunes LLaVA-OneVision (Li et al., 2024b) to evaluate the alignment between the prompt and the generated image. Similarly, Jiang et al. (2025) utilize Visual Question Answering (VQA) models to provide feedback signals during training. However, our method get rid of the external models and guide the generation model with its intrinsic signals, making it adaptable to many scenarios.
+
+**Reinforcement learning with intrinsic reward** Recent work in LLMs explores RLIF as a means to reduce reliance on human preference data or domain-specific verifiers. For instance, Zhang et al. (2025a) and Agarwal et al. (2025) propose minimizing entropy as a form of reasoning incentivization. Building on this idea, Zhao et al. (2025b) introduce a self-certainty signal—defined as the cross-entropy between the output token distribution and a uniform distribution to guide RL training, reporting improved performance. In related efforts, Prasad et al. (2024) and Zuo et al. (2025) generate multiple rollouts and leverage majority-vote outcomes to estimate advantages. To the best of our knowledge, we are the first to successfully train text-to-image generation models without external reward supervision. Our key insight lies in the observation that visual generative models exhibit lower self-certainty when producing visually rich and semantically meaningful images. This contrasts with findings in the LLM domain, where higher model self-certainty has been associated with better performance (Zhang et al., 2025a; Agarwal et al., 2025; Zhao et al., 2025b).
+
+## 3 METHOD
+
+### 3.1 RL FINETUNING OF LLMs
+
+In RL finetuning of LLMs, the LLM policy $\pi_\theta$ is optimized to maximize some reward function $r$ . Given the input query $q$ , the generated output $o$ , the reference policy $\pi_{\text{ref}}$ , and the KL regularization coefficient $\beta$ , the objective to optimize is
+
+$$\max_{\pi_\theta} \mathbb{E}_{o \sim \pi_\theta(\cdot|q)} [r(o|q) - \beta \text{KL}(\pi_\theta(o|q)) \| \pi_{\text{ref}}(o|q)] . \quad (1)$$
+
+{3}------------------------------------------------
+
+In this paper, we denote by $o_t$ the $t$ -th token of the output $o$ , and $o_{" and "". Jiang et al. (2025) uses Janus model's chat template to train and evaluate the Janus-Pro models. In this paper, we will use the correct chat template to train and evaluate the Janus-Pro models, so numerical results reported in our paper are different from those in Jiang et al. (2025).
+
+### 4.2 MAIN RESULTS
+
+We evaluate our results on three series of models: (1) Janus-Pro base models, (2) Janus-Pro trained by external rewards. (3) Janus-Pro trained by IRIS, where we generate 8 text strings per query and subsequent 1 image per text string in GRPO's advantage computation. Fig. 3 shows the main results on GenEval, T2I-CompBench and WISE on the first 800 steps of training. Tab. 1 reports the best result of different methods among the checkpoints from 100 step to 800 step on the three benchmarks. We found that IRIS boosts the performance of the Janus-Pro 1B model by 9.1%, 13.3%, and 28.8% on GenEval, T2I-CompBench and WISE respectively, and Janus-Pro 7B model by 1.3%, 1.8%, and 6.5%, achieving results comparable to its counterpart that uses an external reward. The larger performance gain on WISE benchmark can be attributed by the novelty and difficulty of this benchmark, and relative smaller performance gain of RL finetuning on 7B models can be attributed to the stronger capability of larger base models. Importantly, our method does not rely on any external knowledge or domain specific verifier and can be easily adapted to any scenario, highlighting its broad applicability and potential. Please refer to Appx. B.3 for detailed subcores in the three benchmarks.
+
+
+
+Figure 3: Main results of Janus-Pro 1B on GenEval, T2I-CompBench and WISE. The figure contains three line graphs showing 'Score' vs 'Training Steps' (0 to 800). The legend indicates 'IRIS with CoT (intrinsic)' (orange line with circles) and 'T2I-R1 (external)' (blue line with diamonds). In all three benchmarks, IRIS with CoT achieves higher scores than T2I-R1 (external) after approximately 200 training steps. GenEval scores range from 0.66 to 0.76. T2I-CompBench scores range from 0.34 to 0.38. WISE scores range from 0.28 to 0.38.
+
+Figure 3: **Main results of Janus-Pro 1B on GenEval, T2I-CompBench and WISE. On T2I-CompBench and WISE, IRIS can achieve comparable results with T2I-R1.**
+
+**Emergence of long-form reasoning** Jiang et al. (2025) shows that using external rewards can guide the model to generate meaningful semantic CoTs. We show that using intrinsic rewards can also guide the model to generate meaningful semantic CoTs that helps the image generation. In Fig. 4, we present an example of our semantic CoTs in training, which provides concise and meaningful details that could be useful in training and to enhance the image diversity. More CoT examples could be found in Fig. 13 in Appx. B.4.
+
+
+
+Figure 4: Visualization of semantic CoTs. The figure shows a user prompt 'A photo of a bicycle.' and two generated images. The left image is labeled 'w/o Semantic CoT' and shows a red bicycle. The right image is labeled 'with Semantic CoT' and shows a yellow bicycle in a lush green meadow with golden grass, surrounded by trees with a bright yellow sun in the sky and a blue river flowing nearby in the foreground. The 'with Semantic CoT' image is more detailed and matches the prompt more closely.
+
+Figure 4: **Visualization of semantic CoTs.** The left one is training without semantic CoTs, and the right one is training with semantic CoTs. **Training with semantic CoTs improve image generation.**
+
+**Intrinsic rewards incentive general T2I abilities** The NSC reward in IRIS provides an intrinsic, token-level signal for guided image generation. IRIS surpasses the T2I-R1 on 1B models in
+
+{6}------------------------------------------------
+
+Table 1: “Und.” and “Gen.” denote “understanding” and “generation”, respectively. We report the scores of the best checkpoint (measured by the average performance) of the T2I-R1 and IRIS.
+
+(a) GenEval.
+
+| Type | Method | Single Obj.† | Two Obj.† | Counting† | Colors† | Position† | Color Attri. | Overall† |
+|-|-|-|-|-|-|-|-|-|
+| Gen. Only | SD-v1 (Rombach et al., 2022) | 0.97 | 0.38 | 0.35 | 0.76 | 0.04 | 0.06 | 0.43 |
+| | SD-v2 (Rombach et al., 2022) | 0.98 | 0.51 | 0.44 | 0.85 | 0.07 | 0.17 | 0.50 |
+| | PixArt- $\alpha$ (Chen et al., 2023b) | 0.98 | 0.50 | 0.44 | 0.80 | 0.08 | 0.07 | 0.48 |
+| | SDXL (Podell et al., 2023) | 0.98 | 0.74 | 0.39 | 0.85 | 0.15 | 0.23 | 0.55 |
+| | FLUX (Labs, 2024; Yang et al., 2024b) | 0.98 | 0.81 | 0.74 | 0.79 | 0.22 | 0.45 | 0.64 |
+| | SD3-Medium (Esser et al., 2024b) | 0.99 | 0.94 | 0.72 | 0.89 | 0.33 | 0.60 | 0.74 |
+| | SEED-X (Ge et al., 2024) | 0.97 | 0.58 | 0.26 | 0.80 | 0.19 | 0.14 | 0.49 |
+| Und. & Gen. | Show-o (Xie et al., 2024) | 0.98 | 0.80 | 0.66 | 0.84 | 0.31 | 0.50 | 0.68 |
+| | Janus-Pro-1B (Chen et al., 2025) | 0.94 | 0.71 | 0.42 | 0.82 | 0.52 | 0.51 | 0.66 |
+| | Janus-Pro-1B + T2I-R1 (Jiang et al., 2025) | $0.99_{\pm 0.01}$ | $0.85_{\pm 0.03}$ | $0.50_{\pm 0.03}$ | $0.86_{\pm 0.01}$ | $0.64_{\pm 0.05}$ | $0.63_{\pm 0.02}$ | $0.75_{\pm 0.01}$ |
+| | Janus-Pro-1B + IRIS (Ours) | $0.99_{\pm 0.01}$ | $0.85_{\pm 0.01}$ | $0.41_{\pm 0.03}$ | $0.88_{\pm 0.02}$ | $0.66_{\pm 0.04}$ | $0.51_{\pm 0.03}$ | $0.72_{\pm 0.01}$ |
+| | Janus-Pro-7B (Chen et al., 2025) | 0.98 | 0.89 | 0.49 | 0.89 | 0.69 | 0.62 | 0.76 |
+| | Janus-Pro-7B + T2I-R1 (Jiang et al., 2025) | $1.00_{\pm 0.01}$ | $0.91_{\pm 0.03}$ | $0.55_{\pm 0.03}$ | $0.91_{\pm 0.01}$ | $0.69_{\pm 0.04}$ | $0.62_{\pm 0.03}$ | $0.78_{\pm 0.01}$ |
+| | Janus-Pro-7B + IRIS (Ours) | $0.99_{\pm 0.01}$ | $0.91_{\pm 0.03}$ | $0.52_{\pm 0.06}$ | $0.88_{\pm 0.03}$ | $0.73_{\pm 0.05}$ | $0.61_{\pm 0.03}$ | $0.77_{\pm 0.03}$ |
+
+(b) T2I-CompBench
+
+| Type | Method | Attribute Binding | | | Object Relationship | | Complex† |
+|-|-|-|-|-|-|-|-|
+| | | Color† | Shape† | Texture† | 2D-Spatial† | Non-Spatial† | |
+| Gen. Only | SD-v1 (Rombach et al., 2022) | 0.3765 | 0.3576 | 0.4156 | 0.1246 | 0.3079 | 0.3080 |
+| | SD-v2 (Rombach et al., 2022) | 0.5065 | 0.4221 | 0.4922 | 0.1342 | 0.3127 | 0.3386 |
+| | PixArt- $\alpha$ (Chen et al., 2023a) | 0.6690 | 0.4927 | 0.6477 | 0.2064 | 0.3197 | 0.3433 |
+| | SDXL (Podell et al., 2023) | 0.5879 | 0.4687 | 0.5299 | 0.2133 | 0.3119 | 0.3237 |
+| | FLUX.1 (Labs, 2024) | 0.7407 | 0.5718 | 0.6922 | 0.2863 | 0.3127 | 0.3703 |
+| | SD3-Medium (Esser et al., 2024b) | 0.8132 | 0.5885 | 0.7334 | 0.3200 | 0.3140 | 0.3771 |
+| | SEED-X (Ge et al., 2024) | 0.56 | 0.41 | 0.46 | 0.20 | 0.30 | 0.29 |
+| Und. & Gen. | Show-o + PARM (Guo et al., 2025b) | 0.75 | 0.56 | 0.66 | 0.29 | 0.31 | 0.37 |
+| | Janus-Pro-1B (Chen et al., 2025) | 0.4922 | 0.2752 | 0.3905 | 0.1284 | 0.2964 | 0.3338 |
+| | Janus-Pro-1B + T2I-R1 (Jiang et al., 2025) | $0.7924_{\pm 0.0018}$ | $0.4822_{\pm 0.0088}$ | $0.6691_{\pm 0.0038}$ | $0.3153_{\pm 0.0035}$ | $0.3064_{\pm 0.0003}$ | $0.3820_{\pm 0.0009}$ |
+| | Janus-Pro-1B + IRIS (Ours) | $0.7946_{\pm 0.0002}$ | $0.4788_{\pm 0.0082}$ | $0.6756_{\pm 0.0035}$ | $0.2909_{\pm 0.0042}$ | $0.3101_{\pm 0.0002}$ | $0.3793_{\pm 0.0013}$ |
+| | Janus-Pro-7B (Chen et al., 2025) | 0.6518 | 0.4364 | 0.5529 | 0.1948 | 0.3097 | 0.3845 |
+| | Janus-Pro-7B + T2I-R1 (Jiang et al., 2025) | $0.8015_{\pm 0.0002}$ | $0.5661_{\pm 0.0070}$ | $0.7081_{\pm 0.0051}$ | $0.3246_{\pm 0.0070}$ | $0.3090_{\pm 0.0002}$ | $0.3992_{\pm 0.0019}$ |
+| | Janus-Pro-7B + IRIS (Ours) | $0.7921_{\pm 0.0014}$ | $0.5155_{\pm 0.0083}$ | $0.6608_{\pm 0.0025}$ | $0.2875_{\pm 0.0061}$ | $0.3100_{\pm 0.0003}$ | $0.3916_{\pm 0.0024}$ |
+
+(c) WISE
+
+| Type | Method | Cultural† | Spatio-Temporal | | Natural Science | | | Overall† |
+|-|-|-|-|-|-|-|-|-|
+| | | | Time† | Space† | Biology† | Physics† | Chemistry† | |
+| Gen. Only | SD-v1 (Rombach et al., 2022) | 0.34 | 0.35 | 0.32 | 0.28 | 0.29 | 0.21 | 0.32 |
+| | SD-v2 (Rombach et al., 2022) | 0.30 | 0.38 | 0.35 | 0.33 | 0.34 | 0.21 | 0.32 |
+| | PixArt- $\alpha$ (Chen et al., 2023a) | 0.45 | 0.50 | 0.48 | 0.49 | 0.56 | 0.34 | 0.47 |
+| | SD-XL (Podell et al., 2023) | 0.43 | 0.48 | 0.47 | 0.44 | 0.45 | 0.27 | 0.43 |
+| | FLUX.1 (Labs, 2024) | 0.48 | 0.58 | 0.62 | 0.42 | 0.51 | 0.35 | 0.50 |
+| | Orthus-7B (Kou et al., 2024) | 0.23 | 0.31 | 0.38 | 0.28 | 0.31 | 0.20 | 0.27 |
+| | Show-o (Xie et al., 2024) | 0.28 | 0.36 | 0.40 | 0.23 | 0.33 | 0.22 | 0.30 |
+| Und. & Gen. | VILA-U (Wu et al., 2024) | 0.26 | 0.33 | 0.37 | 0.35 | 0.39 | 0.23 | 0.31 |
+| | Janus-Pro-1B (Chen et al., 2025) | 0.24 | 0.28 | 0.43 | 0.28 | 0.35 | 0.15 | 0.28 |
+| | Janus-Pro-1B + T2I-R1 (Jiang et al., 2025) | $0.35_{\pm 0.01}$ | $0.42_{\pm 0.02}$ | $0.49_{\pm 0.02}$ | $0.36_{\pm 0.02}$ | $0.43_{\pm 0.02}$ | $0.22_{\pm 0.01}$ | $0.38_{\pm 0.01}$ |
+| | Janus-Pro-1B + IRIS (Ours) | $0.33_{\pm 0.02}$ | $0.39_{\pm 0.01}$ | $0.49_{\pm 0.01}$ | $0.36_{\pm 0.01}$ | $0.45_{\pm 0.01}$ | $0.22_{\pm 0.01}$ | $0.37_{\pm 0.01}$ |
+| | Janus-Pro-7B (Chen et al., 2025) | 0.44 | 0.49 | 0.60 | 0.45 | 0.52 | 0.27 | 0.46 |
+| | Janus-Pro-7B + T2I-R1 (Jiang et al., 2025) | $0.48_{\pm 0.02}$ | $0.52_{\pm 0.01}$ | $0.61_{\pm 0.02}$ | $0.48_{\pm 0.03}$ | $0.56_{\pm 0.01}$ | $0.29_{\pm 0.01}$ | $0.50_{\pm 0.01}$ |
+| | Janus-Pro-7B + IRIS (Ours) | $0.48_{\pm 0.01}$ | $0.51_{\pm 0.01}$ | $0.59_{\pm 0.02}$ | $0.46_{\pm 0.01}$ | $0.55_{\pm 0.01}$ | $0.28_{\pm 0.01}$ | $0.48_{\pm 0.01}$ |
+
+{7}------------------------------------------------
+
+categories *biology, physics, chemistry* within *natural science* of the WISE benchmark, whereas T2I-R1 demonstrates advantages in tasks related to aesthetics and spatial relations, such as *counting* and *color attribution* in GenEval, *shape, texture, and 2D-spatial* in T2I-CompBench, and *spatio-temporal* in WISE. We attribute this to the fact that T2I-R1 training uses human aesthetic preferences (HPSv2) and spatial relations (DINO) in the external rewards. Besides, VQA-based rewards, i.e., GIT and ORM, can help align the images with the prompts in these tasks. The inclusion of these external rewards can thus benefit related downstream tasks. However, in downstream tasks irrelevant to the domain of external rewards, like *natural science*, T2I-R1 will lose its advantage. In our external rewards, HPSv2 and DINO are irrelevant to the natural science prompts, and reward models in VQA-based GIT and ORM also lack sufficient information to score the generated images in these categories. Therefore, we argue that incentivizing a model’s inherent ability with intrinsic rewards leads to effective and general exploration and learning than relying on specific external signals.
+
+### 4.3 ABLATION STUDY
+
+**Evaluation metrics** We use the four external rewards, namely HPSv2 (Wu et al., 2023), DINO (Liu et al., 2024), ORM (Guo et al., 2025b), and GIT (Wang et al., 2022) introduced in Sec. 4.1, to evaluate the image generation in the ablation studies. Previously, we used these reward models to train the baseline T2I-R1 model. However, in our ablation studies on IRIS, we never use these reward models in the training objectives, so they can be simple and unbiased metrics to evaluate the performance. We regenerate 553 GenEval prompts to synthesis the images. For each prompt, we generate four images to reduce noise. We report four averaged rewards on these images in the ablation studies.
+
+**Training with or without semantic CoTs** T2I-R1 (Jiang et al., 2025) suggests training with semantic CoTs benefits training by external rewards. We show that training with semantic CoTs also benefits training by intrinsic rewards. We consider two series of models: (1) Janus-Pro trained by IRIS, but without semantic CoTs, where we generate 8 images per query in GRPO’s advantage computation. (2) Janus-Pro trained by IRIS (with semantic CoTs), where we generate 8 text strings per query and subsequent 1 image per text string in GRPO’s advantage computation. Results in 5 show that training IRIS with semantic CoTs consistently outperforms being without semantic CoTs. In Fig. 14, we present some generated figures of training with and without CoTs.
+
+
+
+Figure 5: Ablation study: training with CoT outperforms training without CoT. The figure contains four line plots for HPSv2, GIT, GDino, and ORM. Each plot shows 'score' on the y-axis and 'Training Steps' (0 to 800) on the x-axis. Two series are shown: 'Training with CoT' (orange line with circles) and 'Training without CoT' (blue line with diamonds). In all four plots, the 'Training with CoT' series consistently achieves higher scores than the 'Training without CoT' series, indicating that training with CoTs outperforms training without CoTs across all four reward models.
+
+Figure 5: **Ablation study: training with CoT outperforms training without CoT**
+
+**Maximize or minimize image self-certainty** To determine whether image self-certainty should be maximized or minimized, we conduct three experiments: (1) minimizing text self-certainty only, (2) minimizing both text and image self-certainty (IRIS), and (3) minimizing text self-certainty and maximizing image self-certainty. We run GRPO for 800 steps and evaluate four external rewards every 100 steps. In Figure 6, we show that minimizing both text and image self-certainty improves performance, whereas minimizing text self-certainty alone has little effect. Interestingly, maximizing image self-certainty actually degrades performance, causing a rapid drop, which supports our claim: lower self-certainty improves image generation.
+
+**Maximize or minimize text self-certainty** To evaluate whether text self-certainty should be maximized or minimized, we conduct three experiments: (1) minimizing image self-certainty only, (2)
+
+{8}------------------------------------------------
+
+432
+433
+434
+435
+436
+437
+438
+439
+440
+441
+
+
+
+Figure 6: Ablation study: minimizing image self-certainty outperforms maximizing it. The figure contains four line plots for HPsV2, GIT, GDino, and ORM models. Each plot shows performance (y-axis) over training steps (x-axis, 0 to 800). Three series are shown: 'Minimize Text SC' (blue line with circles), 'Minimize Text SC and Minimize Image SC' (orange line with circles), and 'Minimize Text SC and Maximize Image SC' (grey dashed line with triangles). In all cases, the orange series maintains the highest performance, while the grey series drops significantly after 200 steps.
+
+Figure 6: **Ablation study:** minimizing image self-certainty outperforms maximizing it.
+
+442
+443
+444
+445
+446
+447
+448
+449
+450
+451
+452
+453
+454
+455
+456
+457
+458
+459
+460
+461
+
+minimizing both text and image self-certainty (IRIS), and (3) minimizing image self-certainty and maximizing text self-certainty. In Figure 7, we show that minimizing image self-certainty only achieves comparable performance in the early stages, however, it deteriorates rapidly after 200 steps. Meanwhile, minimizing text self-certainty always outperforms maximizing text self-certainty. This verifies our claim that maximizing text self-certainty discourages the model from exploring diverse semantic CoTs, thereby impairing its reasoning ability. In conclusion, minimizing text self-certainty proves to be a better strategy.
+
+
+
+Figure 7: Ablation study: minimizing text self-certainty outperforms maximizing it. The figure contains four line plots for HPsV2, GIT, GDino, and ORM models. Each plot shows performance (y-axis) over training steps (x-axis, 0 to 800). Three series are shown: 'Minimize Text SC' (blue line with circles), 'Minimize Text SC and Minimize Image SC' (orange line with circles), and 'Minimize Image SC' (grey dashed line with triangles). The orange series consistently shows the highest performance, while the grey series drops off after 200 steps.
+
+Figure 7: **Ablation study:** minimizing text self-certainty outperforms maximizing it.
+
+462
+463
+464
+465
+466
+467
+468
+469
+470
+471
+472
+473
+474
+475
+476
+477
+478
+479
+480
+481
+482
+483
+484
+485
+
+**Forward or backward KL** We consider the backward KL divergence formulation of IRIS reward,
+
+$$\text{IRIS}_{\text{em}}(o_t|q, o_{ B_{\text{crit}}$ , potentially requiring retuning of $\lambda$ .
+
+**Exploiting collapse for early stopping.** Suppose we wish to find the optimal setting of a hyperparameter (HP) in large-scale training. Naively, we could sweep across settings of the HP and train a large-scale model to completion at each setting; the lowest final loss would identify the best choice. Alternatively, rather than training to completion, we propose a procedure to infer the final loss values from partial training runs. We do this by exploiting the collapse phenomenon as follows:
+
+1. For each large-scale setting in the sweep, first identify the corresponding *TLC controls*, i.e, the LR schedule, $\tau$ , and TPP.
+2. Train a smaller (e.g., 100M-parameter) model for each unique combination of TLC controls.
+3. Normalize these small-run loss curves to obtain the *normalized universal TLCs* ( $\ell(\hat{t})$ ) corresponding to each set of controls.
+4. Perform *partial* training runs (e.g., to 30% of tokens) at each HP setting.
+5. For each partial large-scale loss curve, use its corresponding universal TLC to *predict* the final loss value. Do this by determining the divisor $L(T)$ that maximally *aligns* the partial curve with the same segment of the corresponding universal TLC. These divisors thus act both as normalizing constants *and*, by construction, as calibrated *extrapolations* of the final loss.
+6. Select the optimal hyperparameter setting corresponding to the lowest predicted final loss.
+
+{8}------------------------------------------------
+
+**Predicting the normalized universal TLCs.** In some cases, we may already have many small-scale runs, but not loss curves for each of the *specific* TLC controls corresponding to our large-scale sweep. In this situation, we hypothesize that a *parametric surrogate model* can generate high-fidelity normalized universal TLCs as a function of $\tau$ and TPP. This allows us to obtain the normalized TLC shapes required for Step 5 of the above procedure, *without* training small-models at exactly-matching controls. Fitting such a surrogate lets us leverage our broader TLC dataset, and enables estimation of normalized TLC shapes that go beyond trained regimes (see Appendix D.3 for an example).
+
+For the surrogate $\ell(\hat{t})$ model, we experimented with several functional forms and ablations on our 111M-scale data, focusing on:
+
+$$\hat{\ell}(\hat{t}) = ((1 + \epsilon_1)/(\hat{t} + \epsilon_1))^m + b \cdot (\eta(\hat{t}) + \epsilon_2)^q \quad (4)$$
+
+The first term captures power-law improvement in training fraction (Appendix B.2) while the second term modulates this by the LR schedule $\eta(\hat{t})$ , reflecting how variance suppression is phased over training (Appendix B.3). $m$ , $b$ , $q$ , $\epsilon_1$ and $\epsilon_2$ are fit parameters. We divide $\hat{\ell}(\hat{t})$ by its final value so that $\hat{\ell}(1) = 1.0$ . Fixing $\epsilon_1 = 0.001$ and $\epsilon_2 = 0.1$ avoids large swings at $\hat{\ell}(0)$ and $\hat{\ell}(1)$ .
+
+In practice, we find $m$ can be fixed (we use 0.05). Parameters $b$ and $q$ then vary systematically with $\tau$ and TPP, respectively, which we capture with power laws:
+
+$$b = b_{\text{const}} \cdot (\tau)^{b_{\text{exp}}}, \quad q = q_{\text{const}} \cdot (\text{TPP})^{q_{\text{exp}}} \quad (5)$$
+
+Because $b$ and $q$ interact, jointly fitting their parameters would require a $\mathcal{O}(g^4)$ grid search (with $g$ the grid resolution). Instead, we alternate: fit ( $b_{\text{const}}, b_{\text{exp}}$ ) with fixed $q$ , then fit ( $q_{\text{const}}, q_{\text{exp}}$ ) with fixed $b$ , iterating to convergence. This reduces cost to $\mathcal{O}(g^2)$ while yielding stable fits.
+
+**Results: prediction.** We fit the $b$ and $q$ power laws on 111M-scale data and evaluate using mean absolute error (MAE) between $\hat{\ell}$ and true $\ell$ , computed over $\hat{t} \in [0.2, 1]$ (ignoring error around LR warmup, when initial curves are noisy). We report unweighted mean MAE across all curves.
+
+
+
+Figure 8: 3.3B-scale predictions and true normalized TLCs. The plot shows training loss (unnormalized) on the y-axis (ranging from 1.0 to 1.4) versus fraction of training tokens, t-hat (ranging from 0.00 to 1.00). Multiple curves are shown for different lambda values (0.05, 0.1, 0.2, 0.4). A callout box indicates the formula for the predicted loss: approx 1/t^m + b \* eta(t)^q.
+
+Figure 8: **3.3B-scale predictions and true normalized TLCs.**
+
+
+
+Figure 9 (left): Early stopping works best with predicted loss. Tuning lambda in 1.7B model. The plot shows loss diff. predicted vs. true best (%) on the y-axis (ranging from 0.0 to 1.4) versus stop point in training (ranging from 0.2 to 1.0). Three lines are shown: 'Choose randomly' (blue dotted), 'Choose current best' (orange dashed), and 'Choose predicted best' (green solid). The green line stays near 0% while the others fluctuate.
+
+Figure 9: **Early stopping works best with predicted loss:** Tuning $\lambda$ in 1.7B (left) and 3.3B (right) models.
+
+
+
+Figure 9 (right): Early stopping works best with predicted loss. Tuning lambda in 3.3B model. The plot shows loss diff. predicted vs. true best (%) on the y-axis (ranging from 0.0 to 1.4) versus stop point in training (ranging from 0.2 to 1.0). Three lines are shown: 'Choose randomly' (blue dotted), 'Choose current best' (orange dashed), and 'Choose predicted best' (green solid). The green line stays near 0% while the others fluctuate.
+
+Results show that predictions are good: MAE is low and actually improves with scale (appendix Table 11), likely because (1) larger datasets yield smoother TLCs, and (2) fewer extreme hyperparameter tests at larger scales. Fig. 8 (left) shows an example: predictions trained on 111M-scale TLCs (1000 $\times$ fewer FLOPs) closely match observed curves for a 3.3B model.
+
+Estimating $b$ and $q$ as power laws reduces MAE by two-thirds compared to using fixed values (Table 12), though error remains $\approx 2\times$ higher than an oracle fit of $b$ and $q$ *per curve*. Adjusting for both $\tau$ and TPP is vital; however, fitting $b$ and $q$ jointly on both did not improve further.
+
+**Results: tuning.** We now test whether optimal LLM settings can be predicted from partial training runs. At different stopping points in training, we choose a setting as the best, and evaluate the gap between the chosen setting’s final loss and the true best setting. We compare the following choices:
+
+1. *Random baseline*: randomly choose any setting as the best.
+
+{9}------------------------------------------------
+
+2. *Current best*: choose the setting giving the best result at the stop point.
+3. *Predicted best*: Align partial TLCs with predicted $\hat{\ell}$ , choose lowest fitted normalizer $L(T)$ .
+
+Fig. 9 shows results for $\lambda$ sweeps at 1.7B/20TPP (*left*) and 3.3B/30TPP (*right*). *Predicted best* achieves negligible loss gaps when stopping after just 30% and 10% of training, respectively. In contrast, *current best*—used in Almazrouei et al. (2023) for LR tuning—succeeds initially at 3.3B but fails at 1.7B, showing it is not a general solution. Further experiments are in Appendix D.2.
+
+**Key takeaway 3:** *Collapse enables reliable early stopping. By aligning partial training curves to a small-scale reference, we can predict final loss $L(T)$ and select hyperparameters after only 10–30% of training, substantially reducing tuning compute.*
+
+## 6 RELATED WORK
+
+**Scaling laws and scale-stable dynamics.** *Neural scaling laws* relate loss (generally obtained from separate training runs) to growth in model, data, and compute sizes, via power laws (Hestness et al., 2017; Kaplan et al., 2020; Henighan et al., 2020; Hoffmann et al., 2022; Caballero et al., 2022; Alabdulmohsin et al., 2022). To ensure stable training as models scale, parameterizations such as $\mu$ P transfer base hyperparameters across sizes, and yield early dynamics that are scale-stable (Yang et al., 2021; Vyas et al., 2023; Kalra et al., 2023), even *super-consistent* (in curvature) (Noci et al., 2024). Observing *suboptimal LRs* under $\mu$ P as data scales, recent work has proposed decreasing the LR as a function of $D$ (Shen et al., 2024; Bjorck et al., 2024); Bergsma et al. (2025a) unify these techniques as forms of $\tau$ adjustment. Qiu et al. (2025) show that, for compute-optimal ladders, TLCs collapse after normalization. We build on these threads at LLM scale while co-scaling width, depth, batch size, and weight decay, identifying new controls that govern TLC collapse.
+
+**LLM loss-curve prediction.** While Kaplan et al. (2020) fit a simple power law to TLCs, recent papers make loss prediction explicitly LR-dependent (Tissue et al., 2024; Luo et al., 2025; Schaipp et al., 2025; Qiu et al., 2025; Hong & Wang, 2025). Complementary to these, we take a timescale-centric view: AdamW implements an EMA over updates, and the normalized timescale $\tau$ (jointly set by LR, weight decay, and batch size) acts to control an *implicit batch size*, one that trades bias reduction vs. variance suppression and thereby shapes TLCs. In a noisy-quadratic model (Appendix B.3), we derive an expression for training loss under a constant LR, and explain why decaying schedules invert the ordering of TLCs across $\tau$ , with deformations remaining scale-invariant once normalized.
+
+**Early stopping, HPO, and monitoring.** Early-termination and HPO methods extrapolate TLCs or prune trials (Swersky et al., 2014; Domhan et al., 2015; Jaderberg et al., 2017; Zela et al., 2018; Li et al., 2018; Choi et al., 2018; Akiba et al., 2019), but typically require many short runs and are not tailored to LLM pre-training regimes. Our approach leverages *collapse itself*: fit a small-scale predictor of normalized TLCs, align in-progress curves to infer $L(T)$ , and select winners by 10–30% of training. Operationally, large-scale reports document spikes and divergences (Chowdhery et al., 2022; Zhang et al., 2022a; Wortsman et al., 2023; Molybog et al., 2023); we show collapse residuals provide a quantitative, scale-normalized early-warning signal and a practical aid for debugging.
+
+## 7 CONCLUSION
+
+At LLM scale, *normalized training loss curves collapse across model sizes* when three controls align: the AdamW timescale $\tau$ , the tokens-per-parameter ratio (TPP), and the learning-rate schedule. Empirically, $\tau$ (bias-variance smoothing) and TPP (power-law improvement rate) set TLC shape, while the schedule phases these effects. Fixing TPP and setting $\tau$ optimally for that TPP yields alignment across $\sim$ 100M–3.9B parameters in our experiments.
+
+We instantiate this in **Celerity**: fixed TPP with optimal $\tau$ produces tight collapse and competitive accuracy. *Collapse residuals* surface issues early, localize their onset, and enable safer restarts. A simple predictor for normalized TLCs (fit at small scale) supports *early stopping* in HPO: by 10–30% of training we can select winners and estimate $L(T)$ , saving tuning compute. For \$1B runs, collapse provides a valuable reference trajectory: keeping training on track, every step of the way.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/40sQXprYlm.txt b/papers/40sQXprYlm.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4d5cbb391bc0d4a54575a7de1e6abb97ccfd08f3
--- /dev/null
+++ b/papers/40sQXprYlm.txt
@@ -0,0 +1,277 @@
+
+
+{0}------------------------------------------------
+
+# TOWARDS DISTRIBUTED NEURAL ARCHITECTURES
+
+## Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+We introduce and train distributed neural architectures (DNA) in vision and language domains. DNAs are initialized with a proto-architecture that consists of (transformer, MLP, attention, etc.) modules and routers. Any token (or patch) can traverse any series of modules in any order. DNAs are a natural generalization of the sparse methods such as Mixture-of-Experts, Mixture-of-Depths, parameter sharing, etc. Computation and communication patterns of DNA modules are learnt end-to-end during training and depend on the content and context of each token (or patch). These patterns can be shaped by further requirements added to the optimization objective such as compute/memory efficiency or load balancing. We empirically show that (i) trained DNAs are competitive with the dense baselines in both domains and (ii) compute efficiency/parameter sharing can be learnt from data. Next, we analyze the emergent connectivity and computation patterns in the trained DNAs. We find that the paths that tokens take through the models are themselves distributed according to a power-law. We show that some paths (or, equivalently, groups of modules) show emergent specialization. Finally, we demonstrate that models learn to allocate compute and active parameters in an interpretable way.
+
+## 1 INTRODUCTION
+
+Over the last few years, scale has been the main driver of the progress in AI. The most reliable recipe to train a better (base) model has been to increase the model size and the amount of data1. Furthermore, with the advance of the transformer architecture it became clear that GPU utilization is one of the key factors that determines the quality of a model because more compute translates into better performance Kaplan et al. (2020); Achiam et al. (2023); Grattafiori et al. (2024). Consequently, architectures that leverage parallel execution of matrix multiplication became dominant Vaswani et al. (2017). As AI workloads are becoming increasingly wide-spread in all domains we expect a steep rise of the inference compute expenditure. Consequently the task of developing methods that save inference compute is critical. There is a large body of work in efficiency including distillation Hinton et al. (2015), pruning LeCun et al. (1989), quantization Jacob et al. (2018), over-training Sardana et al. (2023), model-routing Chen et al. (2023), speculative decoding Leviathan et al. (2023), as well as mixtures of these techniques Muralidharan et al. (2024).
+
+These challenges motivate developing distributed neural architectures (DNA) Fig. 1. These architectures are not feed-forward and allow information to flow between any pair of computing modules Figs. 1–2. Connectivity of DNAs emerges from end-to-end training Figs. 3, 4, 13, 8. Finally, DNAs are trained to allocate compute dynamically based on the input data Fig. 5. Another motivation for this work comes from the recent work on layer pruning Gromov et al. (2024), Csordás et al. (2025), where it was found that deeper layers contribute unreasonably little to certain benchmarks. Our main inspiration is the work on *conditional computing* (CC) Bengio et al. (2013), of which MoE is the prime example. There, different tokens (or patches) are allowed to take different paths through the network. Each path is decided by an additional structure called the *router*. Today, the main application of CC is (partial) decoupling of parameter count and compute by *activating* only a fraction of parameters per forward pass Shazeer et al. (2017) (and Jacobs et al. (1991)). Routing can also be used to control the amount of compute (or, equivalently, the number of active parameters) *per token*. The main example of this idea is Mixture-of-Depths (MoD) Raposo et al. (2024) and Layer-skip Elhoushi et al. (2024) (which is based on self-speculative decoding).
+
+1Assuming that the larger model is trained intelligently and the extra data is diverse and good quality.
+
+{1}------------------------------------------------
+
+
+
+Figure 1: (a) DNA from the module's perspective: A diagram showing tokens (M1-M8) and their trajectories through modules. (b) DNA from the token's perspective: A diagram showing the forward pass of tokens through modules, with attention patterns. (c) Path distribution of top-1 trained DNA vision model: A log-log plot of path prob vs rank. (d) Path distribution of top-1 trained DNA language model: A log-log plot of path prob vs rank. (e) Path distribution of top-1 trained DNA vision model: Heatmaps for bird, chessboard, and cat. (f) Path distribution of top-1 trained DNA language model: Heatmaps for 'to be', 'a', 'the', 'of', 'and', 'that', 'his', 'his', 'his'.
+
+Figure 1: (a) DNA from the module’s perspective: Each token follows its own trajectory through the network. There is no notion of depth or width. When the objective function includes compute efficiency some paths are shorter than others. (b) DNA from the token’s perspective: The forward pass consists of a series of steps. At any given step, each token is acted on by a module or by an identity operation (black dots). When a module that contains attention operation acts on several tokens simultaneously the attention pattern is computed *only* between these tokens. Consequently, the attention part of the architecture can be understood as dynamic (i.e. data-dependent) sparsity. (c) Path distribution of top-1 trained DNA vision model: we plot the distribution of paths that tokens take through the model collected from test split of ImageNet. The color corresponds to the frequency of the paths and is used in the sub-figure (e). Surprisingly, the distribution of paths through the random model also follows power-law with exponent $-1$ . (d) Path distribution of top-1 trained DNA language model: we plot the distribution of paths that tokens take through the model. The color corresponds to the frequency of the paths and is used in the sub-figure (f). The distribution is a power-law with exponent $-1.2$ . Similarly, we find that paths through the random model are distributed according to a power-law with exponent $-1$ . (e) We highlight the paths that different patches take through the DNA by their frequency. We see very clear *emergent* specialization of paths: some paths focus on the object, others on the background and others on the edges and boundaries. This visualization also illustrates the sparse nature of the attention: patches of different colors do not attend to each other in later steps of the forward pass. (f) Examples of tokens that follow frequent (low rank) and rare (high rank) paths. We see that paths specialize in different ways: versions of the verb “to be”, embedding of “.” which we view as sentence-level attention, adjectives, etc.
+
+In this work, we leverage conditional computing to create DNA models whose connectivity emerges from the end-to-end training. DNAs are initialized with a *proto*-architecture that consists of a collection of routers and a collection of modules such as MLP, attention, transformer, etc2. Each token is routed via its own path through the network. Modules and routers are optimized jointly. This construction includes feed-forward, MoE, MoD, weight sharing, early exit as particular cases that can emerge via optimization. In practice, we find that a mixture-of-*all*-of-these-methods emerges from end-to-end training.
+
+We train two types of models: (i) discriminative models in vision domain trained on ImageNet Deng et al. (2009) and (ii) generative NLP models trained on a subset of fineweb-edu. Our main findings are3
+
+- In both domains DNA models are competitive with dense baselines.
+- DNA models can learn to use less compute with minor effects on performance.
+- The paths taken by the tokens/patches and routing decisions are often human-interpretable.
+
+2We have not yet experimented with including other modules
+
+3We emphasize that our work is *not* focused on beating SOTA models in any domain, but on showing that distributed models are *feasible* and on analyzing their emergent structure.
+
+{2}------------------------------------------------
+
+- Individual modules, groups of modules, as well as paths specialize.
+
+The paper is organized as follows: in Section 2 we explain the general setup, establish some terminology, and introduce certain choices we made to ensure trainability. In Section 3 we present the vision DNA models and analyze their inner-workings, while in Section 4 we do the same for the generative language DNA models. In Section 5 we present our conclusions and discuss the new emerging research directions.
+
+## 2 DISTRIBUTED NEURAL ARCHITECTURES
+
+### 2.1 GENERAL SET UP AND INTUITION
+
+In this Section we describe the general structure of DNAs, as well as different ways of reasoning about its nature. The main idea can be traced back to the classic work of Minsky (1986): we view a neural network as a collection of computational modules that develop specialization, learn interaction and composition end-to-end. The internal structure of the computational modules as well as communication pattern between them are *emergent*. Our objective is to train well-performing models and then to understand the distributed nature of computation, emerging connectivity and specialization rather than saturating any particular benchmark. In order to take full advantage of DNAs the infrastructure has to be co-designed with the emergent structure (or, equivalently, infrastructure should shape/constrain the emergent structure). We leave this direction to the future work.
+
+**General DNAs.** In the general setting, the proto-architecture of DNAs is a collection of the following components (i) Input node (including embedding/patchify layers), (ii) Output node (including unembedding layer), (iii) $N_m$ distinct computational modules, $M_i$ , (iv) $N_r$ distinct routers, $R_j$ .
+
+Each computational module operates on sequences and can be a transformer, MLP, attention, mamba, convolution or any other operation. The total number of modules $N_m$ determines the total number of parameters, but not the compute. Each router is a classifier with (at most) $N_m$ classes. Routers process tokens in parallel and send them out to the corresponding modules. The router can be trained with a general top- $k$ choice. In our experiments we take $k = 1, 2$ .
+
+The forward pass (after traditional embedding operations) works as follows: (i) token embeddings are routed to relevant modules, (ii) modules perform computation on token embeddings they received, (iii) recomputed embeddings are put back together and step (i) is repeated. In Fig. 1 we show the forward path from the perspective of modules and from the perspective of tokens. The latter makes it clear that the forward pass is fully causal (in contrast to MoD Raposo et al. (2024)), while the former emphasizes distributed nature of DNA.
+
+### 2.2 TECHNICAL DETAILS
+
+In this paper, we made a few purely empirical design choices that allowed to take advantage of optimizations such as flash attention as well as to reduce the search space. Each of our modules can be chosen from the classic GELU-transformer block or its attention/MLP component. In all cases, we use the Pre-LayerNorm (Pre-LN) version. Many improvements/gains are certainly left on the table.
+
+**Routing.** Our routers are linear (token-choice) classifiers. The probabilities of selecting a given $M_i$ at step- $s$ for token $t$ is obtained by applying softmax over router logits, where the routing decision is made by sampling with hard top- $k$ . This softmax results in $\rho^{(s,t)} = \text{softmax}(R_s(h^{(s,t)}))$ . Each token chooses $k$ modules to participate in, leading the $i^{\text{th}}$ module to have an input, $h_i^{(s)}$ , which is the collection of those tokens. At each step- $s$ , the outputs of the $k$ chosen modules are combined as follows4
+
+$$h^{(s+1,t)} = h^{(s,t)} + \sum_{i \in \text{top-}k_s(\rho_i^{(s)})} \rho_i^{(s)} \left( M_i^t(h_i^{(s)}) - h^{(s,t)} \right), \quad (1)$$
+
+4Somewhat awkward for of Eq.1 is explained by the fact that $M_i^t(h_i^{(s)})$ is assumed to have a skip connection built-in, so we subtract $h^{(s,t)}$ and the add it later to make sure we do not overcount it and end up with blowing up signal.
+
+{3}------------------------------------------------
+
+
+
+Figure 2 consists of three panels. The top-left panel is a line graph showing test accuracy (%) on the x-axis (0 to 300 epochs) for three models: ViT (blue line, 79.8% acc), Top-1 DNA (orange line, 79.1% acc), and Top-2 DNA (green line, 78.8% acc). All models show a rapid increase in accuracy, with ViT reaching the highest accuracy. The top-right panel is a line graph showing the effective number of compute nodes (top-k) on the y-axis (1.0 to 2.5) versus step on the x-axis (0 to 10). Top-1 DNA (orange line with circles) starts at 1.0 and fluctuates, peaking at approximately 2.2 at step 8. Top-2 DNA (green line with circles) starts at 1.5 and fluctuates, peaking at approximately 2.4 at step 8. The bottom panel shows two diagrams of patch flow. The left diagram is for Top-1 DNA and the right is for Top-2 DNA (25% skip). Both diagrams show a network of routers (circles) and patches (dots) flowing from input to output. The Top-2 DNA model shows a more sparse network with fewer routers and patches.
+
+Figure 2: Performance and routing analysis of DNA models. Top-Left: Test accuracy (%) vs epoch for ViT (79.8%), Top-1 DNA (79.1%), and Top-2 DNA (78.8%). Top-Right: Effective number of compute nodes (top-k) vs step for Top-1 and Top-2 DNA. Bottom: Flow of patches for Top-1 and Top-2 DNA models.
+
+Figure 2: **Top-Left:** Test accuracy on ImageNet validation set during training for DNAs and the dense baseline. **Top-Right:** Effective number of compute nodes used per step, for DNA models at the end of training. In both cases, the models exhibit higher diversity in routing decisions near the output. **Bottom:** Flow of patches plotted using the validation set of the ImageNet for the top-1 (left) and top-2 (right) models. Each column of circles contains *all* modules in the DNA. The size of the circles is proportional to frequency with which each module is activated. If a circle is absent, then it is never activated. We see that the models develop a dense foundation and later split into distributed sparse networks.
+
+where $h^{(s)}$ is the pre-activation at step- $s$ and $\star$ denotes the collection of all possible module indices, and the $t$ superscript on $M$ denotes the $t^{\text{th}}$ component of the output. This specific choice is made building on Roberts et al. (2022); Doshi et al. (2023) to ensure good signal and gradient propagation.
+
+The routers are arranged as follows: at each token-processing step $s$ a router $R_s$ makes the decision for *all* tokens. The total number of token processing steps is capped by a hyperparameter $s_{\max}$ which determines the maximum compute per token. While this is not the most general way of arranging the routers, we had to limit our exploration to converge in a finite time. Finally, we found that the optimization converges much better if first few modules are not routed, meaning they process all tokens and that choice is hard-coded. We refer to these few layers as *backbone* and denote the number of layers in the backbone as $N_b$ . In our experiments $N_b = 0, 1, 2$ .
+
+**Emergent compute efficiency.** In order to teach the DNA to use compute intelligently we introduce several *identity* modules that do not apply any operation: If a router sends a token to the identity module then nothing happens to the token ( $h^{(s+1)} = h^{(s)}$ ). To encourage the network to skip modules (and save compute) we follow the bias trick from DeepSeek model Liu et al. (2024): We introduce one bias $b_i^{(s)}$ for each step $s$ . These biases are accumulated from the Autograd as in Liu et al. (2024). While in the original work the biases were used to enforce load balancing we use them to encourage the models to use identity layers by modifying the top- $k$ selection part of the forward pass via
+
+$$i \in \text{top-}k \left( \rho_{\star}^{(s)} + b_{\star}^{(s)} \right). \quad (2)$$
+
+Note the biases are only non-zero when the index $i$ corresponds to Identity module and will not affect the probability in Fig. 1.
+
+{4}------------------------------------------------
+
+
+
+Figure 3: Left: A graph showing paths followed by patches on the right. The graph has nodes representing patches and edges representing paths. The paths are color-coded by rank: Top-1 DNA (blue), Rank 1-5 (orange), Rank 6-10 (green), Rank 11-15 (yellow), and Rank 16-20 (red). The right side shows a grid of patches, with some patches highlighted in different colors corresponding to the paths. The highlighted patches show different levels of commonality: lower-rank paths (blue) show more general features like color and edges, while higher-rank paths (red) show more specific concepts like brass instruments and puzzle pieces.
+
+Figure 3: **Left:** Paths followed by the patches on the right. The color corresponds to the rank. **Right:** Patches that follow the highlighted paths. The patches that pass through lower-rank paths share a higher-level commonality (color and edges), while patches that go through higher-rank paths are associated with the more specific concept (brass instruments and puzzle pieces).
+
+We initialize all biases at 0 and only update the term corresponding to identity modules during training
+
+$$b_i^{(s)}(t+1) = b_i^{(s)}(t) + u \cdot \text{Sign} \left( r \cdot k \cdot \bar{c}^{(s)}(t) - \sum_{i \in \text{Id}} c_i^{(s)}(t) \right), \quad (3)$$
+
+where $c_i^{(s)}$ represents the token counts that pass through a given module, and $\bar{c}^{(s)}$ denotes the average token counts across all modules, $r$ is introduced to control the ratio of tokens to skip and $u$ is for controlling the update speed of the bias term. We emphasize that because of the identity modules each token is processed using different amount of compute. Furthermore, the amount of compute per sequence varies due to sparse attention patterns.
+
+**Optimization objective.** We optimize a traditional categorical cross-entropy loss function with AdamW optimizer with learning rate warm-up and cos-decay for vision and warm-up stable decay for language. The values of hyperparameters, initialization scheme, etc can be found in the Fig. A. We do *not* use load-balancing because our objective is to let models develop the structures they need in order to solve the task and then to understand these structures. Optimization of DNAs for real-world inference is delegated to the future work.
+
+| Model | $N_b$ | $N_m$ | $N_r$ | $d_{\text{embed}}$ | $d_{\text{MLP}}$ | $N_{\text{head}}$ | Active Params | Params |
+|-|-|-|-|-|-|-|-|-|
+| ViT-small | - | 12 | - | 384 | 1536 | 6 | 22M | 22M |
+| top-1 DNA | 1 | 18 | 11 | 384 | 1536 | 6 | 22M (17M) | 34M |
+| top-2 DNA (25% skip) | 1 | 24 | 11 | 256 | 1024 | 4 | 18M (15M) | 18M |
+
+Table 1: Hyperparameters of DNA models and ViT-small. Note that for DNA models, the number of active parameters shown in parentheses refers to non-shared active parameters (as detailed in Sec. 3.3).
+
+## 3 DNA FOR COMPUTER VISION
+
+### 3.1 EXPERIMENTAL DETAILS
+
+We trained several DNA models at a ViT-Small scale (Dosovitskiy et al., 2021), with the complete set of hyperparameters reported in Fig. 1. In all cases, we used the same data-augmentation pipeline—RandomCrop, RandomHorizontalFlip, and ColorJitter (Krizhevsky et al., 2012); AutoAugment (Cubuk et al., 2019); Random Erasing (Zhong et al., 2020); MixUp (Zhang et al., 2018); and CutMix (Yun et al., 2019). All models were trained for 300 epochs with a batch size of 2048. We performed a grid search over learning rates $\eta \in \{0.001, 0.0015, 0.002\}$ and weight-decay values $\lambda \in \{0.02, 0.05, 0.1, 0.2\}$ . For further details, we refer the readers to Appendix A. The training curves for the best run of each model and the routing patterns of the top-1 and top-2 DNA models are shown in Fig. 2.
+
+{5}------------------------------------------------
+
+
+
+Figure 4: Three examples of reconstructed images: bell pepper, hummingbird, and Welsh springer spaniel (top to bottom). Each row shows the original image on the right and a sequence of 11 reconstructed images on the left, labeled 'Step 0' through 'Step 0-10'. The reconstructions show a gradual development of the image structure from abstract patterns to recognizable shapes.
+
+Figure 4: Three examples of reconstructed images: bell pepper, hummingbird, and Welsh springer spaniel (top to bottom). Images are reconstructed by maximizing the total weight on *all* routing decisions made from step 0 to step $i$ of the forward pass. We can see that the early layers (1-3) are primarily concerned with texture and edges, intermediate layers (4-6) with lighting distributions, and the remainder (7-10) host larger-scale features. The final reconstructed images (top to bottom) are classified as “spotlight” ( $p = 0.48$ ), “hummingbird” ( $p = 0.55$ ), and “papillon” ( $p = 0.44$ ). In the last two cases, all top 5 model guesses are birds and dog breeds correspondingly, reflecting hierarchical nature of ImageNet. Model guesses for first row are: spotlight, matchstick, candle, car mirror, snowmobile.
+
+### 3.2 INTERPRETABILITY
+
+**Patches and Paths.** The paths taken by patches are highly interpretable. To demonstrate this, we used the top-1 DNA model shown in Fig. 2 and collected the paths of all patches from images in the ImageNet validation set. In Fig. 3, we highlight four representative paths (colored by their corresponding CDF values), along with 60 randomly selected patches that follow each path.
+
+We observed that frequently taken paths (i.e., those with low rank) tend to aggregate patches from diverse images that nevertheless share high-level features—for example, edges in the case of the rank-5 path, and flat color regions for the rank-15 path. In contrast, infrequently taken paths (i.e., those with high rank) tend to group patches from visually similar images with low-level similarities—for instance, brass instruments for the rank-775 path and puzzle pieces for the rank-941 path. To establish a baseline, we performed a similar analysis on a randomly initialized DNA model. Somewhat surprisingly, we found that it can also cluster images. However, it uses a very different similarity measure, leading to nearly identical patches being clustered based on superficial features5. See Appendix G.2 for further discussion.
+
+We have also found that in the cases when an image has a clearly defined object, such as in Fig. 1 and Fig. 13, there is a group of patches that follows the boundary between object and the background. In fact, the most compute-heavy images are the ones with very intricate collection of boundaries Fig. 5. These observations appear related to the work Riquelme et al. (2021) where it was found that the patches most critical for classification are of the same nature.
+
+**Routing decision visualization.** To further understand the DNA routing decision structure we generate the images whose patches take exact same paths as a given image from ImageNet. Concretely, each image contains 192 patches and each patch follows a path described by 12 integers (routing decisions, top-1 case). Each step of forward path is described by 192 integers – routing choices for each patch. For $k$ steps we specify $k \cdot 192$ integers. We use deep-dream method to generate an image that that travels the same 192 paths as the original image with highest probability. Fig. 4 depicts how the image develops when the patches match more steps of the paths of original images. Early decisions are not informative because the network is dense for the first few steps. Then human-interpretable features rapidly develop as deeper routing decisions are maximized. The final image looks recognizable, but not the same as the original. Furthermore, the network is guess the group of classes correctly: birds and dogs, but has difficulty deciding the species and breed. The onset of interpretable features agrees with onset of distributed nature as seen in Fig. 2
+
+5One could have expected these results in view of the work on signal propagation Schoenholz et al. (2016) which argues that for properly initialized (random) networks similar inputs have similar representations
+
+{6}------------------------------------------------
+
+
+
+Figure 5: Distribution of computational cost on the ImageNet validation set. The left side shows a histogram of normalized compute (y-axis, 0.60 to 0.80) versus count (x-axis, 0 to 3000). The distribution is roughly Gaussian, centered around 0.75. The right side shows a 3x4 grid of images categorized by compute level: high (flatworm, puffer, hen-of-the-woods, pretzel), medium (triceratops, fireboat, basset, Labrador retriever), and low (bassoon, cellular telephone, loudspeaker, theater curtain).
+
+Figure 5: Distribution of computational cost on the ImageNet validation set for the top-2 DNA (25% skip) model. We observe that (i) the compute follows roughly Gaussian distribution; we believe that it is a reflection of the dataset rather than the model. (ii) the amount of compute that the model spends on the image correlates with the visual content. Namely, the model prioritizes boundary patches, so in high compute images almost everything looks like a boundary, whereas in low compute images almost everything is a background.
+
+### 3.3 EFFICIENCY
+
+**Compute.** We find that the model allocates compute in an interpretable manner, suggesting that its decisions are contextual. We examine this behavior using the top-2 DNA model (with 25% skip rate) shown in Fig. 2 by measuring the compute allocated to each image. Specifically, we count the number of computational modules used along the ribbon of each patch, average this count over all patches within an image, and normalize the result such that the normalized compute equals 1 when the ribbon never skips a module. The results are shown in Fig. 5. On the left, we plot the distribution of compute across all images in the ImageNet validation set. On the right, we randomly select four images for each compute level—high (top 1% of images), medium (49%–51%), and low (bottom 1%). We observe that images requiring lower compute tend to be visually simpler, containing no “object”, while the high compute images are vibrant with textures and the model needs more compute to segment it.
+
+**Parameter sharing.** We observe that both top-1 and top-2 models tend to reuse certain modules, leading to *emergent*, input-dependent weight sharing. The models have not been explicitly incentivized to share parameters. On Fig. 7 we show several results: First, weight-sharing distribution is roughly gaussian with 25% and 15% of parameters reused. Second, high-reuse images do not contain the object. The models like to reuse the module that has full (*i.e.* not sparse) attention. We also verified that images that use the least active parameters are classified correctly. We find that emergent parameter sharing developed by the models relies on similar features. We can conclude this because different models exhibit similar amount of parameter sharing on the same images. Finally, we find that compute savings and parameter savings are not correlated. See Appendix C for details.
+
+## 4 LANGUAGE DNA MODELS
+
+In this Section, we discuss DNA language models. Before diving in, we emphasize that language and image datasets (and objectives) are *very* different. In particular, FineWeb-edu is vastly more complex than ImageNet. Consequently, our models are way too small to truly absorb it (or even 21B token part of it). Nonetheless, already at this small scale and vastly “underparametrized” regime we observe many interesting effects.
+
+{7}------------------------------------------------
+
+### 4.1 EXPERIMENTAL DETAILS
+
+We trained several DNA models at a scale comparable to GPT-2 Medium Radford et al. (2019), with the complete set of hyperparameters listed in Table 2. All models were trained on the FineWeb-Edu Lozhkov et al. (2024) 100B-token subset, for approximately 21B tokens in total (40,000 steps with a batch size of 512 and a context length of 1024). For each model, we searched over three learning rates, $\eta \in \{0.0004, 0.0008, 0.0016\}$ , with a fixed weight decay value $\lambda = 0.1$ . All models are trained using the same learning rate schedule, which includes a linear warmup for the first 1,000 steps and a linear decay to $0.1 \cdot \eta$ for the last 8,000 steps. The training curves of the best run for each model, together with the routing patterns of the top-1 and top-2 DNA models, are shown in Fig. 6. We present a few standard benchmark results in Table 3.
+
+| Model | $N_b$ | $N_m$ | $N_r$ | $d_{\text{embed}}$ | $d_{\text{MLP}}$ | $N_{\text{head}}$ | Active Params | Params |
+|-|-|-|-|-|-|-|-|-|
+| GPT-2 medium | - | 24 | - | 1024 | 4096 | 16 | 406M | 406M |
+| top-1 DNA | 2 | 36 | 22 | 1024 | 4096 | 16 | 406M (242M) | 583M |
+| top-2 DNA | 2 | 72 | 24 | 768 | 3072 | 12 | 433M (266M) | 603M |
+
+Table 2: Hyperparameters of DNA models and GPT-2 medium (no weight-tying). Note that for DNA models, the number of active parameters shown in parentheses refers to non-shared active parameters (as detailed in Sec. 4.3).
+
+### 4.2 INTERPRETABILITY
+
+**Early routers group similar tokens.** We selected two example paragraphs: One from Wikipedia and one hand-crafted (see Fig. H.1 for the full paragraphs and Fig. 18, 19 for full token flows). Then we visualized the routing decisions made by $R_1$ in the left panel of Fig. 8. Each token is colored according to the CDF value of the path it follows, using the same color scheme as in Fig. 1(d, f). We found that the router $R_1$ consistently sends semantically similar words to $M_0$ , punctuation marks to $M_{27}$ , and word pieces to $M_{29}$ in both examples. In the Wikipedia example, the router additionally groups plural nouns and routes them to $M_1$ , verb variants to $M_{10}$ , and related prepositions to $M_{25}$ and $M_{30}$ accordingly.
+
+| Model | Loss (↓) | ARC-E (↑) | BoolQ (↑) | HellaS (↑) | LAMBADA (↑) | PIQA (↑) | RACE (↑) | Wiki (↓) |
+|-|-|-|-|-|-|-|-|-|
+| Random | 10.825 | 25.0 | 50.0 | 25.0 | 0.0 | 50.0 | 25.0 | ~ inf |
+| GPT-2 (406M) | 2.720 | 58.9 | 60.5 | 40.5 | 33.8 | 66.9 | 32.3 | 33.7 |
+| top-1 (406M) | 2.754 | 56.9 | 60.8 | 38.6 | 28.7 | 65.8 | 30.9 | 38.7 |
+| top-2 (433M) | 2.674 | 59.2 | 61.0 | 41.8 | 34.0 | 67.9 | 31.1 | 31.5 |
+| GPT-2 (30% shallover) | 2.772 | 58.0 | 54.9 | 37.9 | 31.4 | 65.9 | 30.1 | 38.0 |
+| top-2 (30% skip) | 2.784 | 52.5 | 52.9 | 35.5 | 23.8 | 64.2 | 28.1 | 52.6 |
+
+Table 3: Final validation loss and zero-shot downstream evaluation. We reported accuracy in all cases, except for Wikitext, where we reported word-level perplexity. Hyperparameter details for the model with skipping and the shallower GPT-2 are listed in Appendix A.
+
+**Interpreting path distribution.** We start with the NLP version of Fig. 3. Namely, we visualize the tokens that follow the same path for several different ranks in the right panel of Fig. 8. As expected, low-rank (*i.e.* frequent) paths tend to capture frequently used words, such as linking verbs, or words that share similar conceptual roles (e.g., rank-8 corresponds to relationships between actions and their targets or contexts; rank-64 relates to human endeavors). We also find that rank-2 path focuses on end of sentence tokens, which can be interpreted as sentence-level attention. In contrast, mid- and high-rank (*i.e.* rare) paths exhibit more variability. These include, for example, distinct adverbs (rank-16384), or even commonly used words appearing in unexpectedly high-rank paths (e.g., ranks 1024, 32768, 65536, etc.). This may seem surprising, as one might expect high-rank paths to capture rare or domain-specific concepts. However, we hypothesize that due to the highly contextual nature of language, common words routed through high-rank paths likely carry context-specific information rather than simply reflecting their base lexical identity. A more detailed investigation of this phenomenon at a larger scale is left for future work.
+
+{8}------------------------------------------------
+
+
+
+Figure 6 consists of three plots. The top-left plot shows validation loss (y-axis, 2.50 to 3.25) versus training tokens in billions (x-axis, 0 to 20). It compares GPT-2 (406M, final val loss: 2.720), Top-1 DNA (406M, final val loss: 2.755), and Top-2 DNA (435M, final val loss: 2.678). All models show a decreasing trend in validation loss. The top-right plot shows the effective task (y-axis, 1 to 3) versus step (x-axis, 0 to 20) for Top-1 DNA (orange line with circles) and Top-2 DNA (green line with circles). Top-1 DNA shows a more volatile pattern, while Top-2 DNA is more stable. The bottom plots show the flow of tokens for Top-1 DNA (left) and Top-2 DNA (right), illustrating the distribution of token usage across the model's layers.
+
+Figure 6: Performance and training metrics for DNA models. Top-Left: Validation loss vs training tokens (B) for GPT-2 (406M), Top-1 DNA (406M), and Top-2 DNA (435M). Top-Right: Effective task vs step for Top-1 DNA and Top-2 DNA. Bottom: Flow of tokens for Top-1 DNA and Top-2 DNA models.
+
+Figure 6: Models trained with 21B tokens sampled from FineWeb-Edu dataset. **Top-Left:** Validation loss measured on a subset that we leave aside. **Top-Right:** Effective number of compute nodes used per step for DNA models at the end of training. The two models exhibit different behaviors in the early steps. Compared to the patterns observed in vision models, they both follow different trends as the number of steps increases. **Bottom:** Flow of tokens plotted using the validation set of the FineWeb-Edu dataset for the top-1 (left) and top-2 (right) DNA models.
+
+### 4.3 EFFICIENCY
+
+**Compute.** Similar to the vision case, we trained a top-2 DNA model that targets skipping 30% of the tokens, where most hyperparameters are the same as those shown in Fig. 6, except $N_b = 1$ and $N_c = 23$ in this case. We find that (i) compute distribution for images and text is very different showing that text has significantly higher diversity/complexity (see Fig. 5) leading to majority of examples requiring (roughly) the same amount of compute, (ii) There are documents that require much lower compute. By inspection we find that these documents are qualitatively different from the “average examples” in that they either contain HTML code, large number of links, are parts of bibliography, contain many characters from the languages that our model has not learned yet such as Arabic, Greek, Hebrew etc.
+
+**Parameter sharing.** We find that language DNA models also tend to like parameter sharing. However, unlike in the vision case, we find that parameters sharing does not correlate with any notable features in the text. We also make a more careful check by measuring two types of correlation (similar to the vision case). First, we check if module reuse is correlated to the module skip (Fig. 11 (d) in Appendix D). Unlike in the vision case, we find a strong correlation. However, we believe that this correlation has a simple explanation: if fewer modules are skipped, the probability of reuse goes up. Second we check if there are any similarities between text documents that yield higher module reuse. Unlike in the vision case, we find that there is no correlation between two different DNA models. Consequently, we conclude that module reuse is most likely random in the language case. This suggests that language DNAs can be further improved by discouraging module reuse.
+
+## 5 CONCLUSION
+
+In this work we have introduced distributed neural architectures that process each token differently, depending on its content and context. We introduced initial model architectures and showed that they are trainable and competitive with the corresponding dense baselines in both vision and language domains. We also showed that DNA models can be trained to allocate compute intelligently based on the input, and this allocation is interpretable.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- 486
+ 487
+ 488 Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Ale-
+ 489 man, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical
+ 490 report. *arXiv preprint arXiv:2303.08774*, 2023.
+ 491 Yoshua Bengio, Nicholas Léonard, and Aaron Courville. Estimating or propagating gradients
+ 492 through stochastic neurons for conditional computation. *arXiv preprint arXiv:1308.3432*, 2013.
+ 493 Yonatan Bisk, Rowan Zellers, Ronan Le Bras, Jianfeng Gao, and Yejin Choi. Piqa: Reasoning
+ 494 about physical commonsense in natural language. In *Thirty-Fourth AAAI Conference on Artificial*
+ 495 *Intelligence*, 2020.
+ 496 Lingjiao Chen, Matei Zaharia, and James Zou. Frugalgpt: How to use large language models while
+ 497 reducing cost and improving performance. *arXiv preprint arXiv:2305.05176*, 2023.
+ 498
+ 499 Christopher Clark, Kenton Lee, Ming-Wei Chang, Tom Kwiatkowski, Michael Collins, and Kristina
+ 500 Toutanova. Boolq: Exploring the surprising difficulty of natural yes/no questions. In *NAACL*,
+ 501 2019.
+ 502
+ 503 Peter Clark, Isaac Cowhey, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Carissa Schoenick, and
+ 504 Oyvind Tafjord. Think you have solved question answering? try arc, the ai2 reasoning challenge.
+ 505 *arXiv:1803.05457v1*, 2018.
+ 506
+ 507 Róbert Csordás, Christopher D Manning, and Christopher Potts. Do language models use their depth
+ 508 efficiently? *arXiv preprint arXiv:2505.13898*, 2025.
+ 509
+ 510 Ekin D. Cubuk, Barret Zoph, Dandelion Mané, Vijay Vasudevan, and Quoc V. Le. Autoaugment:
+ 511 Learning augmentation strategies from data. In *2019 IEEE/CVF Conference on Computer Vision*
+ 512 *and Pattern Recognition (CVPR)*, pp. 113–123, 2019. doi: 10.1109/CVPR.2019.00020.
+ 513
+ 514 Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hi-
+ 515 erarchical image database. In *2009 IEEE conference on computer vision and pattern recognition*,
+ 516 pp. 248–255. Ieee, 2009.
+ 517
+ 518 Darshil Doshi, Tianyu He, and Andrey Gromov. Critical initialization of wide and deep neural net-
+ 519 works using partial jacobians: General theory and applications. *Advances in Neural Information*
+ 520 *Processing Systems*, 36:40054–40095, 2023.
+ 521
+ 522 Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas
+ 523 Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit,
+ 524 and Neil Houlsby. An image is worth 16×16 words: Transformers for image recognition at
+ 525 scale. *International Conference on Learning Representations*, 2021.
+ 526
+ 527 Mostafa Elhoushi, Akshat Shrivastava, Diana Liskovich, Basil Hosmer, Bram Wasti, Liangzhen Lai,
+ 528 Anas Mahmoud, Bilge Acun, Saurabh Agarwal, Ahmed Roman, et al. Layerskip: Enabling early
+ 529 exit inference and self-speculative decoding. *arXiv preprint arXiv:2404.16710*, 2024.
+ 530
+ 531 Yarin Gal and Zoubin Ghahramani. Dropout as a bayesian approximation: Representing model
+ 532 uncertainty in deep learning. In *international conference on machine learning*, pp. 1050–1059.
+ 533 PMLR, 2016.
+ 534
+ 535 Leo Gao, Jonathan Tow, Baber Abbasi, Stella Biderman, Sid Black, Anthony DiPofi, Charles Fos-
+ 536 ter, Laurence Golding, Jeffrey Hsu, Alain Le Noac’h, Haonan Li, Kyle McDonell, Niklas Muen-
+ 537 nighoff, Chris Ociepka, Jason Phang, Laria Reynolds, Hailey Schoelkopf, Aviya Skowron, Lintang
+ 538 Sutowika, Eric Tang, Anish Thite, Ben Wang, Kevin Wang, and Andy Zou. A framework for
+ 539 few-shot language model evaluation, 12 2023.
+ 540
+ 541 Jonas Geiping, Sean McLeish, Neel Jain, John Kirchenbauer, Siddharth Singh, Brian R Bartoldson,
+ 542 Bhavya Kailkhura, Ashwin Bhatele, and Tom Goldstein. Scaling up test-time compute with
+ 543 latent reasoning: A recurrent depth approach. *arXiv preprint arXiv:2502.05171*, 2025.
+ 544
+ 545 Amin Ghiasi, Hamid Kazemi, Eitan Borgnia, Steven Reich, Manli Shu, Micah Goldblum, An-
+ 546 drew Gordon Wilson, and Tom Goldstein. What do vision transformers learn? a visual explo-
+ 547 ration. *arXiv preprint arXiv:2212.06727*, 2022.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/41JeFWdVFa.txt b/papers/41JeFWdVFa.txt
new file mode 100644
index 0000000000000000000000000000000000000000..577e8a7d5dcb7fa2d2d5a3e1d20d0a0b51bd03d7
--- /dev/null
+++ b/papers/41JeFWdVFa.txt
@@ -0,0 +1,352 @@
+
+
+{0}------------------------------------------------
+
+# LDP: A LIGHTWEIGHT DENOISING PLUGIN ENHANCING GENERALIZATION IN SINGLE-IMAGE SUPER-RESOLUTION
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Current single-image super-resolution (SISR) models struggle to generalize to real-world degradations. To address this challenge, we propose LDP, an innovative lightweight denoising autoencoder (DAE) plug-in. It improves the generalization ability of SR models via low-resolution (LR) images prediction-based cyclic regularization. LDP models the SISR degradation process within the DAE framework. It leverages a property of diffusion models, where after noise is added, high-resolution (HR) images and LR features become aligned, so that denoising noisy HR features is equivalent to denoising noisy LR features. During the corruption process, noise is added independently to each HR patch. During the denoising process, a convolutional denoiser uses learned filters to approximate blur kernels. In addition, LR degradation is used to distinguish different LR from the same HR. LDP can be applied to SR models in two modes: as a training loss to improve reconstruction quality, or as an inference post-processing step to correct artifacts. Extensive experiments demonstrate that LDP substantially improves the generalization of existing SR models to unseen degradations.
+
+
+
+Figure 1: (a) Diagram of the LDP architecture. An LR image is input to an SR Model to produce an SR image. Simultaneously, the SR image is input to an LDP module, which outputs a denoised LR image (LR'). A supervision loss is calculated between the original LR and the denoised LR'. The equation for the denoised LR is LR' = ((SR+n)\*k)↓. (b) A scatter plot titled 'Boosts over baselines (DIV2K-Hybrid)' showing PSNR values for four models: FeMaSR, StableSR, SwinIR, and MambaIR. For each model, the 'Original' performance is shown in purple and the '+LDP' performance is shown in orange. The data points are: FeMaSR (Original: 23.40, +LDP: 23.72), StableSR (Original: 19.27, +LDP: 21.43), SwinIR (Original: 23.52, +LDP: 24.35), and MambaIR (Original: 24.35, +LDP: 24.73).
+
+Figure 1: Our LDP is a lightweight denoising autoencoder-based plug-in that can be seamlessly integrated into arbitrary SR models, operating as a training-time loss or an inference-time module.
+
+## 1 INTRODUCTION
+
+Single Image Super-Resolution (SISR) aims to reconstruct high-resolution (HR) images from their low-resolution (LR) counterparts. SISR is widely applied in various fields, such as medical imaging Li et al. (2024a) and remote sensing Dong et al. (2024). Deep learning has advanced SISR architectures from Convolutional Neural Network (CNN) Dong et al. (2014) to Transformer Liang et al. (2021); Chen et al. (2023b) and State-Space Model Guo et al. (2024; 2025), achieving higher reconstruction accuracy. Meanwhile, generative methods, including Generative Adversarial Network (GAN) Chen et al. (2022) and Diffusion Model Wang et al. (2024); Yue et al. (2025); Zhang et al. (2025), have been explored to improve perceptual quality.
+
+{1}------------------------------------------------
+
+Despite advances in SR architectures, existing models struggle to generalize to unseen degradations. Recent approaches leverage data augmentation and self-supervised learning techniques to tackle this challenge. Data augmentation approaches typically fall into two categories: generating synthetic distortions Zhang et al. (2021a); Wang et al. (2021), or employing generative models Li et al. (2022); Chen et al. (2025) to synthesize paired data from unpaired LR and HR images. However, these methods may harm performance Zhang et al. (2023) or are limited to in-distribution datasets. Self-supervised approaches rely on either image-specific training Schocher et al. (2018); Ulyanov et al. (2018) or test-time adaptation Hussein et al. (2020); Zhou et al. (2023); Chen et al. (2024), utilizing internal image statistics and priors. However, they suffer from high computational cost or the need for model-specific adaptation. Addressing unseen degradations efficiently remains a key challenge.
+
+To address these limitations, we propose LDP, a lightweight denoising autoencoder (DAE) plug-in. It improves the generalization ability of SR models via LR prediction-based cyclic regularization. LDP models the SISR degradation process within the DAE framework. It leverages a property of diffusion models, where after noise is added, high-resolution (HR) images and LR features become aligned Wang et al. (2023b), making denoising noisy HR features equivalent to denoising noisy LR features. LDP takes high-resolution images (ground-truth HR or SR outputs) as input for degradation modeling, with LR high-frequency components as a condition to distinguish different LR images from the same HR. During the corruption process, LDP introduces patch-dependent Gaussian noise. This enables the model to learn fine-grained degradation in local patches, rather than assuming the same degradation for the whole image. During the denoising process, a lightweight convolutional denoiser learns the blur kernels associated with the degradation model. Built on these designs, LDP accurately generates corresponding LR image and generalizes well to unseen degradations. LDP applies to SR models in two modes: as a training-time loss function to improve reconstruction quality, or as an inference-time post-processing step that corrects artifacts independently of training. Extensive experiments verify that LDP significantly improves the generalization ability of existing SR models on unknown complex degradations.
+
+Overall, our contributions are three-fold:
+
+- We propose LDP, an innovative lightweight denoising autoencoder plug-in for single-image super-resolution that enhances the generalization of existing SR models.
+- LDP is a conditional degradation model that generates LR images from HR inputs by explicitly conditioning on LR high-frequency components. LDP operates in two modes: as a degradation-aware training-time loss function, or as an inference-time correction module (e.g., Posterior Sampling for diffusion models).
+- LDP enhances reconstruction quality during training as a loss function and mitigates artifacts at inference independently of training. Both modes improve SR model generalization to unknown complex degradations.
+
+## 2 RELATED WORK
+
+### 2.1 IMPROVING GENERALIZATION IN SR
+
+The limited generalization ability of SR models to unseen degradations remains a major challenge for real-world applications. Existing SR methods address this issue using two main approaches: data augmentation and self-supervised learning. Data augmentation methods seek to bridge the training-inference gap by creating synthetic data with degradations that approximate real-world scenarios. One line of works explicitly model degradations using predefined operations. BSRGAN Zhang et al. (2021a) generates complex degradations by sequentially combining downsampling, blur, noise, and compression in random order, producing varied LR images for training. RealESRGAN Wang et al. (2021) introduces higher-order degradations to reflect real-world degradation chains. While BSRGAN and RealESRGAN enable non-blind SR models to handle blind scenarios through multi-degradation training, such strategies may compromise performance on in-distribution benchmarks Zhang et al. (2023). Alternatively, implicit modeling methods leverage generative models to synthesize paired data from real LR and unpaired HR images. GAN Yuan et al. (2018); Li et al. (2022); Yin et al. (2023) or diffusion-based Chen et al. (2025) methods learn degradation priors to create realistic training pairs. However, their generalization remains limited to in-distribution data. Self-supervised learning enables SISR training using only LR images without
+
+{2}------------------------------------------------
+
+paired HR supervision. ZSSR Shocher et al. (2018) and DIP Ulyanov et al. (2018) exploit internal patterns or implicit priors without external data. CorrectFilter Hussein et al. (2020); Zhou et al. (2023) aligns inputs with the training distribution of pre-trained models. Lway Chen et al. (2024) uses a degradation model to synthesize LR images from SR outputs for test-time fine-tuning. Although effective, these methods are computationally expensive or require model-specific adaptation.
+
+### 2.2 CONSTRAINING THE SR SOLUTION SPACE VIA DEGRADATION MODELING
+
+Degradation modeling, applied jointly with the SR model, introduces structural constraints that ensure reconstructed LR outputs align with the LR input, effectively narrowing the solution space to favor LR-consistent reconstructions. DRN Guo et al. (2020) adds a degradation branch that projects SR outputs back to the LR domain, enforcing reconstruction consistency and improving stability. DualSR Emad et al. (2021) introduces a dual-path framework where a GAN-based downsampler and an upsampler are jointly trained with cycle consistency to model and reverse image-specific degradations. SCL-SASR Chen et al. (2023a) adopts a similar bidirectional design under MAP estimation, coupling SR and degradation networks to adapt to test-time degradations. Lway Chen et al. (2024) introduces test-time adaptation with pre-trained degradation models to fine-tune SR models, increasing generalization to unseen degradations. Despite their benefits, these methods face several limitations: DRN handles only bicubic downsampling; DualSR and SCL-SASR require image-specific optimization or joint training; and Lway introduces significant computational overhead due to its large model size. In contrast, our method supports a wide range of degradations through an explicitly modeled degradation process within a lightweight denoising autoencoder framework. Our degradation modeling framework is adaptable to various training settings, from large-scale supervised learning to image-specific fine-tuning, and can also be applied directly at test time. The framework is lightweight and does not incur significant computational cost.
+
+Degradation modeling is also applied during inference in diffusion-based image restoration to enforce LR consistency. ILVR Choi et al. (2021) guides the sampling process of DDPM Ho et al. (2020) using a reference image to maintain low-frequency consistency across the denoising steps. DR2 Wang et al. (2023b) shows that injecting additional Gaussian noise makes LR and HR distributions less distinguishable, allowing noise-corrupted LR images to be treated as noise-corrupted HR images during sampling. MCG Chung et al. (2022) ensures samples stay close to the data manifold by projecting the gradient of the measurement function onto its tangent space. DPS Chung et al. (2023) further leverages the degradation process to connect the LR observation to the predicted clean image at each step. In our method, LDP degrades each predicted clean image during diffusion inference, treating it as SR to produce a predicted LR image. We then enforce LR cyclic consistency by applying the tailored loss $\mathcal{L}_{\text{sym}}^{\text{CT}}$ (Eq. 16), which penalizes the discrepancy between the predicted LR and the ground-truth LR. This degradation-aware constraint enhances fidelity by suppressing artifacts and promoting structural consistency in the SR results.
+
+## 3 PROPOSED METHOD
+
+Section 3.1 outlines the motivation behind LDP. Section 3.2 introduces the overall framework of LDP. Section 3.3 then details its training and inference modes, describing LDP’s own training, its application in fine-tuning SR models, and its role as a post-processing step for diffusion models.
+
+### 3.1 MOTIVATION
+
+To improve the generalization of existing SR models on unknown complex degradations, we adopt a degradation modeling approach applied jointly with the SR model. This introduces structural constraints that ensure the reconstructed LR outputs are aligned with the LR input, effectively narrowing the solution space to favor LR-consistent reconstructions. Our LDP integrates degradation modeling Yue et al. (2022) into the denoising autoencoder, reinterpreting denoising as a controllable degradation applied to HR images. In the classical degradation formulation, this can be expressed as:
+
+$$y = ((x + n) \otimes k) \downarrow_s, \quad (1)$$
+
+where $x \in \mathbb{R}^{H \times W \times 3}$ is the HR image, $y \in \mathbb{R}^{\frac{H}{s} \times \frac{W}{s} \times 3}$ is the LR image, $n$ is the noise, $k$ is the blur kernel, and $s$ is the downsampling scale. We further leverage a property of diffusion models,
+
+{3}------------------------------------------------
+
+
+
+Figure 2 illustrates the framework of the proposed Low-Degradation Prediction (LDP) model. It consists of four main modules: (a) The framework of LDP, (b) Degradation Prediction Module, (c) Noise Addition Module, and (d) Denoiser Module.
+
+- (a) The framework of LDP:** This module takes the high-frequency component $y_{hf}$ and the input image $x$ as inputs. $y_{hf}$ is processed by a Degradation Prediction Module to produce $C'$ . $x$ is processed by a Noise Addition Module to produce $F$ . $F$ is then processed by a Downsample Module to produce the predicted LR output $y'$ .
+- (b) Degradation Prediction Module:** This module takes $y_{hf}$ as input and processes it through a series of Convolutional layers (Conv), Residual Blocks (RB), and a Reshape layer to produce weights $(h \times w \times c)$ . These weights are multiplied with a Degradation Prompt $P_D$ to produce $C'$ .
+- (c) Noise Addition Module:** This module takes $x$ as input and processes it through a Convolutional layer (Conv) to produce $(h \times w \times c)$ features. A noise term $\mathcal{N}(0, \epsilon)$ is added to these features, and the result is processed by a Downsample Module to produce $F$ .
+- (d) Denoiser Module:** This module takes $C'$ and $x_t$ as inputs. $C'$ is processed by a CRB (Condition Residual Block) and $x_t$ is processed by a TEmb (Timestep Embedder). The outputs are combined and processed by a series of Convolutional layers (Conv), Residual Blocks (RB), and a Reshape layer to produce $F$ .
+
+Figure 2: (a) The framework of LDP. (b) Degradation Prediction Module. (c) Noise Addition Module. (d) Denoiser Module.
+
+Figure 2: **(a) LDP Framework.** $LR_{hf}$ predicts degradation $C'$ , guiding the noise-perturbed HR features to generate the LR output via denoising and downsampling. **(b) Degradation Prediction.** Stacked RB generate weights from $LR_{hf}$ and multiply them with $P_D$ to produce $C'$ . **(c) Noise Addition.** Patch-dependent noise is added to HR features at random timesteps. **(d) Denoiser.** A lightweight CNN denoises $HR_t$ conditioned on $z$ using CRBs with AdaLN.
+
+whereby after noise is added, HR features and LR features become aligned Wang et al. (2023b), making denoising noisy HR features equivalent to denoising noisy LR features. This allows us to perform degradation modeling on HR images using a denoising autoencoder. However, there remains a challenge: since the SR task is inherently ill-posed, a condition is required to differentiate between different LR images generated from the same HR image under varying degradations. This condition must satisfy three criteria: (1) it cannot be the LR image itself, otherwise the network might take shortcuts and fail to learn meaningful degradations; (2) it must be discriminative for different LR images corresponding to the same HR image; and (3) it should be simple and easy to obtain. We define this condition as $LR_{hf}$ , obtained by subtracting the $s^l$ -fold downsampled-then-upsampled LR image from the original LR image. In summary, we use a denoising autoencoder to perform degradation modeling on the input HR image, with the condition $LR_{hf}$ controlling the type of degradation in the output. During application, this approach constrains the super-resolution (SR) model to produce outputs whose LR reconstructions (via our LDP) are consistent with the original LR input, thus enforcing LR cyclic consistency and effectively guiding the SR model.
+
+### 3.2 FRAMEWORK
+
+Figure 2 (a) illustrates the framework of our proposed LDP, which consists of four main modules: the Degradation Prediction Module (DPM), Noise Addition Module (NAM), Denoiser Module and Downsample Module. Designed as a denoising autoencoder, LDP functions as a conditional degradation model that generates LR images from HR inputs by conditioning on LR high-frequency components. To facilitate both implementation and interpretability, we adopt the noise corruption process from diffusion models Ho et al. (2020). The overall process of LDP is formulated as:
+
+$$x_t = NAM(x, t), \quad (2)$$
+
+$$y' = D(Denoiser(x_t | DPM(y_{hf}, t))), \quad (3)$$
+
+Where $y'$ is the predicted LR images, and $y_{hf}$ is the LR high-frequency component. $t$ is a patch-dependent timestep, $x_t$ is the noised HR features, $NAM(\cdot)$ is the Noise Addition Module, $DPM(\cdot)$ is the Degradation Prediction Module and $D(\cdot)$ is the Downsample Module.
+
+{4}------------------------------------------------
+
+**Degradation Prediction Module.** Figure 2 (b) shows the DPM diagram. Its input is the high-frequency component of the LR image, computed by subtracting the $s^2$ -fold downsampled-then-upsampling LR image from the original LR image, which can be formulated as:
+
+$$y_{hf} = y - y \downarrow_{s^2} \uparrow_{s^2}, \quad (4)$$
+
+where $\downarrow_{s^2}$ and $\uparrow_{s^2}$ denote the downsampling and upsampling operations with scale factor $s^2$ , respectively. To extract degradation information, we use prompts to encode degradation-specific details Potlapalli et al. (2023). First, a weight map $w$ is derived from $y_{hf}$ , and then resized to match the spatial dimensions of $x$ (i.e., $H \times W$ ). This resized weight map is multiplied element-wise with the Degradation Prompt $P_D$ . It forms a degradation map $C' \in \mathbb{R}^{H \times W \times C}$ and serves as the condition for the denoiser. The process can be formulated as:
+
+$$w = (\text{RB}_4 \circ \text{RB}_3 \circ \downarrow_2 \circ \text{RB}_2 \circ \text{RB}_1) \circ \text{Conv}(y_{hf}), \quad (5)$$
+
+$$C' = P_D \otimes \text{Resize}(w, H, W), \quad (6)$$
+
+where $\text{RB}(\cdot)$ denotes a residual block consisting of two $3 \times 3$ convolutional layers with a SiLU activation in between, $\text{Conv}(\cdot)$ represents a convolutional layer, $\circ$ denotes function composition applied sequentially from right to left, and $\otimes$ denotes element-wise multiplication. The downsampling operator $\downarrow_2$ further reduces spatial resolution and disrupts local structures. The degradation prompt $P_D \in \mathbb{R}^{N_p \times C}$ is jointly learned to encode degradation-specific information.
+
+**Noise Addition and Denoiser Module.** Our framework integrates degradation modeling Yue et al. (2022) into the denoising autoencoder, reinterpreting denoising as a controllable degradation applied to HR images. During the corruption process, we perturb HR images using a patch-wise noise schedule. Specifically, following the diffusion noise schedule, each patch $x_i \in \mathbb{R}^{P \times P \times C}$ is assigned a random timestep $t_i$ , and its noisy version is obtained as:
+
+$$x_i^{(t_i)} = \sqrt{\bar{\alpha}_{t_i}} x_i + \sqrt{1 - \bar{\alpha}_{t_i}} \epsilon_i, \quad \epsilon_i \sim \mathcal{N}(0, \mathbf{I}), \quad (7)$$
+
+where $\bar{\alpha}_{t_i}$ denotes the cumulative product of noise scheduling coefficients at time $t_i$ and $\epsilon_i$ is standard Gaussian noise. This patch-wise formulation enables each image region to undergo a different level of degradation, allowing the model to better capture spatially varying corruption. The final noisy image is denoted as $x_t$ .
+
+During the denoising process, a lightweight CNN acting as the denoiser module estimates the blur kernel and extracts intermediate feature $F$ conditioned on the degradation map $C'$ . The feature $F$ are then downsampled to produce the predicted LR image. Specifically, the denoiser module comprises $L$ Condition Residual Blocks (CRBs) that leverage Adaptive Layer Normalization (AdaLN) Perez et al. (2018); Li et al. (2024b) for conditional modulation. For each $P \times P$ patch, the assigned timestep $t_i$ is embedded and combined with $C'$ to produce a patch-specific condition $z$ . This condition is passed through a SiLU activation and a linear layer to generate modulation parameters $\alpha$ , $\beta$ , and $\gamma$ corresponding to scaling, bias, and gating. In the residual path, features are first normalized via LayerNorm and modulated by $\alpha$ and $\beta$ , then processed by a residual block, gated with $\gamma$ , and finally added back to the input. The CRB can be formulated as:
+
+$$t_{emb} = TEmb(t), \quad (8)$$
+
+$$\alpha, \beta, \gamma = \text{Linear}(\text{SiLU}(C' + t_{emb})), \quad (9)$$
+
+$$x'_t = \alpha \otimes (\text{LN}(F_{t-1})) + \beta, \quad (10)$$
+
+$$F_t = \gamma \otimes \text{RB}(x'_t) + F_{t-1}, \quad (11)$$
+
+where $TEmb(\cdot)$ is the timestep embedder, $F_{t-1}$ is the output of the previous CRB, and the initial feature is set as $F_0 = x_t$ . The $\text{RB}(\cdot)$ in the final CRB is simplified to a single convolutional layer.
+
+**Downsample Module.** The module adjusts the feature map to match the spatial resolution of the original LR image. Features $F$ are first downsampled by a factor of $s$ , then processed by a residual block and a convolutional layer:
+
+$$y' = \text{Conv}(\text{RB}(F \downarrow_s)). \quad (12)$$
+
+Here, $\text{RB}$ and the final convolutional layer are used to enhance feature representation and maintain smooth transitions between downsampled regions.
+
+{5}------------------------------------------------
+
+### 3.3 TRAINING AND INFERENCE MODES OF LDP
+
+**Training LDP.** Following Lway Chen et al. (2024), LDP is trained by supervising only the high-frequency components of the predicted LR images. We apply the Discrete Wavelet Transform (DWT) to decompose the predicted LR image $y'$ into four subbands (LL, LH, HL, HH). The high-frequency subbands (LH, HL, HH) are then summed and normalized to form a weight map $M$ , which is subsequently used to compute both the L1 loss and the LPIPS loss Zhang et al. (2018):
+
+$$\mathcal{L}_{sym}^T = \lambda_1 \mathcal{L}_1(M \otimes y', M \otimes y) + \lambda_2 \mathcal{L}_{LPIPS}(M \otimes y', M \otimes y), \quad (13)$$
+
+where $\lambda_1$ and $\lambda_2$ are the corresponding loss weights.
+
+**Fine-Tuning SR Models with LDP.** In fine-tuning, the original loss of pretrained SR models is augmented with a frequency loss Xie et al. (2023) that supervises the amplitude and phase components of SR and HR images in the frequency domain:
+
+$$\mathcal{L}_{fre} = \frac{1}{HW} \sum_{u=0}^{H-1} \sum_{v=0}^{W-1} D(\mathcal{F}(x')(u, v), \mathcal{F}(x)(u, v)), \quad (14)$$
+
+$$D(\mathcal{F}(x'), \mathcal{F}(x)) = \left( (\mathcal{R}(\mathcal{F}(x')) - \mathcal{R}(\mathcal{F}(x)))^2 + (\mathcal{I}(\mathcal{F}(x')) - \mathcal{I}(\mathcal{F}(x)))^2 \right)^{\gamma/2}, \quad (15)$$
+
+where $x$ and $x'$ are the HR image and SR result, $\mathcal{F}(x)$ denotes the 2D Fourier transform of $x$ , and $\mathcal{R}(\cdot)$ and $\mathcal{I}(\cdot)$ denote its real and imaginary parts. $\gamma$ controls the sharpness of the frequency distance and is set to 1 by default. $(u, v)$ indexes the frequency domain. In addition, LDP enforces cycle consistency by reconstructing the LR image from the SR output and minimizing a symmetric loss:
+
+$$\mathcal{L}_{sym}^{FT} = \lambda_1 \mathcal{L}_1(M' \otimes y', M' \otimes y) + \lambda_2 \mathcal{L}_{LPIPS}(M' \otimes y', M' \otimes y) + \lambda_3 \mathcal{L}_{fre}(M' \otimes y', M' \otimes y), \quad (16)$$
+
+where $M' = \tau \cdot M$ , $\tau$ scales the high-frequency weight map $M$ by a scalar $\tau$ .
+
+**Diffusion Posterior Sampling with LDP.** Our LDP can also be applied during inference in diffusion models via Diffusion Posterior Sampling (DPS) Chung et al. (2023), which uses the gradient of a data fidelity term to guide sampling and better align the results with the LR input:
+
+$$\nabla_{x_t} \log p_t(x_t|y) \simeq s_{\theta \cdot}(x_t, t) - \rho \nabla_{x_t} \mathcal{L}_{sym}^{FT}(LDP(\hat{x}_0, y_{hf}), y), \quad (17)$$
+
+where $s_{\theta \cdot}(x_t, t)$ denotes the score function (the noise predictor in DDPM Ho et al. (2020)), and $LDP(\cdot)$ represents our LDP degradation model. $\hat{x}_0$ denotes the predicted clean image at each time step, and we treat it as the SR output. In latent diffusion models, $\hat{x}_0$ is first decoded into the pixel space before computing the gradient.
+
+## 4 EXPERIMENT
+
+### 4.1 IMPLEMENTATION DETAILS
+
+**Training LDP.** We train LDP on LSDIR Li et al. (2023) dataset using BSRGAN Zhang et al. (2021a) to synthesize diverse degradation datasets. For a scale factor of $s = 4$ , the key hyperparameters are $s' = 2$ , $L = 3$ , $P = 16$ , $N_p = 32$ , $\lambda_1 = \lambda_2 = 1$ , and $C = 64$ , resulting in 642k parameters. We use the Adam Kingma & Ba (2015) optimizer with $\beta_1 = 0.9$ and $\beta_2 = 0.99$ , with a fixed learning rate of 0.001. The batch size is 12, with $256 \times 256$ HR patches. The timesteps $t_i$ are sampled from [500, 1000] to align the noisy HR and LR features. We adopt the diffusion batch multiplier Li et al. (2024b) with a value of 4 to perform multiple noise realizations per HR image. Training is conducted on a single NVIDIA RTX A6000 for 60K iterations, taking approximately 16 hours.
+
+**Fine-Tuning SR Models.** We fine-tune existing SR models on the DF2K dataset (DIV2K Agustsson & Timofte (2017) and Flickr2K Lim et al. (2017)) using BSRGAN degradation patterns, with our LDP employed as an auxiliary loss. Details are provided in the Appendix D.
+
+**Testing.** For synthetic testing, we generate five distinct datasets from the DIV2K validation set using bsrGAN.plus (BSRGAN Zhang et al. (2021a) and Real-ESRGAN Wang et al. (2021)), corresponding to the following degradation types: (1) downsampling, (2) noise, (3) blur, (4) JPEG compression, and (5) hybrid degradations following bsrGAN.plus defaults. For real-world testing,
+
+{6}------------------------------------------------
+
+Table 1: Performance of multiple degradation models in LR prediction on synthetic multi-degradation datasets.
+
+| Methods | Metrics | Down | Noise | Blur | JPEG | Hybrid |
+|-|-|-|-|-|-|-|
+| DRN | PSNR↑ | 32.05 | 27.25 | 26.38 | 29.65 | 27.03 |
+| | SSIM↑ | 0.9529 | 0.7812 | 0.8273 | 0.9270 | 0.8998 |
+| | LPIPS↓ | 0.0794 | 0.2474 | 0.3207 | 0.0826 | 0.3360 |
+| DualSR | PSNR↑ | 19.58 | 18.77 | 19.36 | 18.57 | 19.36 |
+| | SSIM↑ | 0.4814 | 0.4712 | 0.4911 | 0.4612 | 0.4883 |
+| | LPIPS↓ | 0.1408 | 0.1399 | 0.1844 | 0.1492 | 0.2130 |
+| LDP | PSNR↑ | 29.15 | 26.71 | 28.41 | 28.01 | 27.94 |
+| | SSIM↑ | 0.9283 | 0.8978 | 0.9159 | 0.9243 | 0.9173 |
+| | LPIPS↓ | 0.0985 | 0.1248 | 0.1417 | 0.0877 | 0.1025 |
+
+Table 2: Similarity between the LR images generated by multiple degradation models and the downsampled SR images.
+
+| Methods | Metrics | Down | Noise | Blur | JPEG | Hybrid |
+|-|-|-|-|-|-|-|
+| DRN | PSNR↑ | 34.02 | 31.57 | 34.99 | 31.35 | 35.10 |
+| | SSIM↑ | 0.9638 | 0.9590 | 0.9692 | 0.9587 | 0.9679 |
+| | LPIPS↓ | 0.0365 | 0.0436 | 0.0306 | 0.0467 | 0.0296 |
+| DualSR | PSNR↑ | 22.58 | 20.79 | 22.57 | 20.46 | 22.85 |
+| | SSIM↑ | 0.6689 | 0.6502 | 0.7044 | 0.6356 | 0.7164 |
+| | LPIPS↓ | 0.1264 | 0.1490 | 0.1040 | 0.1279 | 0.1175 |
+| LDP | PSNR↑ | 28.41 | 25.93 | 25.04 | 27.42 | 26.28 |
+| | SSIM↑ | 0.8895 | 0.7508 | 0.7596 | 0.8886 | 0.7597 |
+| | LPIPS↓ | 0.1551 | 0.3043 | 0.3278 | 0.1293 | 0.3586 |
+
+
+
+Figure 3: Qualitative results of multiple degradation models for LR prediction on synthetic datasets. The figure shows a grid of images for five degradation scenarios: Down, Noise, Blur, JPEG, and Hybrid. Each scenario has two columns of images. The first column shows the input Low Resolution (LR) image and the output of the SwinIR (SR) model. The second column shows the input LR image and the output of the proposed LDP model. The LDP model's output is visually closer to the High Resolution (HR) image than the SwinIR (SR) model's output, especially in the Hybrid and JPEG scenarios.
+
+Figure 3: Qualitative results of multiple degradation models for LR prediction on synthetic datasets. (Zoom in for details)
+
+we evaluate on RealSR Cai et al. (2019), RealSRSet Zhang et al. (2021b), and DPED Ignatov et al. (2017) datasets. We evaluate using PSNR, SSIM Wang et al. (2004), and LPIPS Zhang et al. (2018) as reference metrics, and NIQE Mittal et al. (2012), MANIQA Yang et al. (2022), CLIPIQA Wang et al. (2023a), MUSIQ Ke et al. (2021), and QAlign Wu et al. (2024) as non-reference metrics. For diffusion models, synthetic datasets are center-cropped to $512 \times 512$ , and real-world datasets follow the StableSR Wang et al. (2024).
+
+### 4.2 EFFECTIVENESS OF LDP IN LR PREDICTION
+
+To thoroughly evaluate the effectiveness of the proposed LDP, we conduct extensive experiments under five degradation scenarios and compare it with two existing degradation models, DRN Guo et al. (2020) and DualSR Emad et al. (2021). In this experiment, we first generate SR images using SwinIR Liang et al. (2021), and then apply the degradation models provided by LDP, DRN, and DualSR to obtain predicted LR images from the SR outputs. These predictions are compared with the LR inputs to the SR model, and the results are reported in Table 1. In addition, Table 2 reports the similarity between the LR images produced by each degradation model and the downsampled SR images. A higher similarity indicates that the degradation model collapses into trivial downsampling rather than applying the specific degradations implied by the input LR. As shown in the tables, LDP performs consistently well across all degradation types. Importantly, the similarity between the LDP-generated LR and the downsampled SR is significantly lower than that between the LDP-generated LR and the input LR, demonstrating that LDP does not degenerate into simple downsampling. In contrast, DRN behaves almost identically to bicubic downsampling: because its inputs include only HR (SR results) images without any conditional signals, it fails to map an SR image to the multiple possible LR variants implied by different degradations. DualSR also struggles to properly handle diverse degradation types, particularly under complex mixed settings. As illustrated in Fig. 3, LDP effectively degrades high-frequency structures, further validating its ability to generate perceptually realistic LR images even under challenging degradations. In contrast, DRN and DualSR largely produce LR outputs that resemble simple downsampled versions of the SR images, indicating that they fail to apply the intended degradations.
+
+{7}------------------------------------------------
+
+Table 3: Performance improvements of blind SR models across diverse architectures using our proposed LDP on synthetic multi-degradation benchmarks. We generate synthetic benchmarks from the DIV2K validation set using five types of degradation: (1) Downsampling (Down), (2) Noise, (3) Blur, (4) JPEG, and (5) Hybrid degradations following bsrGAN plus defaults.
+
+| Datasets | Scale | Metrics | FeMaSR | +LDP | StableSR | +LDP | SwinIR | +LDP | MambaIR | +LDP |
+|-|-|-|-|-|-|-|-|-|-|-|
+| Down | ×4 | PSNR↑ | 24.22 | 25.06 (+0.84) | 20.35 | 21.73 (+1.38) | 25.44 | 25.86 (+0.42) | 26.58 | 26.63 (+0.05) |
+| | ×4 | SSIM↑ | 0.6793 | 0.7105 (+0.0312) | 0.4998 | 0.5642 (+0.0644) | 0.7210 | 0.7242 (+0.0032) | 0.7393 | 0.7403 (+0.0010) |
+| | ×4 | LPIPS↓ | 0.2637 | 0.2490 (-0.0147) | 0.3746 | 0.2870 (-0.0876) | 0.2579 | 0.2538 (-0.0041) | 0.2054 | 0.2005 (-0.0049) |
+| Noise | ×4 | PSNR↑ | 22.82 | 23.64 (+1.02) | 19.95 | 21.48 (+1.53) | 24.35 | 25.04 (+0.70) | 26.11 | 26.34 (+0.23) |
+| | ×4 | SSIM↑ | 0.6519 | 0.6857 (+0.0338) | 0.4560 | 0.5599 (+0.1030) | 0.7130 | 0.7198 (+0.0068) | 0.7382 | 0.7411 (+0.0029) |
+| | ×4 | LPIPS↓ | 0.2788 | 0.2624 (-0.0164) | 0.4279 | 0.3040 (-0.1239) | 0.2676 | 0.2659 (-0.0017) | 0.2279 | 0.2219 (-0.0060) |
+| Blur | ×4 | PSNR↑ | 24.12 | 24.42 (+0.30) | 19.98 | 21.50 (+1.52) | 24.03 | 24.67 (+0.64) | 24.99 | 25.33 (+0.34) |
+| | ×4 | SSIM↑ | 0.6639 | 0.6787 (+0.0148) | 0.4373 | 0.5437 (+0.1064) | 0.6764 | 0.6833 (+0.0069) | 0.6892 | 0.6942 (+0.0050) |
+| | ×4 | LPIPS↓ | 0.3168 | 0.3199 (+0.0031) | 0.5112 | 0.4763 (-0.0349) | 0.3197 | 0.3168 (-0.0029) | 0.2768 | 0.2751 (-0.0017) |
+| JPEG | ×4 | PSNR↑ | 22.92 | 23.87 (+0.95) | 20.17 | 21.91 (+1.74) | 24.55 | 25.27 (+0.72) | 26.36 | 26.59 (+0.23) |
+| | ×4 | SSIM↑ | 0.6696 | 0.7068 (+0.0372) | 0.5141 | 0.5943 (+0.0802) | 0.7301 | 0.7372 (+0.0071) | 0.7497 | 0.7538 (+0.0041) |
+| | ×4 | LPIPS↓ | 0.2633 | 0.2508 (-0.0125) | 0.3682 | 0.2767 (-0.0915) | 0.2535 | 0.2506 (-0.0029) | 0.2113 | 0.2063 (-0.0050) |
+| Hybrid | ×4 | PSNR↑ | 23.40 | 23.72 (+0.32) | 19.27 | 21.43 (+2.16) | 23.52 | 24.35 (+0.83) | 24.35 | 24.71 (+0.36) |
+| | ×4 | SSIM↑ | 0.6211 | 0.6392 (+0.0181) | 0.3656 | 0.5197 (+0.1541) | 0.6458 | 0.6492 (+0.0034) | 0.6587 | 0.6636 (+0.0049) |
+| | ×4 | LPIPS↓ | 0.3453 | 0.3516 (+0.0063) | 0.5727 | 0.4461 (-0.1266) | 0.3634 | 0.3571 (-0.0063) | 0.3244 | 0.3210 (-0.0034) |
+
+
+
+Figure 4: Qualitative results on synthetic datasets with ×4 scale factor. The figure shows a 2x10 grid of images. The first row shows zoomed-in crops of a landscape with a yellow field and a blue sky. The second row shows zoomed-in crops of a person sitting at a desk. Each row contains 10 columns: Bicubic, FeMaSR, +LDP, StableSR, +LDP, SwinIR, +LDP, MambaIR, +LDP, and HR (High Resolution). The +LDP columns show improved visual quality compared to the base models.
+
+Figure 4: Qualitative results on synthetic datasets with $\times 4$ scale factor. (Zoom in for details)
+
+### 4.3 IMPROVING EXISTING SR MODELS VIA FINE-TUNING WITH LDP
+
+We evaluate LDP on Blind SR models, including the GAN-based FeMaSR Chen et al. (2022), Diffusion-based StableSR Wang et al. (2024), Transformer-based SwinIR Liang et al. (2021), and Mamba-based MambaIR Guo et al. (2024). In these experiments, LDP is applied only during the fine-tuning stage and is not used at inference.
+
+**Improving SR Models on Synthetic Benchmarks.** Quantitative and qualitative results are presented in Tab. 3 and Fig. 4 (Fig. 7 in Appendix). As listed in Tab. 3, incorporating LDP consistently improves all baseline models across all degradation types. Among them, MambaIR+LDP achieves the best overall performance. SwinIR and StableSR also benefit significantly from LDP. StableSR, in particular, shows substantial relative gains under challenging conditions such as Blur and Hybrid. These results highlight LDP’s effectiveness in narrowing the solution space via cycle consistency, enabling stronger generalization to unknown degradations. Although FeMaSR+LDP outperforms the original model in most metrics, its LPIPS values in Blur and Hybrid remain higher. As shown in Fig. 4, LDP effectively reduces GAN artifacts and corrects texture distortions, significantly improving perceptual quality. The low LPIPS scores of the original FeMaSR are likely due to severe GAN artifacts misinterpreted as texture.
+
+**Improving SR Models on Real-World Benchmarks.** Quantitative and qualitative results are presented in Tab. 4 and Fig. 5 (Fig. 8 in Appendix). Table 4 shows that incorporating LDP consistently improves the performance of existing blind SR models across almost all datasets and metrics, demonstrating its enhanced generalization to unseen degradations. For FeMaSR, LDP suppresses GAN-induced artifacts, producing more stable, natural outputs. This can lower no-reference metrics, e.g., the CLIPIQA score drops on RealSR, as such metrics may favor visually striking but structurally inaccurate results. As shown in Fig. 5, the visual results explain the numerical improvements, with LDP mitigating ringing and GAN-induced artifacts, thereby enhancing visual fidelity and contributing to the better no-reference metrics scores.
+
+### 4.4 LDP FOR POSTERIOR SAMPLING OF PRETRAINED DIFFUSION MODELS
+
+We evaluated how LDP enhances pre-trained diffusion models through posterior sampling, including LDM Rombach et al. (2022), StableSR Wang et al. (2024), ResShift Yue et al. (2025), and UPSR Zhang et al. (2025). Quantitative and qualitative results are presented in Tab. 5 and
+
+{8}------------------------------------------------
+
+Table 4: Performance improvements of blind SR models across diverse architectures using our proposed LDP on real-world benchmarks.
+
+| Datasets | Scale | Metrics | FeMaSR | +LDP | StableSR | +LDP | SwinIR | +LDP | MambaIR | +LDP |
+|-|-|-|-|-|-|-|-|-|-|-|
+| RealSR | ×4 | NIQE↓ | 7.446 | 4.708 (-0.825) | 7.446 | 6.331 (-1.115) | 4.773 | 4.838 (+0.065) | 5.330 | 5.350 (+0.020) |
+| | ×4 | MANIQA↓ | 0.3450 | 0.3654 (+0.0224) | 0.3303 | 0.3548 (+0.0245) | 0.3510 | 0.3742 (+0.0232) | 0.2882 | 0.3374 (+0.0492) |
+| | ×4 | CLIPIQA↑ | 0.5645 | 0.4482 (-0.1163) | 0.4886 | 0.5213 (+0.0327) | 0.4739 | 0.5478 (+0.0739) | 0.3989 | 0.4642 (+0.0653) |
+| | ×4 | MUSIQ↑ | 58.94 | 60.70 (+1.76) | 52.99 | 59.26 (+6.27) | 59.67 | 61.91 (+2.24) | 51.87 | 57.85 (+5.98) |
+| | ×4 | QAlign↑ | 3.695 | 3.860 (+0.165) | 2.347 | 2.646 (+0.299) | 3.820 | 3.877 (+0.057) | 3.631 | 3.766 (+0.135) |
+| DPED | ×4 | NIQE↓ | 5.045 | 5.704 (+0.659) | 7.616 | 7.228 (-0.388) | 4.982 | 4.821 (-0.161) | 5.983 | 5.430 (-0.553) |
+| | ×4 | MANIQA↑ | 0.3102 | 0.2710 (-0.0393) | 0.3086 | 0.2970 (-0.0086) | 0.2637 | 0.2832 (+0.0195) | 0.2334 | 0.2767 (+0.0433) |
+| | ×4 | CLIPIQA↑ | 0.5570 | 0.5610 (+0.0040) | 0.3968 | 0.3363 (-0.0605) | 0.3402 | 0.4538 (+0.1136) | 0.3083 | 0.3850 (+0.0767) |
+| | ×4 | MUSIQ↑ | 49.14 | 44.07 (-5.07) | 42.97 | 45.08 (+2.11) | 42.10 | 45.91 (+3.81) | 35.25 | 44.64 (+9.39) |
+| | ×4 | QAlign↑ | 3.429 | 3.262 (-0.167) | 2.033 | 2.311 (+0.278) | 2.988 | 3.090 (+0.102) | 3.192 | 3.248 (+0.056) |
+| RealSRSet | ×4 | NIQE↓ | 5.236 | 5.952 (+0.716) | 6.090 | 5.586 (-0.504) | 5.424 | 5.441 (+0.017) | 5.726 | 5.893 (+0.167) |
+| | ×4 | MANIQA↑ | 0.4006 | 0.4002 (-0.0004) | 0.3904 | 0.4012 (+0.0108) | 0.3740 | 0.3938 (+0.0198) | 0.2978 | 0.3555 (+0.0577) |
+| | ×4 | CLIPIQA↑ | 0.6874 | 0.5683 (-0.1191) | 0.6057 | 0.6214 (+0.0157) | 0.5843 | 0.6376 (+0.0533) | 0.4793 | 0.5428 (+0.0635) |
+| | ×4 | MUSIQ↑ | 64.65 | 64.07 (-0.58) | 60.15 | 62.84 (+2.69) | 63.60 | 65.33 (+1.73) | 55.96 | 61.28 (+5.32) |
+| | ×4 | QAlign↑ | 3.776 | 3.870 (+0.094) | 2.916 | 3.247 (+0.331) | 2.749 | 3.222 (+0.573) | 3.434 | 3.632 (+0.198) |
+
+
+
+Figure 5: Qualitative results on real-world benchmarks with ×4 scale factor. The image shows a grid of 10 columns. Each column represents a different method: Bicubic, FeMaSR, +LDP, StableSR, +LDP, SwinIR, +LDP, MambaIR, +LDP. Each column contains a zoomed-in crop of a real-world image, showing details like text and textures. The methods are compared based on their ability to reconstruct these details from low-resolution inputs.
+
+Figure 5: Qualitative results on real-world benchmarks with $\times 4$ scale factor. (Zoom in for details)
+
+Fig. 6 (Fig. 9 in Appendix). As listed in Tab. 5, after applying LDP, the baselines show improvements across nearly all metrics on most datasets. For instance, StableSR demonstrates notable gains in MANIQA, CLIPIQA, and MUSIQ scores after applying LDP, while ResShift and UPSR also achieve higher metric values in most cases. For StableSR, we applied the noise-subtraction technique (Appendix E), which accounts for the differences from Tab. 4. As showed in Fig. 6, our LDP effectively reduces texture artifacts while preserving structural consistency.
+
+## 5 ABLATION STUDY
+
+In ablation study, we examine the loss components, patch size, frequency band selection, scale factor for high-frequency acquisition, performance of LDP under severe degradations, and computational burden of LDP. Further details are provided in Appendix F.
+
+**Ablation of Loss Terms in the Fine-Tuning Stage.** Table 6 presents the impact of different loss components in $\mathcal{L}_{sym}^{FT}$ (Equ. 16) and $\mathcal{L}_{fre}$ (Equ. 14) during fine-tuning of pretrained SwinIR models, evaluated on the synthetic Hybrid dataset. In all experiments, we set $\tau = 100$ and the weight of each loss term is set to 1. All variants using any combination of the proposed losses outperform the baseline. Incorporating both symmetric and frequency losses (LDPV5–LDPV7) consistently improves perceptual quality (lower LPIPS) and reconstruction accuracy (higher PSNR and SSIM), with LDPV7 achieving the best overall performance, highlighting the complementary nature of these loss components. The LDP parameters can be universally configured as $\tau = 100$ and $\lambda_1 = \lambda_2 = \lambda_3 = 1$ for any super-resolution model, leading to improved generalization performance.
+
+**Ablation of the weight of $\tau$ .** Table 7 presents the impact of different weight of $\tau$ when fine-tuning SwinIR. All values of $\tau$ outperform the baseline, with $\tau = 100$ achieving the best overall performance.
+
+## 6 LIMITATIONS AND CONCLUSION
+
+We propose LDP, a lightweight denoising autoencoder plug-in. By integrating HR images and the high-frequency component of LR, the model achieves realistic degradation modeling while maintaining efficiency. Experiments show LDP significantly improves the generalization of existing SR models on unseen degradations after fine-tuning, and enables test-time artifact correction. However, LDP has two main limitations: (1) in posterior sampling, it lacks generative ability and only per-
+
+{9}------------------------------------------------
+
+Table 5: Improving Diffusion models via posterior sampling with LDP on real-world benchmarks.
+
+| Datasets | Scale | Metrics | LDM | +LDP | StableSR | +LDP | ResShift | +LDP | UPSR | +LDP |
+|-|-|-|-|-|-|-|-|-|-|-|
+| RealSR | ×4 | NIQE↓ | 6.651 | 6.830 (+0.179) | 5.948 | 5.636 (-0.312) | 8.021 | 8.027 (+0.006) | 4.854 | 4.834 (-0.020) |
+| | ×4 | MANIQA↓ | 0.2904 | 0.2810 (-0.0094) | 0.3552 | 0.3644 (+0.0092) | 0.3487 | 0.3486 (-0.0001) | 0.3901 | 0.3908 (+0.0007) |
+| | ×4 | CLIPIQA↑ | 0.4564 | 0.4319 (-0.0245) | 0.4840 | 0.5031 (+0.0191) | 0.5353 | 0.5354 (+0.0001) | 0.5278 | 0.5361 (+0.0083) |
+| | ×4 | MUSIQ↓ | 52.09 | 50.37 (-1.72) | 55.11 | 56.56 (+1.45) | 56.85 | 56.85 | 64.82 | 64.70 (-0.12) |
+| | ×4 | Qalign↑ | 2.685 | 2.610 (-0.075) | 2.607 | 2.716 (+0.109) | 3.036 | 3.036 | 3.218 | 3.231 (+0.013) |
+| | ×4 | NIQE↓ | 8.724 | 8.770 (+0.046) | 6.456 | 6.267 (-0.189) | 9.429 | 9.415 (-0.014) | 6.266 | 6.281 (+0.015) |
+| DPED | ×4 | MANIQA↓ | 0.2381 | 0.2418 (+0.0037) | 0.3255 | 0.3341 (+0.0086) | 0.3107 | 0.3104 (-0.0003) | 0.3151 | 0.3163 (+0.0012) |
+| | ×4 | CLIPIQA↑ | 0.3718 | 0.3681 (-0.0037) | 0.4041 | 0.4063 (+0.0012) | 0.4875 | 0.4879 (+0.0004) | 0.4094 | 0.4026 (-0.0068) |
+| | ×4 | MUSIQ↓ | 32.92 | 32.55 (-0.37) | 45.55 | 49.25 (+3.70) | 44.63 | 44.59 (-0.04) | 46.47 | 46.52 (+0.05) |
+| | ×4 | Qalign↑ | 1.901 | 1.917 (+0.016) | 2.302 | 2.343 (+0.041) | 2.422 | 2.423 (+0.001) | 2.271 | 2.257 (-0.014) |
+| RealSRSet | ×4 | NIQE↓ | 6.349 | 6.258 (-0.091) | 4.898 | 4.687 (-0.211) | 6.979 | 7.011 (+0.032) | 4.864 | 4.878 (+0.014) |
+| | ×4 | MANIQA↓ | 0.3407 | 0.3470 (+0.0063) | 0.4411 | 0.4573 (+0.0162) | 0.4004 | 0.4004 | 0.4647 | 0.4720 (+0.0073) |
+| | ×4 | CLIPIQA↑ | 0.5439 | 0.5311 (-0.0128) | 0.6384 | 0.6584 (+0.0200) | 0.6656 | 0.6658 (+0.0002) | 0.6709 | 0.6753 (+0.0044) |
+| | ×4 | MUSIQ↓ | 58.54 | 59.52 (+0.98) | 62.73 | 62.96 (+0.23) | 66.05 | 66.06 (+0.01) | 69.68 | 69.74 (+0.06) |
+| | ×4 | Qalign↑ | 3.046 | 3.089 (+0.043) | 3.193 | 3.192 (-0.001) | 3.561 | 3.560 (-0.001) | 3.705 | 3.656 (-0.049) |
+
+
+
+Figure 6: Qualitative results of LDP enhances diffusion models through posterior sampling at ×4 scale SR. The figure shows a 2x9 grid of images. The first row shows original images of a building. The second row shows zoomed-in crops of the same images. Below each crop, the method used is labeled: Bicubic, LDM, +LDP, StableSR, +LDP, ResShift, +LDP, UPSR, +LDP. The +LDP method consistently shows sharper details and better texture recovery compared to the other methods.
+
+Figure 6: Qualitative results of LDP enhances diffusion models through posterior sampling at $\times 4$ scale SR. (Zoom in for details)
+
+Table 6: Ablation study of the loss terms used in the fine-tuning stage of pretrained SwinIR models.
+
+| Methods | $\mathcal{L}_{\text{L}}^{\text{Sym}}$ | $\mathcal{L}_{\text{L}}^{\text{Sym}}$ | $\mathcal{L}_{\text{L}}^{\text{Sym}}$ | $\mathcal{L}_{\text{L}}^{\text{Sym}}$ | PSNR↑ | SSIM↑ | LPIPS↓ |
+|-|-|-|-|-|-|-|-|
+| baseline | × | × | × | × | 23.52 | 0.6458 | 0.3634 |
+| LDPV1 | × | × | × | ✓ | 23.99 | 0.6481 | 0.3591 |
+| LDPV2 | ✓ | ✓ | × | × | 24.08 | 0.6406 | 0.3585 |
+| LDPV3 | × | × | ✓ | × | 24.01 | 0.6404 | 0.3582 |
+| LDPV4 | ✓ | ✓ | ✓ | × | 24.13 | 0.6406 | 0.3609 |
+| LDPV5 | ✓ | ✓ | × | ✓ | 24.33 | 0.6499 | 0.3578 |
+| LDPV6 | × | × | ✓ | ✓ | 24.28 | 0.6500 | 0.3580 |
+| LDPV7 | ✓ | ✓ | ✓ | ✓ | 24.35 | 0.6492 | 0.3571 |
+
+Table 7: Ablation study of the $\tau$ weight.
+
+| $\tau_{\text{au}}$ | PSNR↑ | SSIM↑ | LPIPS↓ |
+|-|-|-|-|
+| - | 23.52 | 0.6458 | 0.3634 |
+| 0.1 | 24.15 | 0.6547 | 0.3601 |
+| 1 | 24.27 | 0.6547 | 0.3595 |
+| 10 | 24.30 | 0.6500 | 0.3596 |
+| 100 | 24.35 | 0.6492 | 0.3571 |
+
+forms texture rectification; (2) It does not support unpaired degradation modeling, as the generated LR image inevitably retains information from the input LR high-frequency components.
+
+## REFERENCES
+
+- Eirikur Agustsson and Radu Timofte. NTIRE 2017 challenge on single image super-resolution: Dataset and study. In *IEEE Conference on Computer Vision and Pattern Recognition Workshops*, pp. 1122–1131, 2017.
+- Arpit Bansal, Eitan Borgnia, Hong-Min Chu, Jie Li, Hamid Kazemi, Furong Huang, Micah Goldblum, Jonas Geiping, and Tom Goldstein. Cold diffusion: Inverting arbitrary image transforms without noise. In *Advances in Neural Information Processing Systems*, 2023.
+- Jianrui Cai, Hui Zeng, Hongwei Yong, Zisheng Cao, and Lei Zhang. Toward real-world single image super-resolution: A new benchmark and a new model. In *IEEE International Conference on Computer Vision*, pp. 3086–3095, 2019.
+- Chaofeng Chen, Xinyu Shi, Yipeng Qin, Xiaoming Li, Xiaoguang Han, Tao Yang, and Shihui Guo. Real-world blind super-resolution via feature matching with implicit high-resolution priors. In *ACM International Conference on Multimedia*, pp. 1329–1338, 2022.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/4Ha2srdhPN.txt b/papers/4Ha2srdhPN.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c6e99f909a32019a44485e88156e8ea043c6c670
--- /dev/null
+++ b/papers/4Ha2srdhPN.txt
@@ -0,0 +1,375 @@
+
+
+{0}------------------------------------------------
+
+# GRAID: ENHANCING SPATIAL REASONING OF VLMs THROUGH HIGH-FIDELITY DATA GENERATION
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Vision Language Models (VLMs) achieve strong performance on many vision-language tasks but often struggle with spatial reasoning—a prerequisite for many applications. Empirically, we find that a dataset produced by a current training data generation pipeline has a 57.6% human validation rate. These rates stem from current limitations: single-image 3D reconstruction introduces cascading modeling errors and requires wide answer tolerances, while caption-based methods require hyper-detailed annotations and suffer from generative hallucinations. We present GRAID, built on the key insight that qualitative spatial relationships can be reliably determined from 2D geometric primitives alone. By operating exclusively on 2D bounding boxes from standard object detectors, GRAID avoids both 3D reconstruction errors and generative hallucinations, resulting in datasets that are of higher quality than existing tools that produce similar datasets as validated by human evaluations. We apply our framework to the BDD100k, NuImages, and Waymo datasets, generating over 8.5 million high-quality VQA pairs creating questions spanning spatial relations, counting, ranking, and size comparisons. We evaluate one of the datasets and find it achieves 91.16% human-validated accuracy—compared to 57.6% on a dataset generated by recent work. Critically, we demonstrate that when trained on GRAID data, models learn spatial reasoning concepts that generalize: models fine-tuned on 6 question types improve on over 10 held-out types, with accuracy gains of 47.5% on BDD and 37.9% on NuImages for Llama 3.2B 11B, and when trained on all questions types, achieve improvements on several existing benchmarks such as BLINK. The GRAID framework and datasets will be available publicly after the review period.
+
+## 1 INTRODUCTION
+
+### SpatialVLM
+
+Q: How far is the a clock tower with a night view from the a bus with the street?
+
+
+
+Image for SpatialVLM showing a clock tower and a bus at night.
+
+A: the a clock tower with a night view and the a bus with the street are 61.0 centimeters apart.
+
+### SpatialRGPT
+
+Q: How wide is ?
+
+
+
+Image for SpatialRGPT showing a bus with a red bounding box and a measurement line indicating its width.
+
+A: It is 2.66 meters.
+
+## GRAID
+
+Q: Is there at least one traffic sign to the left of any truck?
+
+
+
+Image for GRAID showing a street scene with a truck and a traffic sign.
+
+A: No
+
+Figure 1: Examples VQA pairs from the community implementation of SpatialVLM and SpatialRGPT, showing typical errors and issues in current synthetic data generation methods, and an example from GRAID.
+
+Vision Language Models (VLMs) have already shown promise in a wide variety of applications, such as medical diagnosis Jin et al. (2024), biology (Maruf et al., 2025), and engineering design (Picard et al., 2025). However, despite this promise, a key failure mode of VLMs is that they are poor spatial reasoners, that is, they struggle to understand how objects are located in space and the spatial relationships between them. For example, in medical image analysis, Jin et al. (2024) found that VLMs were unable to recognize that skin lesions shown at different angles were the same pathology. Similarly, in robotics, Wang et al. (2025) found that without integrating explicit spatial
+
+{1}------------------------------------------------
+
+relationships, VLMs were unable to produce high-level, executable robotic task plans. As a result, without spatial reasoning, VLMs cannot be reliably deployed in embodied domains such as robotics or non-embodied domains such as medical image analysis.
+
+While many VLMs have been trained on internet-scale data, Deitke et al. (2024) found that commonly used datasets, such as COCO (Chen et al., 2015) and Localized Narratives (Pont-Tuset et al., 2020), only contain 11 and 37 words per description on average, despite averaging 7.7 objects Lin et al. (2015) and 10.8 nouns per image. In response, there have been several recent approaches focused on generating datasets to improve the spatial reasoning of VLMs. Chen et al. (2024a) proposed SpatialVLM to generate 2 billion visual question-answer (VQA) pairs in metric space, yet our human evaluation reveals that only 57.6% of questions are valid (Section 4), with errors stemming from compounded uncertainties in depth estimation, camera calibration, and scene geometry. Cheng et al. (2025) introduced SpatialRGPT, which similarly requires 3D representations but also architectural changes to the VLM. In addition, their region-based architecture requires region-based prompting, which eliminates localization as a learned skill. SpaRE (Ogezi & Shi, 2025) generates question-answer pairs using Large Language Models (LLMs) from hyper-detailed captions but is limited in scalability since it requires extensive human effort to create the captions and inherits hallucinations from the generative models.
+
+We introduce GRAID (**Generating Reasoning questions from Analysis of Images via Discriminative Artificial Intelligence**), built on the key insight that *qualitative* spatial relationships can be reliably determined through 2D geometric analysis of bounding boxes, avoiding the metric errors and generative hallucinations commonly found in existing methods. GRAID requires only images and object detection outputs—no architectural changes, no hyper-detailed captions, and no 3D reconstruction. Table 1 offers a comparison of the differences between GRAID and prior methods. Table 1 offers a comparison of the differences between GRAID and prior methods. Our human study finds that over 91.16% of GRAID generated VQA pairs are valid as compared to under 58% of a dataset generated by a current method (Section 4). Consistent with recent benchmark findings (Ogezi & Shi, 2025), our human study implicates low-fidelity training data as the cause of a model underperforming its size class. We demonstrate GRAID at scale by applying it to Berkeley Deep Drive 100k (BDD) (Yu et al., 2020), Nulmages (Caesar et al., 2019), and Waymo Open Perception (Ettinger et al., 2021), implementing 22 VQA templates spanning spatial relations, counting, ranking/extrema, localization, and size/aspect, thus generating over 8.5M pairs. To reduce compute requirements at this scale, we introduce SPARQ (Sieve Predicates And Realize Questions), a lightweight interface where question templates define predicates and apply. Shared predicates (e.g., `at_least_x_classes`) allow early rejection and yield up to $1400\times$ speedups on the heaviest templates (Section 3.2, App. Table 3). *GRAID is domain-agnostic; we instantiate on driving datasets because they provide among the largest openly available, high-quality object detection annotations at scale, not due to any AV-specific assumption in the method. In addition, the 22 templates we implement are merely to demonstrate GRAID’s effectiveness as a framework; they are by no means the only VQA templates possible.*
+
+In addition to the human study, we conduct a series of quantitative experiments to demonstrate the effectiveness of GRAID’s datasets. Our experiments range from showing cross GRAID dataset generalization (RQ1), to learning simple spatial primitives that combine and lead to enhanced performance on more complex problems (RQ2). Finally, we demonstrate that training on GRAID data leads to improved VQA performance over training on datasets generated by current methods (RQ3). We fine-tune and benchmark several VLM models across a variety of tasks in existing VQA benchmarks (A-OKVQA (Schwenk et al., 2022), RealWorldQA (xAi, 2024), BLINK (Fu et al., 2024), NaturalBench (Li et al., 2024a), and VSR (Liu et al., 2023)) that challenge VLMs in both indoor and outdoor scenes far beyond the driving scenes from our exemplar source datasets. Overall, GRAID tuned models consistently outperform their counterparts tuned on data from existing methods.
+
+In summary, this paper makes the following contributions:
+
+1. **GRAID:** a framework that uses only 2D geometry to generate qualitative spatial VQA data, avoiding errors from single-view 3D reconstruction and hallucinations from generative models.
+2. **High quality dataset:** over 8.5M VQA pairs generated from three real-world datasets, with more than 91.16% human-verified validity, making it one of the largest high-quality spatial VQA resources to date (see Sec. 4).
+3. **SPARQ:** a reusable predicate library and template interface that accelerates dataset generation by early rejection of infeasible candidates, yielding up to $1400\times$ speedups on the most computationally expensive templates (see Sec. 3.2, App. Table 3).
+
+{2}------------------------------------------------
+
+4. **Evaluation of generalization based on GRAID:** fine-tuning on GRAID data improves VLM performance on held-out question types and on non-template tasks as well as external benchmarks, outperforming models fine-tuned on existing synthetic datasets and demonstrating knowledge transfer beyond our question templates (see Sec. 5).
+
+Table 1: Comparison of spatial reasoning data generation frameworks
+
+| Feature | GRAID | SpatialVLM | SpatialRGPT | SpaRE |
+|-|-|-|-|-|
+| Can operate on images only | ✓ | ✓ | ✓ | ✗ |
+| No VLM architecture changes needed | ✓ | ✓ | ✗ | ✓ |
+| No lengthy captions required | ✓ | ✓ | ✓ | ✓ |
+| Avoids single-view 3D reconstruction | ✓ | ✗ | ✗ | ✓ |
+| Avoids LLM-based QA gen. | ✓ | ✓ | ✓ | ✗ |
+| Open-source implementation by authors | ✓ | ✗ | ✓ | ✗ |
+
+## 2 RELATED WORK AND CHALLENGES
+
+Whether analyzing MRI anatomical scans or planning robotic navigation, spatial reasoning is a prerequisite for embodied and non-embodied VLM deployment. Recent investigations across medical imaging (Jin et al., 2024), robotics (Wang et al., 2025), and autonomous vehicles (Jiang et al., 2025) reveal a consistent pattern: VLMs leave much to be desired in spatial understanding. To better understand these failures, recent works have investigated if VLMs can understand concepts such as physical domain understanding (Li et al., 2023), geometric understanding (Kosoy et al., 2025), and object states (Newman et al., 2024). These real-world concepts have also inspired many benchmarks like solving problems in the blink of an eye (Fu et al., 2024), naturally adversarial examples (Li et al., 2025b), physical world understanding for embodied agents (Chow et al., 2025), complex multi-step spatial concepts (Zhang et al., 2025b), and even games (Tang et al., 2025a; Lyu et al., 2025). The common finding is that VLMs leave much to be desired in terms of spatial understanding and how the physical world operates.
+
+**3D Reconstruction** Hong et al. (2023) were among the first to teach spatial reasoning to VLMs by performing 3D scene reconstruction from multiple views then using a 3D feature extractor to connect to an LLM. While such methods worked, they required architectural changes and tons of data per scene. The authors did not specify how many images per scene were required but popular methods at the time such as Nerfstudio (Tancik et al., 2023) would have required tens to a few hundred images from known camera poses per scene. Later works avoided the requirement of many images by instead constructing implicit scene graphs: predicting depth from RGB images and instance segmentation models refine masks of detected objects, to finally lift 2D images to a 3D point clouds and perform semantic grouping. However, these approaches come at the cost of compounding errors. Gu et al. (2024) introduces ConceptGraphs but are admittedly prone to LLM and VLM hallucinations in addition to missing small and thin objects which, “impacts downstream planning”. Chen et al. (2024a) introduce SpatialVLM and propose a wide acceptance metric of [50%, 200%] to account for inaccuracies of their quantitative (metric-based) questions. Despite the wide acceptance threshold, our human study reveals 57.6% of the answers generated by their community implementation are wrong (Section 4). Cheng et al. (2025) avoids many of these issues by generating their dataset from labeled 3D data, however, they propose a region-based VLM which requires architectural changes and eliminates localization as a core competency of the VLM, i.e., the user must select the object of interest rather than describe it and let the VLM find it.
+
+**Leveraging existing data** is a more popular approach in which recent works have proposed VLMs with enhanced spatial reasoning by explicitly training them on bounding boxes (Wang et al., 2023; Yang et al., 2023b; Peng et al., 2023; Rasheed et al., 2024; Zhang et al., 2025a). Additionally, some methods have trained on point data (You et al., 2023; Deitke et al., 2024) thus becoming less dependent on bounding boxes, which may encompass with unwanted objects in object-dense scenes. However, many of these approaches leverage COCO related datasets and as Deitke et al. (2024) discovered, the sparsity of words in such source datasets are too little to contain spatial reasoning data. This led to their key insight that significantly longer human annotations are required to explicitly express spatial relationships.
+
+{3}------------------------------------------------
+
+## 3 GRAID
+
+GRAID (**GEnerating Reasoning questions from Analysis of Images via Discriminative Artificial Intelligence**) is an extensible framework that generates large-scale Visual-Question-Answering (VQA) datasets. The datasets are of higher quality than existing tools that produce similar datasets because GRAID produces valid questions and correct answers far more frequently than existing methodologies as validated by human evaluations. GRAID does this by way of two components: Scene Understanding and SPARQ. We discuss each in turn.
+
+### 3.1 SCENE UNDERSTANDING
+
+GRAID’s key insight into reducing hallucinations in both questions and answers, is to avoid performing single-image-view 3D reconstruction —the key feature in many existing works. Instead GRAID does nearly all of its analysis in the 2D image space. In particular, GRAID merely assumes the usage of object detection models which provide class names and bounding boxes of objects in an image. Modern object detection models have achieved sufficiently high accuracy on prior global challenges such as ImageNet, and are robust enough for practical deployment, with both governments and private entities deploying popular single-stage detectors like YOLO for diverse real-world applications. Furthermore, there exists several widely accepted interpretability methods such as Saliency Maps (Li & Wong, 2024; Simonyan et al., 2014), Grad-CAM (Selvaraju et al., 2019), Grad-CAM++ (Chattopadhyay et al., 2018), Score-CAM (Wang et al., 2020), SuperPixels (Hartley et al., 2021) and many more. This level of widespread deployment and tools for analysis, has yet to be achieved in the other components required to single-image-view 3D reconstruction which are not limited to but include models for depth perception, pose estimation, and plane estimation.
+
+The problem of object detection can be formally described as follows: given an input image $I \in \mathbb{R}^{H \times W \times C}$ where $H$ , $W$ , and $C$ denote the height, width, and number of channels, object detection models predict a set of up to $N$ bounding boxes $\mathcal{B} = \{b_i\}_{i=1}^N$ and their corresponding class labels $\mathcal{Y} = \{y_i\}_{i=1}^N$ .
+
+GRAID supports several representations of bounding boxes but for convenience, we will refer to one where each bounding box, $b_i = (x_{\min}, y_{\min}, x_{\max}, y_{\max})$ , where $(x_{\min}, y_{\min})$ and $(x_{\max}, y_{\max})$ correspond to the top-left and bottom-right corners of the bounding box, respectively. Within each box, the model must also assign a class label $y_i \in \{1, \dots, C\}$ where $C$ is the total number of class labels or object categories. This is typically formulated as a probability distribution over the label space, $p(y_i|I) = \text{softmax}(z_i)$ where $z_i \in \mathbb{R}^C$ are the raw logits from the discriminative model for class scores. Observe that $C$ is a parameter of the underlying object detection datasets and models and can easily be changed by swapping models. For example, models trained on the COCO dataset (Lin et al., 2015) have $C = 80$ , whereas models trained to compete ImageNet Large Scale Visual Recognition Challenge (Russakovsky et al., 2015) have $C = 1000$ .
+
+Rather than designing a general purpose object detector or assuming a single foundational model, we build GRAID to support three of the mostly widely used computer vision packages: Detectron2, MMDetection, and Ultralytics. We define a standard interface thus allowing user’s to either bring in labeled data or use their own prior trained object detection models. Note that, segmentation models can also be used as they often share the same backbone as an object detection model.
+
+### 3.2 SPARQ
+
+Given an image and a list of detection objects, we can now construct questions and answers based on the relationships of those bounding boxes. However, for an image with many detected objects, checking spatial relationships between objects quickly becomes expensive as this is a quadratic operation which can require comparing every object to every other object. Thus to scalably generate millions of questions in under a few hours, we design SPARQ (Sieve Predicates And Realize Questions).
+
+**Predicates** are designed to be lightweight sanity checks before performing the full realization of a question which are more computationally expensive. For example, in the base question, `RightOf`, implemented as, “*Is there at least one {object\_1} to the right of any {object\_2}?*”, we can immediately check to see if there are at least two different object classes before checking spatial relationships. We can also check to see if there exists at least one pair of objects whose classes are different and their bounding boxes do not intersect (i.e., their boxes’ $\text{IoU} = 0$ ). While these two
+
+{4}------------------------------------------------
+
+#### **Algorithm 1: RIGHT-OF QUESTION REALIZER**
+
+**Input:** Image $I$ of width $W$ and height $H$ ; detections $\mathcal{D}$ (each with *label* and *bounding box*)**Output:** List of (*question*, *answer*) pairs (possibly empty)
+
+#### **1. Group detections by class**
+
+- Build a map $\mathcal{C}$ : label $\mapsto$ list of boxes $b = (x_{\min}, y_{\min}, x_{\max}, y_{\max})$ .
+- If $|\text{keys}(\mathcal{C})| < 2$ , return $\emptyset$ .
+
+#### **2. Evaluate ordered class pairs**
+
+- Initialize $\text{QA} \leftarrow []$ .
+- For each ordered pair of distinct classes $(c_1, c_2)$ :
+ - Set $\text{found} \leftarrow \text{False}$ .
+ - For each $b_1 \in \mathcal{C}[c_1]$ and each $b_2 \in \mathcal{C}[c_2]$ :
+ - Let $x_{\min}^{(1)} \leftarrow$ left edge of $b_1$ , and $x_{\max}^{(2)} \leftarrow$ right edge of $b_2$ .
+ - If $x_{\min}^{(1)} > x_{\max}^{(2)}$ (i.e., $b_1$ is strictly to the right of $b_2$ ):
+ - Compute $\text{IoU}(b_1, b_2)$ . If $\text{IoU}(b_1, b_2) = 0$ (non-overlapping):
+ - Append (“Is there at least one $c_1$ to the right of any $c_2$ ?”, “Yes”) to QA.
+ - Set $\text{found} \leftarrow \text{True}$ and break out of the inner loops.
+ - If $\text{found} = \text{False}$ , append (“Is there at least one $c_1$ to the right of any $c_2$ ?”, “No”) to QA.
+
+#### **3. Return**
+
+- Return QA.
+
+checks are simple, their savings are significant. When generating the graid-bdd100k dataset, we find that these two predicates complete, on average, in 5.17ms, while realizing the question takes 46.95ms—nine times slower. In other questions such as `LargestAppearance`, which uses just the former predicate, the savings are more pronounced: over $1407\times$ . Furthermore, we find that predicates not only saving time, but they often result sufficient conditions for the questions to be realized. In `LargestAppearance`, the predicate completes on average in 0.02ms, and 78.8% of the time results in a question being realized. In the appendix, we provide a table of GRAID-BDD (without depth) dataset that reports average predicate timing, realization time, and the share of cases where predicate success implied realization success. For the other datasets, we refer the reader to each dataset’s respective README file after the review period.
+
+**Realize Questions.** Once all predicates for a base question have succeeded, we *apply* the question—that is, we attempt to realize a question-answer pair for the image and its detected objects. One algorithm to solve the previously mentioned, `RightOf` question, is to first find the left most instance of every class of object in the image. Next, for each object found, we iterate over the remaining classes of object in the image and check for the following: 1) the bounding boxes of each potential pair should be non-overlapping, and 2) they should lie on similar planes. Observe that the second condition is necessary in the process of realizing a question as we could encounter a case where we find out that the question could be ambiguous (e.g. is an object truly the right of another if they are also on different heights?). In such instances, the questions `apply` method returns an empty list. Otherwise, when we locate a potential pair, we save them as a candidate pair until we have completed all objects in the image. The full algorithm of the `RightOf` question, is provided in Algorithm 1.
+
+As evidence of GRAID’s effectiveness, we implement over 20 base questions and apply them to three source datasets to generate over 8.5M VQA pairs. We discuss the resulting data in the next section and refer the reader to Appendix A.1 for further details of these base questions including the class name, a brief description of its predicates, and a one-line explanation of the corresponding realization algorithm.
+
+## **4 GRAID DATASETS**
+
+The autonomous vehicle (AV) domain provides an ideal testbed for evaluating GRAID due to its exceptional wealth of high-quality, comprehensively labeled datasets that naturally capture diverse real-world scenarios. We select three prominent AV datasets —Berkeley Deep Drive (BDD) 100k, NuImages, and Waymo Open Perception—that collectively offer extensive ground truth annotations
+
+{5}------------------------------------------------
+
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+
+
+
+Figure 2: Hierarchical breakdown of 5.3M visual questions generated by GRAID using Berkeley Deep Drive as the source images. The figure is a sunburst chart with three concentric rings. The innermost ring shows five main cognitive categories: Spatial Relations (red), Ranking & Extremes (orange), Localization (purple), Size & Aspect (yellow), and Counting (blue). The middle ring breaks these down into sub-categories: Spatial Relations includes Closer, Farther, and Not Co; Ranking & Extremes includes Higher, Lower, and Not Co; Localization includes Closer Location, Thirds Location, Rightmost Object, and Leftmost Object; Size & Aspect includes Larger, Smaller, and Not Co; Counting includes More than Target, Less than Target, and Exact. The outermost ring provides further granular details for each sub-category, such as 'Most', 'Least', 'First', 'Last', 'Second', 'Third', 'Fourth', 'Fifth', 'Sixth', 'Seventh', 'Eighth', 'Ninth', 'Tenth' for Ranking & Extremes, and 'Most', 'Least', 'First', 'Last', 'Second', 'Third', 'Fourth', 'Fifth', 'Sixth', 'Seventh', 'Eighth', 'Ninth', 'Tenth' for Size & Aspect.
+
+Figure 2: Hierarchical breakdown of 5.3M visual questions generated by GRAID using Berkeley Deep Drive as the source images. There are five cognitive categories: Spatial Relations (53.5%), Counting (26.7%), Ranking & Extremes (14.9%), Localization (2.6%), and Size & Aspect (1.3%). Question details including runtime, and predicate and apply methods can be found in the Appendix.
+
+across varied driving conditions, geographical locations, and environmental factors. Additionally, the ground truth annotations in the AV space have been shown to have less human labeling errors Schubert et al. (2024) than more general datasets such as COCO. In the subsequent sections, we select to directly leverage these high-quality labels in GRAID’s generation rather than train our own object detectors so that we can evaluate GRAID’s effectiveness in isolation.
+
+In total, we release six variants of GRAID generated datasets from the source datasets (see Table 2). Using BDD, we generate two variants: one without depth related questions yielding 18 classes of questions, and one with depth questions yielding 22 classes of questions. These depth questions are selected as a demonstration of GRAID’s extensibility as a framework. In prior works such as SpatialVLM and SpatialRGPT, depth models are used to ask quantitative metric-based questions. Due to the inaccuracy of these models, the former proposed accepting answers that were within 50% and 200% of the estimated depth. Unfortunately, our human evaluators found that in 250 questions generated by the open implementation of SpatialVLM, over half had incorrect ground-truth answers. This is one of the main motivations for why GRAID asks qualitative rather than quantitative questions, i.e., rather than asking how far an object is in terms of metric distance, it’s easier to answer which object is closer, hence the Discriminative in GRAID. To further account for inaccuracies in depth models, our depth questions, like nearly all of our questions, are configurable with thresholds than can be set based on a models’ confidence, a users’ intuition, or domain expertise. For example, in Closer, we define *margin\_ratio* as the configurable parameter, where the question will only be realized if the ratio of the predicted distances between the objects is at least the *margin\_ratio*. This eliminates questions that appear in existing datasets which should otherwise be deemed ambiguous.
+
+Similarly, we release the same two variants using NuImages as the source images and Waymo Open Perception. However, in Waymo, rather than using the original images, we utilize a small subset. In the Waymo Open Perception dataset, there are a few hundred unique scenes. These scenes are actually videos across six cameras on a single vehicle and so many images are repeated with just a handful of objects changing location. Thus, in our Waymo variants we select one image from the front camera with as a score that balances: (i) the number of detected objects and (ii) the ratio of the largest object area to the image area. We find this metric offers a good balance of generating more questions per image. Table 2 summarizes the various GRAID generated datasets.
+
+### HUMAN EVALUATION OF DATASET QUALITY
+
+In order to characterize the differences between VQA datasets, we perform several kinds of human evaluations. First, we examine Huggingface to identify the most popular VQA datasets which involve spatial reasoning. At the time of submission, under the VQA dataset category, three (Li et al. (2025a); Chen et al. (2024b); Li et al. (2024b)) of the top 30 datasets ranked by downloads explicitly test for spatial reasoning. However, all three are strictly datasets and not frameworks that are capable
+
+{6}------------------------------------------------
+
+Table 2: GRAID Generated Datasets Overview
+
+| Source Dataset | Question Types | # QA Pairs | Train QA | Val QA | # Train/Val Images |
+|-|-|-|-|-|-|
+| BDD100k | With Depth | 5.30M | 4.63M | 672k | 69.9k / 9.9k |
+| | Without Depth | 3.82M | 3.34M | 485k | |
+| NuImages | With Depth | 3.29M | 2.65M | 641k | 60.7k / 14.9k |
+| | Without Depth | 2.41M | 1.94M | 478k | |
+| Waymo | With Depth | 16.4k | 13.1k | 3.33k | 798/202 |
+| | Without Depth | 13.8k | 10.9k | 2.79k | |
+
+of generating additional data. In addition, all three utilize LLMs or VLMs in their dataset curation, leading to the question: if a VLM could already see something, is it that hard to test? A few of the remaining test for algebraic reasoning from images via tests like geometric challenges (e.g., read the sides of a triangle and use Pythagorean’s theorem to solve for the missing side), however, the vast majority test for document and chart understanding, or image captioning.
+
+In the realm of VQA generation frameworks that explicitly test for spatial reasoning from just images, we find two candidates: SpatialRGPT and SpatialVLM. There are also works such as SpaRE (Ogezi & Shi, 2025) which generate VQA questions given image and caption pairs. However observe that in Deitke et al. (2024), the authors identify that human annotations are required for better image-caption pairs, as the average word count in captions for common pairs such as COCO is merely 11 words. With such little details, methods like SpaRE leave room for LLMs to hallucinate details of an object and scene.
+
+Our human evaluators thus evaluated the OpenSpatialDataset, the only dataset produced by SpatialRGPT, and OpenSpaces one of the more popularly used datasets generated by the community implementation of SpatialVLM. VQA examples of each dataset are shown in Figure 1. Due to the masked region queries, our evaluators were unable to ascertain the quality of the examples. In some instances, it was possible to determine if the question and answer were correct as there were only one or two regions, however, in many others, there tens of regions which often lacked semantic meaning and so identifying the subject was not possible unless a region-based prompting technique such as Set-of-Mark (Yang et al., 2023a) was used. Our evaluators were able to evaluate 50 images with 5 questions per image in OpenSpaces. An example is shown in Figure 1. The evaluators noted that most questions were not grammatically correct. Despite their best attempts to understand the question, they found $\frac{104}{250} = 41.6\%$ were not valid questions, and $\frac{144}{250} = 57.6\%$ of answers in the dataset were incorrect. Finally, of the questions that were valid, 25.2% of them had hallucinated answers. Our human evaluations corroborate recent findings from Ogezi & Shi (2025), who show that SpaceLLaVA, on average, performs the worst compared to other similarly-sized models on spatial reasoning benchmarks. Our results suggest that the poor quality of the data generated by the community implementation of SpatialVLM, which was used to train SpaceLLaVA, is a primary contributor to this performance gap.
+
+Finally, we turn to the evaluations of a GRAID generated dataset. We ask four humans to evaluate 317 VQA pairs from the GRAID-BDD dataset without depth questions. Each person is asked for their name, which is used to compute a seed for randomly sampling the VQA pairs. As with the two previous datasets, we asked our evaluators to determine if 1) a question was valid, and 2) if the answer to the question is correct. Given that we are interested in the correctness of the question, we offer each person the person to view the image with and without bounding boxes. Without the boxes, they attempt an additional question to judge the difficulty of the questions on a Likert scale of 1 to 5. With the boxes, they can determine if the answer in the dataset is indeed correct, and if there are any labeling errors which led to a false answer. In total, our evaluators found 7 questions to be unclear, 2 questions to be invalid, and 5 labeling errors in the BDD dataset labels, i.e., over 95.58% of GRAID generated questions were valid. In terms of answers, 12 were found to be unclear and 8 were found to be invalid, hence over 93.69% of answers were valid. When we examine the unique instances (i.e., do not double count the VQA pairs with both question and answer concerns), we find that there are 28 unique instances and so in total less than 9% of the VQA pairs they evaluated were found to be either invalid or confusing. Using their feedback, we were able to address some of the ambiguities. The current public datasets have these corrections
+
+{7}------------------------------------------------
+
+and thus even higher validity. Lastly, our evaluators gave an average difficulty rating of 2.968, with a standard deviation of 1.146. 109 questions were marked as a 2 or less, while 95 were marked as a 4 or higher. These results confirm that GRAID generated datasets are of the highest accuracy VQA datasets made by automated generation pipelines, and that the questions generated are of a wide variety of difficulty levels, i.e., the data avoids being uniformly easy or hard.
+
+## 5 VISION LANGUAGE MODEL EXPERIMENTS
+
+We conduct a series of fine-tuning experiments to determine how well a VLM can learn spatial reasoning concepts from our data. For all experiments we use Meta Llama-3.2-Vision-Instruct-11B as the base model and fine tune using LoRA Hu et al. (2021) with a learning rate of $2^{-4}$ , AdamW8bit optimizer, and a linear learning rate scheduler. We ask the following research questions:
+
+- RQ1:** Does fine-tuning on spatial reasoning tasks enable cross-dataset generalization, demonstrating acquisition of transferable spatial concepts rather than dataset-specific overfitting?
+- RQ2:** Can training on fundamental spatial reasoning primitives improve performance on more complex spatial reasoning tasks not seen during training?
+- RQ3:** Does training on GRAID generated datasets improve performance on established benchmarks, further validating the quality of our semi-synthetically generated training data?
+
+**RQ1** We perform supervised fine-tuning on a limited sample of GRAID-BDD. We randomly select 10% from the training split without stratified sampling by question type. Using LoRA with rank of 16 and 200 training steps, we evaluate the model on two distinct test scenarios: (1) 1,000 held-out unstratified examples (Figure 2 provides the full distribution of questions of GRAID-BDD) from the same dataset (GRAID-BDD), and (2) 1,000 unstratified examples from an entirely different dataset (GRAID-NuImages). On the first, model performance improved dramatically from 31% to 80.7% (+49.7%), already demonstrating improved spatial reasoning capabilities. In the second, the model achieved substantial gains from 38% to 67.1% (+29.1%) on the completely unseen GRAID-NuImages dataset—which contains entirely different cities, scenes, objects, and visual contexts. These cross-dataset results strongly indicate that the model acquired transferable spatial reasoning representations rather than merely memorizing dataset-specific patterns.
+
+**RQ2** To evaluate whether a model is truly learning spatial concepts, we select six questions to serve as our training set for supervised fine-tuning (SFT) of a Meta Llama 3.2 11B VLM: *LeftOf*, *RightOf*, *HowMany*, *AreMore*, *LargestAppearance*, and *IsObjectCentered* (full definitions are provided in Appendix A.1. We use a LoRA with rank 32, batch size 2 with 4 gradient accumulation steps, 5 warmup steps, AdamW8bit optimizer with a linear schedule, weight decay of 0.01, and train for 200 steps. Observe that these six questions yield over 18,000 VQA pairs using just GRAID-BDD (still less than half of the total training examples available), but our SFT process completes only a fraction of an epoch. At the end of our SFT, we evaluate the model on all question types in GRAID-BDD, and GRAID-NuImages, with the latter never seen in training. The results are shown in Figure 3. In nearly all questions and across both datasets, we observe wide performance increases despite only seeing six kinds of questions from only one of the datasets. These results are in agreement with findings by Tang et al. (2025b) who find that learning basic spatial concepts in simple simulated settings, leads to spatial reasoning in real world images. In both datasets, we observe a regression in *LessThanThresholdHowMany* and in GRAID-BDD, a slight regression in the same question’s counterpart, *MoreThanThresholdHowMany*. Being that these two questions are some of the most common, we suspect that this is a symptom of overfitting.
+
+**RQ3** To evaluate whether GRAID can produce datasets that transfer to real-world spatial reasoning challenges of both indoor and outdoor scenes that extend far beyond driving scenes, we supervise fine-tune (SFT) four instruction tuned VLMs, Meta Llama 3.2 11B (Grattafiori et al., 2024), Gemma 3 4B (Team et al., 2025), Qwen2.5 VL 3B (Bai et al., 2025b), and Qwen3 VL 8B (Bai et al., 2025a), on GRAID-BDD (full training details are provided in Appendix A.3). For comparison purposes, we also perform the same SFT experiment using OpenSpaces, a dataset generated by the community implementation of SpatialVLM. We evaluate all SFT variants of all models on five established VQA benchmarks which contain a variety of indoor and outdoor scenes with varying spatial reasoning complexity: BLINK (Fu et al., 2024), NaturalBench (Li et al., 2024a), A-OKVQA (Schwenk et al., 2022), RealWorldQA (xAi, 2024), and VSR (Liu et al., 2023). Rather than using GRAID’s built in VLM evaluator which supports multiple prompting (zero, few-shot,
+
+{8}------------------------------------------------
+
+
+
+332 **Generalization Across Question Types: Training vs Held-out (using GRAID-BDD only)**
+
+333 BDD100k — Before vs After SFT (n=950, Δ overall +47.5 pp)
+
+334 Nulmages — Before vs After SFT (n=950, Δ overall +38.0 pp)
+
+335 Is an object left of another? — Before: +24.0 pp, After: +22.0 pp
+
+336 Is an object right of another? — Before: +42.0 pp, After: +60.0 pp
+
+337 How many objects? — Before: +54.0 pp, After: +80.0 pp
+
+338 Largest object by pixel area? — Before: +42.0 pp, After: +80.0 pp
+
+339 Are there more of A than type B? — Before: +54.0 pp, After: +80.0 pp
+
+340 Is the object centered? — Before: +42.0 pp, After: +80.0 pp
+
+341 Count greater than threshold? — Before: +20.0 pp, After: +20.0 pp
+
+342 Count less than threshold? — Before: +4.0 pp, After: +4.0 pp
+
+343 Counting (multiple-choice) — Before: +70.0 pp, After: +70.0 pp
+
+344 Most frequent object type? — Before: +42.0 pp, After: +76.0 pp
+
+345 Least frequent object type? — Before: +32.0 pp, After: +32.0 pp
+
+346 Rank top-k largest (by area) — Before: +14.0 pp, After: +14.0 pp
+
+347 Which object type appears more? — Before: +14.0 pp, After: +14.0 pp
+
+348 Location by quadrants — Before: +10.0 pp, After: +10.0 pp
+
+349 Leftmost object — Before: +70.0 pp, After: +70.0 pp
+
+350 Rightmost object — Before: +60.0 pp, After: +60.0 pp
+
+351 Is width greater than height? — Before: +80.0 pp, After: +80.0 pp
+
+352 Leftmost: width greater than height? — Before: +90.0 pp, After: +90.0 pp
+
+353 Rightmost: width greater than height? — Before: +80.0 pp, After: +80.0 pp
+
+354 ○ Before SFT ● After SFT
+
+355 Accuracy
+
+356 Training data (hatched)
+
+Figure 3: Generalization Across Question Types: Training vs Held-out (using GRAID-BDD only). Two bar charts show accuracy improvements for BDD100k and Nulmages datasets after SFT. The BDD100k chart shows improvements for most question types, while the Nulmages chart shows more varied results. The legend indicates 'Before SFT' (open circles) and 'After SFT' (filled circles). The x-axis represents accuracy from 0% to 100%.
+
+348 Figure 3: We fine-tune Llama 3.2 11B on only 6 questions from GRAID-BDD (hatched upper-left
+ 349 corner). Evaluations demonstrate a greater understanding across more difficult spatial reasoning
+ 350 questions in the GRAID-BDD validation set, generalization to a fifth topic not seen in training (Size
+ 351 & Aspect), and in all 19 question types never seen from GRAID-Nulmages.
+
+354 etc.) and decoding techniques (constrained, greedy, etc.), we instead follow others (Ogezi & Shi,
+ 355 2025) and use VLMEvalKit (Duan et al., 2024), to ensure consistency with reported baselines. We
+ 356 use VLMEvalKit’s exact match grading.
+
+357 The results in Table 4, 5, and 6 provide further evidence that data from GRAID is of high quality
+ 358 as it enables substantial performance gains on VQA benchmarks across various tasks. For example,
+ 359 with the Llama model, we observe a significant **32.5% improvement** on A-OKVQA and **15.94%
+ 360 overall improvement** on BLINK, with particularly impressive gains on core spatial reasoning tasks:
+ 361 **+41.13%** on Relative Depth, **+31.98%** on Visual Correspondence, and **+30.77%** on Spatial Rela-
+ 362 tions. We also see significant gains with the Gemma and older Qwen models, and lesser gains in
+ 363 Qwen 3. Despite our training data containing mostly cars and only 10 of 143 BLINK Spatial Rela-
+ 364 tions questions contain the word car, the results demonstrate that GRAID generated training data
+ 365 captures transferrable spatial reasoning concepts rather than dataset-specific nuances. The strong
+ 366 improvements across all benchmarks further support that the spatial reasoning primitives learned
+ 367 are not specific to driving scenes and indeed apply to all kinds of scenes both indoor and outdoor.
+ 368 Moreover, across all four backbones, models fine-tuned on GRAID data consistently outperform
+ 369 those fine-tuned on the SpatialVLM dataset and, unlike OpenSpaces SFT, far less frequently incur
+ 370 large regressions on non-spatial tasks. Finally, the absence of overfitting to strictly driving concepts
+ 371 is further validated by stable performance on NaturalBench—a benchmark designed with completely
+ 372 adversarial examples.
+
+###### 373 6 CONCLUSION
+
+374 In this work, we present GRAID, a simple framework for generating high-fidelity spatial reasoning
+ 375 VQA data from real images using only 2D detector outputs and qualitative geometry. By explicitly
+ 376 avoiding single-view 3D reconstruction and caption-driven synthesis, GRAID reduces cascading
+ 377 geometric errors and generative hallucinations while remaining easy to adopt with any object detec-
+ 378 tor. Instantiated with 22 templates on three large image corpora, GRAID yields one of the largest
+ 379 high-quality spatial VQA datasets to date—more than 8.5M VQA pairs with over 91.16% human-
+ 380 verified validity—significantly higher than prior works. Supervised fine-tuning on GRAID validates
+ 381 that models learn spatial concepts that *transfer* beyond our templates and datasets, with consistent
+ 382 gains on public evaluations. As the community improves other kinds of models such as segmenta-
+ 383 tion, gaze target and pose estimation, GRAID is already prepared to support those kinds of models
+ 384 with future templates following the SPARQ predicate and question template library. By open sourc-
+ 385 ing GRAID, we hope to further accelerate improvements in spatial reasoning so that higher-level
+ 386 concepts such as spatio-physical reasoning (Han et al., 2025) could be better researched.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- Shuai Bai, Yuxuan Cai, Ruizhe Chen, Keqin Chen, Xionghui Chen, Zesen Cheng, Lianghao Deng, Wei Ding, Chang Gao, Chunjiang Ge, Wenbin Ge, Zhifang Guo, Qidong Huang, Jie Huang, Fei Huang, Binyuan Hui, Shutong Jiang, Zhaohai Li, Mingsheng Li, Mei Li, Kaixin Li, Zicheng Lin, Junyang Lin, Xuejing Liu, Jiawei Liu, Chengleng Liu, Yang Liu, Dayiheng Liu, Shixuan Liu, Dunjie Lu, Ruilin Luo, Chenxu Lv, Rui Men, Lingchen Meng, Xuancheng Ren, Xingzhang Ren, Sibo Song, Yuchong Sun, Jun Tang, Jianhong Tu, Jianqiang Wan, Peng Wang, Pengfei Wang, Qiyue Wang, Yuxuan Wang, Tianbao Xie, Yiheng Xu, Haiyang Xu, Jin Xu, Zhibo Yang, Mingkun Yang, Jianxin Yang, An Yang, Bowen Yu, Fei Zhang, Hang Zhang, Xi Zhang, Bo Zheng, Humen Zhong, Jingren Zhou, Fan Zhou, Jing Zhou, Yuanzhi Zhu, and Ke Zhu. Qwen3-vl technical report, 2025a. URL .
+- Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, Humen Zhong, Yuanzhi Zhu, Mingkun Yang, Zhaohai Li, Jianqiang Wan, Pengfei Wang, Wei Ding, Zheren Fu, Yiheng Xu, Jiabo Ye, Xi Zhang, Tianbao Xie, Zesen Cheng, Hang Zhang, Zhibo Yang, Haiyang Xu, and Junyang Lin. Qwen2.5-vl technical report, 2025b. URL .
+- Holger Caesar, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, Qiang Xu, Anush Krishnan, Yu Pan, Giancarlo Baldan, and Oscar Beijbom. nuscenes: A multimodal dataset for autonomous driving. *arXiv preprint arXiv:1903.11027*, 2019.
+- Aditya Chattopadhyay, Anirban Sarkar, Prantik Howlader, and Vineeth N Balasubramanian. Grad-cam++: Generalized gradient-based visual explanations for deep convolutional networks. In *2018 IEEE Winter Conference on Applications of Computer Vision (WACV)*. IEEE, March 2018. doi: 10.1109/wacv.2018.00097. URL .
+- Boyuan Chen, Zhuo Xu, Sean Kirmani, Brian Ichter, Dorsa Sadigh, Leonidas Guibas, and Fei Xia. Spatialvlm: Endowing vision-language models with spatial reasoning capabilities. In *2024 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)*, pp. 14455–14465. IEEE, June 2024a. doi: 10.1109/cvpr52733.2024.01370. URL .
+- Lin Chen, Jinsong Li, Xiaoyi Dong, Pan Zhang, Yuhang Zang, Zehui Chen, Haodong Duan, Jiaqi Wang, Yu Qiao, Dahua Lin, et al. Are we on the right way for evaluating large vision-language models? *arXiv preprint arXiv:2403.20330*, 2024b.
+- Xinlei Chen, Hao Fang, Tsung-Yi Lin, Ramakrishna Vedantam, Saurabh Gupta, Piotr Dollar, and C. Lawrence Zitnick. Microsoft coco captions: Data collection and evaluation server, 2015. URL .
+- An-Chieh Cheng, Hongxu Yin, Yang Fu, Qiushan Guo, Ruihan Yang, Jan Kautz, Xiaolong Wang, and Sifei Liu. Spatialrgpt: grounded spatial reasoning in vision-language models. In *Proceedings of the 38th International Conference on Neural Information Processing Systems, NIPS '24*, Red Hook, NY, USA, 2025. Curran Associates Inc. ISBN 97988331314385.
+- Wei Chow, Jiageng Mao, Boyi Li, Daniel Seita, Vitor Guizilini, and Yue Wang. Physbench: Benchmarking and enhancing vision-language models for physical world understanding, 2025. URL .
+- Matt Deitke, Christopher Clark, Sangho Lee, Rohun Tripathi, Yue Yang, Jae Sung Park, Mohammadreza Salehi, Niklas Muennighoff, Kyle Lo, Luca Soldaini, Jiasen Lu, Taira Anderson, Erin Branson, Kiana Ehsani, Huong Ngo, YenSung Chen, Ajay Patel, Mark Yatskar, Chris Callison-Burch, Andrew Head, Rose Hendrix, Favyen Bastani, Eli VanderBilt, Nathan Lambert, Yvonne Chou, Arnavi Chheda, Jenna Sparks, Sam Skjonsberg, Michael Schmitz, Aaron Sarnat, Byron Bischoff, Pete Walsh, Chris Newell, Piper Wolters, Tannay Gupta, Kuo-Hao Zeng, Jon Borchartd, Dirk Groeneveld, Crystal Nam, Sophie Lebrecht, Caitlin Wittlif, Carissa Schoenick, Oscar Michel, Ranjay Krishna, Luca Weihs, Noah A. Smith, Hannahae Hajishirzi, Ross Girshick, Ali Farhadi, and Aniruddha Kembhavi. Molmo and pixmo: Open weights and open data for state-of-the-art vision-language models, 2024. URL .
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/4Nsx2kZkex.txt b/papers/4Nsx2kZkex.txt
new file mode 100644
index 0000000000000000000000000000000000000000..16dc313e15123ff8c0dca08eaaad9c8e4e239e71
--- /dev/null
+++ b/papers/4Nsx2kZkex.txt
@@ -0,0 +1,460 @@
+
+
+{0}------------------------------------------------
+
+# DIFFERENTIABLE VERIFICATION FOR SAFE REINFORCEMENT LEARNING IN VERIFIABLE CODE SYNTHESIS
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+We propose a novel framework for safe reinforcement learning (RL) in verifiable code synthesis where formal verification constraints are integrated in the form of differentiable parts as components in the policy optimization loop. Traditional approaches to verification are seen as a post-hoc filter or a black-box reward signal, and this often results in inefficiencies and mismatches between the generated code and safety guarantees. The proposed method adds a differentiable verification layer that mimics formal verification steps with the help of smoothing surrogate functions that allows for gradient-based improvement of both code generation and safety specifications. This layer calculates soft satisfaction scores for safety properties which are then ushered in consensus with rewards completing the tasks in order to calculate the RL policy.
+
+## 1 INTRODUCTION
+
+The synthesis of provably correct code via machine learning has become an important problem in the formal methods and artificial intelligence community. While reinforcement learning (RL) has shown promise in generating executable programs from specifications (Ren et al., 2020), existing approaches often treat formal verification as an external validator or post-processing step (Durieux & Monperrus, 2016). This decoupling results in inefficiencies as the policy is unaware of the verification constraints in generation, and spends lots of trial and error on generating compliant outputs. Moreover, the combinatorial nature of program spaces exacerbates the difficulty of aligning neural synthesizers with rigorous safety requirements (Galenson et al., 2014).
+
+Recent advances in differentiable formal methods (Zhu et al., 2019) and safe RL (Bastani et al., 2020) suggest potential synergies for addressing these limitations. However, prior attempts either simplify verification to propositional logic (Wu et al., 2024) or rely on heuristic rewards that poorly approximate formal guarantees (Ma et al., 2022). Neither approach is taking full advantage of the gradient-based optimization that is so intrinsic to modern RL, creating a disconnect between the continuous behavior training dynamics of neural policies and the discrete verification dynamics that they must meet.
+
+We bridge this gap by creating an end-to-end framework where verification constraints are approximated as differentiable functions as part of the RL loop. For instance, type constraints and memory safety properties are modeled using sigmoidal satisfiability scores, while control-flow invariants are encoded via attention mechanisms in a Transformer-based policy (Nijkamp et al., 2022). This differs fundamentally from shielding techniques (Mason, 2018) or post-hoc repair (Raviv et al., 2025), as the policy directly internalizes verification semantics during training.
+
+The contributions of the framework are three-fold. First, it establishes a mathematical formulation for integrating verification gradients and policy optimization, handling right-of-way and correctness while generality and specificity, using bilevel programming. Second, it introduces modular program synthesis techniques (Bhattacharyya et al., 2002) that decompose verification into composable subproblems, each with a differentiable approximation. Third, it shows empirically that this joint optimization does improve the functionality both for verifiability and for functional correctness over the sequential approaches can do, especially in the case of complex specs by means of loops recursion.
+
+{1}------------------------------------------------
+
+The rest of this paper is structured as follows: Section 2 overviews related work in RL-based synthesis and formal verification. Section 3 formalizes differentiable verification and its integration with safe RL. The architecture and training algorithms are described in Section 4. Section 5 tests the approach on benchmarks and Section 6 covers some broader implications and directions for future research.
+
+## 2 RELATED WORK
+
+Existing approaches can be roughly grouped into three paradigms – verification-agnostic synthesis, post-hoc verification, and constrained policy learning.
+
+### 2.1 VERIFICATION-AGNOSTIC SYNTHESIS METHODS
+
+Early neural program synthesis systems focused primarily on functional correctness, treating verification as an external concern (Ren et al., 2020). These approaches often employed sequence-to-sequence models trained on large code corpora, using execution-based rewards to guide RL optimization (Bunel et al., 2016).
+
+### 2.2 POST-HOC VERIFICATION APPROACHES
+
+a number of recent works have attempted to integrate this verification, by means of a verification through the application of formal methods after the code generation. The shield-based paradigm (Mason, 2018) modifies unsafe actions during execution, while repair-based methods (Raviv et al., 2025) use verification feedback to iteratively correct generated programs.
+
+### 2.3 CONSTRAINED POLICY LEARNING
+
+The alternative strategies include encoding safety constraints directly into the RL objective. Some methods employ constrained Markov decision processes (Achiam et al., 2017) with verification outcomes as constraint signals, while others use verification-guided reward shaping (Bastani et al., 2020).
+
+Differentiable approximations of formal methods have been a promising direction to bridge this gap. The concept of differentiable logics (Ślusarz et al., 2022) has been applied to neural network verification, while bilevel optimization frameworks (Wang et al., 2023) have shown success in combining learning with formal guarantees.
+
+Recent work on modular program synthesis (Pandey, 2025) demonstrates that differentiable components can enable end-to-end training of verifiable systems. Similarly, graph-based representations (Guo et al., 2020) have proven effective for capturing program semantics.
+
+The proposed method is distinctively different from previous ones in several aspects. Unlike verification-agnostic techniques, it explicitly models safety constraints both during generation.
+
+## 3 BACKGROUND: DIFFERENTIABLE VERIFICATION AND SAFE RL FOR CODE SYNTHESIS
+
+To create the theoretical underpinnings for our approach, we first create a formal definition of the key concept of differentiable verification and its integration with reinforcement learning for code synthesis.
+
+### 3.1 PROGRAM VERIFICATION AS CONSTRAINT SATISFACTION
+
+Formal verification of programs typically involves checking whether a given program $P$ satisfies a set of safety properties $\phi$ expressed in temporal or first-order logic. This can be represented as a constraint satisfaction problem:
+
+$$V(P, \phi) = \begin{cases} 1 & \text{if } P \models \phi \\ 0 & \text{otherwise} \end{cases} \quad (1)$$
+
+{2}------------------------------------------------
+
+Where $V$ is the verification oracle. Traditional verifiers like SMT solvers (Moura & Bjørner, 2008) implement $V$ as a discrete function, making direct integration with neural policy gradients impossible. Our work addresses this by constructing a differentiable approximation $\tilde{V}$ that preserves the semantic meaning of $V$ while enabling gradient flow.
+
+### 3.2 DIFFERENTIABLE RELAXATIONS OF FORMAL METHODS
+
+The main difficulty to solve is the approximation of discrete verification operations by continuous functions. For type safety verification we take sigmoidal relaxations of subtype checking:
+
+$$\tilde{V}_{type}(\tau_1, \tau_2) = \sigma(k \cdot S(\tau_1, \tau_2)) \quad (2)$$
+
+where $\sigma$ is the sigmoid function, $k$ a temperature parameter, and $S$ a similarity measure between types $\tau_1$ and $\tau_2$ . This formulation is extended to more complex properties such as memory safety: Properties are broken down into conjunctions of verifiable sub-properties:
+
+$$\tilde{V}_{mem}(P) = \prod_{i=1}^n \tilde{V}_{mem_i}(P) \quad (3)$$
+
+where each $\tilde{V}_{mem_i}$ corresponds to a differentiable check for specific memory safety violations (e.g., null pointer dereferences).
+
+### 3.3 SAFE REINFORCEMENT LEARNING FRAMEWORK
+
+The integration of differentiable verification with RL follows the constrained Markov decision process (CMDP) formulation (Altman, 2021), where safety constraints are derived from verification outcomes. The policy $\pi_\theta$ generates programs $P$ through a sequence of actions (code tokens), receiving two distinct rewards:
+
+$$R_{task}(P) \text{ (task completion)}$$
+
+$$R_{safe}(P) = \tilde{V}(P, \phi) \text{ (safety)}$$
+
+The combined reward function becomes:
+
+$$R(P) = \alpha \cdot R_{task}(P) + (1 - \alpha) \cdot R_{safe}(P) \quad (4)$$
+
+where $\alpha$ balances the two objectives. This differs from traditional safe RL approaches (Tessler et al., 2018) by using the differentiable $\tilde{V}$ instead of binary verification results, enabling smoother policy updates.
+
+### 3.4 HIERARCHICAL PROGRAM GENERATION
+
+Modern neural code synthesis employs hierarchical policies (Liu et al., 2023) that first generate abstract syntax tree (AST) skeletons and then instantiate concrete tokens. Our verification-aware approach simply applies differentiable checks at two levels:
+
+1. **Structural Verification:** Graph neural networks process the intermediate AST representation to verify control-flow properties using attention-based similarity metrics.
+2. **Token-Level Verification:** Each generated token is checked against contextual type constraints through the relaxed verification layer.
+
+This hierarchical verification mirrors the structure of formal program analysis tools (Cousot & Cousot, 1992) while maintaining differentiability throughout the generation process.
+
+The combination of all these techniques lays out the tile for end-to-end training for verifiably safe code synthesis models which we formalize and extend in the next section.
+
+## 4 END-TO-END SAFE RL WITH DIFFERENTIABLE VERIFICATION
+
+The proposed framework combines differentiable verification with hierarchical reinforcement learning to allow verification code synthesis. The system architecture includes four main components: (1)
+
+{3}------------------------------------------------
+
+a differentiable layer of verification that approximates formal verifications, (2) a hierarchical policy network for structured code generator, (3) a bilevel optimization setup for joint policy-verification training, and (4) a mechanism to inject hard constraints for ensuring the verification fidelity.
+
+### 4.1 INTEGRATING DIFFERENTIABLE VERIFICATION INTO RL FOR VERIFIABLE CODE SYNTHESIS
+
+The verification layer converts discrete safety checks into continuous operate, which maintains gradient flow. For a program $P$ and safety property $\phi$ , the verification score $\tilde{V}(P, \phi)$ is computed through feature functions $\{f_i\}$ that capture syntactic and semantic aspects of verification:
+
+$$\tilde{V}(P, \phi) = \sigma \left( \sum_{i=1}^k w_i \cdot f_i(P, \phi) \right) \quad (5)$$
+
+where $\sigma$ denotes the sigmoid function and $w_i$ are learnable weights. The feature functions encode various verification aspects:
+
+$$f_1(P, \phi) = -\|\text{TypeEnv}(P) - \text{ExpectedType}(\phi)\|_2 \text{ (type consistency)}$$
+
+$$f_2(P, \phi) = \text{Attention}(\text{PDG}(P), \phi) \text{ (control flow)}$$
+
+Here, *TypeEnv* extracts type annotations from $P$ , *PDG* creates the program dependence graph and *Attention* calculates alignment scores between program structures and safety constraints.
+
+### 4.2 END-TO-END GRADIENT FLOW MECHANISM IN VERIFICATION-AWARE RL
+
+The policy network $\pi_\theta$ receives gradients from both task completion and verification objectives. The composite reward signal is defined as:
+
+$$R(P) = \alpha \cdot R_{\text{task}}(P) + (1 - \alpha) \cdot \tilde{V}(P, \phi) \quad (6)$$
+
+where $\alpha$ balances the objectives. The gradient update rule becomes:
+
+$$\nabla_\theta J(\theta) = \mathbb{E}_{P \sim \pi_\theta} [\nabla_\theta \log \pi_\theta(P) \cdot R(P)] + \lambda \nabla_\theta \tilde{V}(P, \phi) \quad (7)$$
+
+The second term gives a direct gradient signal coming from verification constraints so that the policy can accommodate a change in generation according to safety violations before they completely appear in the reward.
+
+### 4.3 BILEVEL OPTIMIZATION FOR POLICY AND VERIFICATION SURROGATE
+
+The verification surrogate $\tilde{V}$ is jointly optimized with the policy through bilevel programming:
+
+$$\min_w \mathbb{E}_P [\text{KL}(V(P, \phi) \| \tilde{V}(P, \phi; w))] \quad (\text{inner loop}) \quad (8)$$
+
+$$\max_\theta \mathbb{E}_P [R(P; \theta, w)] \quad (\text{outer loop}) \quad (9)$$
+
+where $V$ are exact verification results from an SMT solver. The inner loop minimizes the Kullback-Leibler divergence between exact and approximate verification, while the outer loop optimizes policy parameters $\theta$ using the surrogate-augmented reward.
+
+### 4.4 HIERARCHICAL POLICY AND VERIFICATION-GUIDED AST GENERATION
+
+The policy network employs a two-level hierarchy:
+
+1. **High-level planner** $\pi_{\text{plan}}$ : Generates AST skeletons using graph attention over abstract program structures
+
+2. **Low-level filler** $\pi_{\text{fill}}$ : Instantiates concrete tokens with verification-guided sampling:
+
+$$\pi_{\text{fill}}(t | P_{ IR[Intermediate Representation]
+ end
+ subgraph Hierarchical_RL_Policy [Hierarchical RL Policy]
+ HLP[High-Level Planner] --> LLF[Low-Level Filter]
+ end
+ subgraph Differentiable_Verification [Differentiable Verification]
+ GNN[GNN for PDG] --> VL[Verification Layer]
+ end
+ EV[Exact Verifier]
+ TRG[Task Reward Generator]
+ RB[Reward Buffer]
+
+ IR --> HLP
+ LLF --> RB
+ VL --> RB
+ TRG --> RB
+ EV --> RB
+ IP --> EV
+ VL --> EV
+ GNN --> EV
+
+```
+
+Figure 1: End-to-End Safe Code Synthesis Pipeline with Differentiable Verification. The diagram illustrates the flow of information in the synthesis process. It starts with 'Input Processing' (Input Parser to Intermediate Representation), which feeds into 'Hierarchical RL Policy' (High-Level Planner to Low-Level Filter). The 'Low-Level Filter' outputs to 'Differentiable Verification' (GNN for PDG to Verification Layer). The 'Verification Layer' outputs to 'Reward Buffer'. The 'Reward Buffer' also receives input from 'Task Reward Generator' and 'Exact Verifier'. The 'Exact Verifier' receives input from 'Input Processing' and 'Differentiable Verification'.
+
+Figure 1: End-to-End Safe Code Synthesis Pipeline with Differentiable Verification. The framework unifies hierarchical policy generation with differentiable verification for provably safe code synthesis.
+
+The complete system (Figure 1) brings clarification and unification of these components into a framework for verifiable code generation. The hierarchical policy is interacting with the differentiable verification layer during the generation process while receiving task-oriented good rewards and safety gradients.
+
+## 5 EXPERIMENTAL EVALUATION
+
+To prove the effectiveness of our approach, we have extensive experiments in multiple dimensions: the verification accuracy, the quality of the codes and the efficiency of the training. The evaluation is conducted by comparing our differentiable verification framework with conventional methods based on reinforcement learning (RL) and hybrid approaches to verification.
+
+{5}------------------------------------------------
+
+Table 1: Comparative performance on benchmark tasks
+
+| Method | VSR (%) | FC (%) | VE (ms) | SQ |
+|-|-|-|-|-|
+| Pure RL | 38.2 | 72.4 | - | 0.68 |
+| RL + Post-hoc | 89.7 | 70.1 | 420 | 0.71 |
+| Constrained RL | 75.3 | 68.9 | 380 | 0.65 |
+| Syntax-Guided | 97.5 | 63.2 | 510 | 0.59 |
+| DV-RL (Ours) | 95.8 | 74.6 | 85 | 0.73 |
+
+### 5.1 EXPERIMENTAL SETUP
+
+**Benchmark Tasks:** We evaluate on three categories of programming problems from (Lu et al., 2021):
+
+- **Algorithmic Problems:** 50 tasks requiring implementation of standard algorithms (sorting, graph traversal) with safety properties like termination and memory bounds
+- **System Programming:** 30 tasks involving memory manipulation and concurrency with safety constraints (no data races, null pointer exceptions)
+- **Domain-Specific Languages:** 20 tasks for SQL query generation and tensor operations with type safety requirements
+
+**Baselines:** We compare against four state-of-the-art approaches:
+
+1. **Pure RL (PPO):** Standard policy optimization with execution-based rewards (Schulman et al., 2017)
+2. **RL + Post-hoc Verification:** PPO with external SMT verification filtering (Nelson et al., 2019)
+3. **Constrained RL:** Safety-constrained policy optimization (Junges et al., 2016)
+4. **Syntax-Guided Synthesis:** Traditional program synthesis with formal constraints (Alur et al., 2013)
+
+**Metrics:** Evaluation uses four quantitative measures:
+
+1. **Verification Success Rate (VSR):** Percentage of generated programs satisfying all safety properties
+2. **Functional Correctness (FC):** Pass rate on unit tests measuring intended behavior
+3. **Verification Efficiency (VE):** Time required per verification check during training
+4. **Synthesis Quality (SQ):** CodeBLEU score assessing code similarity to reference solutions (Ren et al., 2020)
+
+**Implementation Details:** Our implementation uses:
+
+- Policy Network: 12-layer Transformer with 768 hidden dimensions
+- Verification Surrogate: 3-layer GNN for structural checks, MLP for type constraints
+- Training: Adam optimizer, learning rate 3e-5, batch size 32
+- Reward Balance: $\alpha = 0.7$ (Equation 6), verified through ablation study
+
+### 5.2 COMPARATIVE RESULTS
+
+Table 1 presents the aggregate performance across all benchmark tasks. Our differentiable verification approach (DV-RL) is able to obtain superb verification rates with competitive functional correctness.
+
+Key observations:
+
+{6}------------------------------------------------
+
+Table 2: Ablation study (VSR/FC scores)
+
+| Configuration | VSR (%) | FC (%) |
+|-|-|-|
+| Full Model | 95.8 | 74.6 |
+| w/o Bilevel Optimization | 89.2 | 73.1 |
+| w/o Hierarchical Verification | 83.4 | 72.8 |
+| w/o Gradient Injection | 78.6 | 70.3 |
+| w/o Hard-Constraint Calibration | 91.5 | 72.4 |
+
+1. DV-RL improves verification success by 26.5% over pure RL and 6.1% over constrained RL
+2. The method maintains higher functional correctness than syntax-guided approaches (+11.4%)
+3. Verification efficiency improves 5 $\times$ compared to post-hoc methods due to differentiable approximations
+
+
+
+| Training Epochs | Memory Safety (%) | Termination Guarantees (%) | Total (%) |
+|-|-|-|-|
+| 0.0 | 32 | 41 | 73 |
+| 2.5 | 40 | 48 | 88 |
+| 5.0 | 50 | 58 | 108 |
+| 7.5 | 58 | 65 | 123 |
+| 10.0 | 65 | 70 | 135 |
+| 12.5 | 75 | 80 | 155 |
+| 15.0 | 85 | 90 | 175 |
+| 17.5 | 94 | 97 | 191 |
+
+Figure 2: A stacked area chart showing the proportion of generated code snippets satisfying different safety properties over training epochs. The x-axis is 'Training Epochs' from 0.0 to 17.5. The y-axis is 'Proportion of Generated Code Snippets (%)' from 0 to 175. The chart has two series: 'Memory Safety' (blue) and 'Termination Guarantees' (orange). The total proportion increases from approximately 75% at epoch 0 to about 185% at epoch 17.5. The blue area (Memory Safety) grows from about 32% to 94% of the total, while the orange area (Termination Guarantees) grows from about 41% to 97% of the total.
+
+Figure 2: Proportion of generated code snippets satisfying different safety properties over training epochs. Our method shows progressive improvement across all safety dimensions.
+
+Figure 2 shows in which gradations our method progressively improves compliance with safety in the training epochs. The area chart shows particularly strong gains in memory safety (from 32% to 94%) and termination guarantees (from 41% to 97%), demonstrating effective internalization of verification constraints.
+
+### 5.3 ABLATION STUDIES
+
+We analyze the contribution of key components through systematic ablations:
+
+Findings:
+
+1. Bilevel optimization contributes +6.6% VSR by maintaining verification fidelity
+2. Hierarchical verification provides +12.4% VSR for complex safety properties
+3. Gradient injection improves both VSR (+17.2%) and FC (+4.3%)
+
+{7}------------------------------------------------
+
+### 5.4 CASE STUDIES
+
+**Memory Safety Example:** For buffer manipulation tasks, our method learns to:
+
+1. Insert bounds checks (94% of cases)
+2. Choose safer array access patterns (reducing unsafe pointer arithmetic by 83%)
+3. Automatically initialize memory (98% compliance)
+
+**Type Safety Example:** In SQL generation, the model:
+
+1. Correctly handles type coercion in 92% of cases
+2. Detects schema mismatches on generation
+3. Adapts structure of query to prevent type errors
+
+
+
+Figure 3: Two scatter plots comparing 'Our Differentiable Verification Approach' (DV-RL) and 'Post-hoc Methods'. The left plot shows a strong positive correlation between Task Completion Score (x-axis, 0-100) and Verification Score (y-axis, -20 to 100) for DV-RL. The right plot shows a much weaker correlation for Post-hoc Methods, with Verification Scores (y-axis, -60 to 60) mostly clustered around zero across the range of Task Completion Scores.
+
+Figure 3: Relationship between task completion score and verification score of generated code snippets. Strong positive correlation indicates successful joint optimization.
+
+Figure 3 demonstrates the positive correlation ( $r=0.82$ ) between functional correctness and verification scores in our approach, indicating successful joint optimization of both objectives.
+
+### 5.5 COMPUTATIONAL EFFICIENCY
+
+The differentiable verification layer adds modest overhead:
+
+- **Training Time:** 15% increase over pure RL (vs. 300% for post-hoc)
+- **Memory Usage:** Additional 18% for verification surrogates
+- **Inference Speed:** 8ms per token (vs. 5ms for pure RL)
+
+The results show that our framework obtains much higher verification rates without sacrificing generality and efficiency of neural code synthesis.
+
+## 6 DISCUSSION AND FUTURE WORK
+
+### 6.1 LIMITATIONS OF THE PROPOSED METHOD
+
+While the differentiable verification framework has proven to work well empirically, there are several limitations inherent in the framework, and these are worth discussing. First, the quality of approximating of verification surrogates is fundamentally dependent on the choice of the feature representations. Although our bilevel optimization scheme helps align the surrogate with exact verification, certain complex properties involving quantifiers or nonlinear arithmetic may still exhibit approximation gaps (Leofante et al., 2018). This manifests particularly in programs requiring in-
+
+{8}------------------------------------------------
+
+tricate loop invariants, where the current feature set captures only 78% of verifiable cases in our benchmarks.
+
+Second, the hierarchical policy structure, while working well for modular verification, means that multi-step generation has compounding errors.
+
+Third, dependant on probability calls which are based on gradient-based optimization, the method is prone to reward-hacking in the verification-space.
+
+### 6.2 POTENTIAL APPLICATION SCENARIOS
+
+Outside of the types of benchmark tasks that are being assessed, the framework makes positive promises for several high impact applications where safety-critical code generation is of paramount concern. In autonomous systems programming, the differentiable verification could ensure temporal logic constraints for robot controllers (Farrell et al., 2018), with our method’s incremental verification being particularly suited for real-time code updates.
+
+When applied to smart contract generation, our approach detected 89% of reentrancy vulnerabilities during synthesis—a 3x improvement over post-hoc analysis tools (Qian et al., 2022). The graph based verification components fit very well with contract state machines verification.
+
+Emerging areas such as scientific computing with DSLs may benefit from the type safety mechanisms of the method.
+
+### 6.3 ETHICAL CONSIDERATIONS IN SAFE CODE SYNTHESIS
+
+The development of verifiable code generation systems raises significant and important ethical questions that should be carefully considered.
+
+The effect of training verification-aware models on the environment also needs to be paid attention to. Our framework’s bilevel optimization allows 1.8 times more energy per epoch than standard RL, on the other hand this is offset by lower costs during verification of deployments.
+
+Perhaps most importantly of all, the process of formalizing a safety property itself comes with implicit biases. These normative aspects highlight the need for diverse stakeholder involvement in property specification (Mökander et al., 2021).
+
+## 7 CONCLUSION
+
+The proposed framework puts a new paradigm in place for designing verifiable code synthesis by combining differentiable verification directly into the reinforcement learning loop.
+
+Our results demonstrate significant improvements over existing approaches, especially on complex scenarios that require the joint optimization of many verification objectives.
+
+The practical implications of the method go beyond academic bunkmarks and are a feasible way to moving towards deployable programming assistants for AI with provable safety guarantees.
+
+## 8 THE USE OF LLM
+
+We use LLM polish writing based on our original paper.
+
+## REFERENCES
+
+- J Achiam, D Held, A Tamar, et al. Constrained policy optimization. In *International Conference on Machine Learning*, 2017.
+- E Altman. Constrained markov decision processes. Technical report, taylorfrancis.com, 2021.
+- R Alur, R Bodik, G Juniwal, MMK Martin, et al. Syntax-guided synthesis. *Formal Methods in Computer-Aided Design*, 2013.
+
+{9}------------------------------------------------
+
+- 486 O Bastani, JP Inala, and A Solar-Lezama. Interpretable, verifiable, and robust reinforcement learning
+487 via program synthesis. *Unable to Determine Complete Venue*, 2020.
+- 488 SS Bhattacharyya, R Leupers, et al. Software synthesis and code generation for signal processing
+489 systems. *IEEE Transactions On Signal Processing*, 2002.
+- 490 R Bunel, A Desmaison, MP Kumar, PHS Torr, et al. Learning to superoptimize programs. Technical
+491 report, arXiv preprint arXiv:1611.01787, 2016.
+- 492
+- 493 P Cousot and R Cousot. Abstract interpretation frameworks. *Journal of logic and computation*,
+494 1992.
+- 495
+- 496 T Durieux and M Monperrus. Dynamoth: dynamic code synthesis for automatic program repair. In
+497 *Proceedings of the 11th International Workshop on Search-Based Software Engineering*, 2016.
+- 498
+- 499 M Farrell, M Luckcuck, and M Fisher. Robotics and integrated formal methods: Necessity meets
+500 opportunity. In *International Conference On Integrated Formal Methods*, 2018.
+- 501
+- 502 J Galenson, P Reames, R Bodik, B Hartmann, et al. Codehint: Dynamic and interactive synthesis
+503 of code snippets. In *Proceedings of the 36th International Conference on Software Engineering*,
+504 2014.
+- 505
+- 506 D Guo, S Ren, S Lu, Z Feng, D Tang, S Liu, et al. Graphcodebert: Pre-training code representations
+507 with data flow. Technical report, arXiv preprint arXiv:2009.08366, 2020.
+- 508
+- 509 S Junges, N Jansen, C Dehnert, U Topcu, et al. Safety-constrained reinforcement learning for
+510 mdps. In *International Conference on Tools and Algorithms for the Construction and Analysis of
+511 Systems*, 2016.
+- 512
+- 513 F Leofante, N Narodytska, L Pulina, et al. Automated verification of neural networks: Advances,
+514 challenges and perspectives. Technical report, arXiv preprint arXiv:1805.09938, 2018.
+- 515
+- 516 GT Liu, EP Hu, PJ Cheng, HY Lee, et al. Hierarchical programmatic reinforcement learning via
+517 learning to compose programs. In *Proceedings of the 40th International Conference on Machine
+518 Learning*, 2023.
+- 519
+- 520 S Lu, D Guo, S Ren, J Huang, A Svyatkovskiy, et al. Codexglue: A machine learning
+521 benchmark dataset for code understanding and generation. Technical report, arXiv preprint
+522 arXiv:2102.04664, 2021.
+- 523
+- 524 H Ma, C Liu, SE Li, S Zheng, et al. Joint synthesis of safety certificate and safe control policy using
+525 constrained reinforcement learning. In *Proceedings of Machine Learning Research*, 2022.
+- 526
+- 527 G Mason. Safe reinforcement learning using formally verified abstract policies. Technical report,
+528 etheses.whiterose.ac.uk, 2018.
+- 529
+- 530 L De Moura and N Bjørner. Z3: An efficient smt solver. In *International Conference on Tools and
+531 Algorithms for the Construction and Analysis of Systems*, 2008.
+- 532
+- 533 J Mökander, J Morley, M Taddeo, and L Floridi. Ethics-based auditing of automated decision-
+534 making systems: Nature, scope, and limitations. *Science and Engineering Ethics*, 2021.
+- 535
+- 536 L Nelson, J Bornholt, R Gu, A Baumann, et al. Scaling symbolic evaluation for automated ver-
+537 ification of systems code with serval. In *Proceedings of the 27th ACM SIGSOFT International
+538 Symposium on Software Testing and Analysis*, 2019.
+- 539
+- 540 E Nijkamp, B Pang, H Hayashi, L Tu, H Wang, et al. Codegen: An open large language model
+541 for code with multi-turn program synthesis. Technical report, arXiv preprint arXiv:2203.13474,
+542 2022.
+- 543
+- 544 K Pandey. Synthetic reasoning: Verifiable ai by modular program synthesis. *Wor Jour of Arti inte*
+545 *and Rob Res*, 2 (5), 01, 2025.
+- 546
+- 547 P Qian, Z Liu, Q He, B Huang, D Tian, et al. Smart contract vulnerability detection technique: A
+548 survey. Technical report, arXiv preprint arXiv:2209.05872, 2022.
+- 549
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/4hkMvkzai5.txt b/papers/4hkMvkzai5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c05c6a6f8ddc633c956e9eafdd59fbd91a1063be
--- /dev/null
+++ b/papers/4hkMvkzai5.txt
@@ -0,0 +1,330 @@
+
+
+{0}------------------------------------------------
+
+# DECODEC: RETHINKING AUDIO CODECS AS UNIVERSAL DISENTANGLED REPRESENTATION LEARNERS
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+Demo Page:
+
+## ABSTRACT
+
+Universal audio codecs learn entangled representations across audio types, whereas some specific codecs offer decoupled representations but are limited to speech. Real-world audio, however, often contains mixed speech and background sounds, and downstream tasks require selective access to these components. Therefore, we rethink the audio codec as **an universal disentangled representation learner** to enable controllable feature selection across different audio tasks. To this end, we introduce **DeCodec**, a novel neural codec that learns to decouple audio representations into orthogonal subspaces dedicated to speech and background sound, and within speech, representations are further decomposed into semantic and paralinguistic components. This hierarchical disentanglement allows flexible feature selection, making DeCodec an universal front-end for multiple audio applications. Technically, built upon a codec framework, DeCodec incorporates two key innovations: a **subspace orthogonal projection module** that factorizes the input into two decoupled orthogonal subspaces, and a **representation swap training procedure** that ensures these two subspaces are correlated to the speech and background sound, respectively. These allows parallel RVQs to quantize speech and background sound components independently. Furthermore, we employ semantic guidance to the speech RVQ to achieve semantic and paralinguistic decomposition. Experimental results show that DeCodec maintains advanced signal reconstruction while enabling new capabilities: superior speech enhancement and effective one-shot voice conversion on noisy speech via representation recombination, improved ASR robustness through clean semantic representations, and controllable background sound preservation/suppression in TTS.
+
+## 1 INTRODUCTION
+
+In real-world scenarios, audio often consists of both speech and background sounds (BGS). Speech conveys semantic content and speaker characteristics (Rubenstein et al., 2023), while background sounds provide environmental cues that enhance realism (Wang et al., 2023b). Different audio tasks prioritize these elements differently: speech enhancement (SE) and speech recognition (ASR) only focus on speech while suppressing background sound (Wang, 2025), whereas text-to-speech (TTS), voice conversion (VC), and virtual sound construction treat background sound as valuable for immersion (Yao et al., 2023). Thus, decoupling speech and background sound enables controllable information selection for diverse audio tasks, which is crucial step toward universal audio processing.
+
+Currently, speech-background sound decoupling primarily relies on speech separation (SS) (Wang & Chen, 2018), which aim to obtain separated signals in the time or time-frequency domain. In traditional cascaded pipelines, SS serves as an independent front-end to extract target signals (Wang et al., 2020; Weninger et al., 2015), after which downstream tasks perform secondary feature extraction (Natarajan et al., 2025; Yang & Chang, 2023).
+
+{1}------------------------------------------------
+
+
+
+Figure 1: Illustration of different feature extraction methods. (a) Cascading pipeline: Noise and Speech are processed through a 'Speech Separation' block to produce 'Speech Representation' and 'BGS Representation'. (b) Acoustic audio coding: Noise is processed through 'Audio Features' to produce a single 'Acoustic Representation'. (c) Audio classification coding: Noise is processed through 'Audio Features' to produce 'Sound Representation', 'Speech Representation', and 'Noise Representation'. (d) Speech decomposition coding: Speech is processed through 'Semantic Representation' and 'Residual Acoustic Representation' to produce 'Speech Representation' and 'BGS Representation'. (e) Proposed method: Noise is processed through 'Speech Representation' and 'BGS Representation' to produce 'Semantic Representation', 'Residual Acoustic Representation', and 'BGS Representation'.
+
+Figure 1: Illustration of different feature extraction methods: (a) cascading pipeline, (b) acoustic audio coding, (c) audio classification coding, (d) speech decomposition coding, and (e) the proposed method.
+
+This pipeline is illustrated in Figure 1 (a). However, this pipeline has three key limitations: 1) Back-end performance is highly dependent on front-end separation quality, leading to error propagation; 2) Front-end separation causes target signal distortion, requiring back-end fine-tuning on noisy data which increases training complexity; 3) In multi-task scenarios, deploying dedicated feature extractors per task substantially increases computational cost.
+
+Inspired by human auditory processing: Different regions of the secondary auditory cortex (A2) separately process speech and background sound (Mesgarani et al., 2014; Nourski & Brugge, 2011), allowing higher-order regulatory regions dynamically select task-relevant features based on cognitive demands. This perceptual mechanism motivates us to rethink audio codecs as universal disentangled representation learners that explicitly decouple speech and background sound in the representation domain to enable task-aware control over these features. This proposal offers three core advantages: 1) Preservation of original signal integrity without front-end separation distortion; 2) A unified representation domain enabling parallel multi-task processing; 3) Computational efficiency via feature selection rather than differential extraction.
+
+However, existing neural audio codecs have not yet achieved decoupling of speech and background sound in the representation domain. In the field of universal audio coding, mainstream acoustic codecs such as Encodec (Défossez et al., 2022) and DAC (Kumar et al., 2024) can maintain high audio reconstruction fidelity, but their design is entirely based on signal-level discrete coding and does not explicitly distinguish between speech and background sound, as shown in Figure 1 (b). Lately, UniCodec (Jiang et al., 2025) innovatively coding different types of audio *i.e.* speech, music and sound through a partitioned domain-adaptive codebook, but it classifies noisy speech as ‘sound’ type and encodes the overall information in a single code, as shown in Figure 1 (c). Therefore, it can only achieve rough audio type classification rather than genuine representation decoupling, and thus cannot actually enable the selection of audio components to different processing tasks.
+
+Compared to universal audio codecs, research on speech representation involves some work on decomposing components. FACodec (Ju et al., 2024) decompose speech into content, pitch, timbre, and acoustic residual. However, there is significant information leakage between these components. Differently, SpeechTokenizer (Zhang et al., 2023), Mimicodec (Défossez et al., 2024), and DualCodec (Li et al., 2025) simply disentangles speech information into semantic and residual acoustic aspects, as shown in Figure 1 (d). However, the performance of these methods in real noisy environments remains limited. Synergistic optimization with background sound decoupling mechanisms offers the potential to enhance their performance in real applications.
+
+Following the concept of universal disentangled representations, this study proposes DeCodec, a novel neural codec that simultaneously decouples speech and background sound in the representation domain and collaboratively decouples semantic and residual paralinguistic information within speech, as shown in Figure 1 (e), enabling controllable representation selection for diverse audio tasks. Corresponding to auditory perception mechanisms, to simulate the regional processing of speech and background sound by the A2, we proposes
+
+{2}------------------------------------------------
+
+a subspace orthogonal projection (SOP) module, projecting the primary audio embeddings into two orthogonal subspaces to achieve decoupled representations. Inspired by neural developmental feedback mechanisms (Zhang, 2019), a representation swap training (RST) procedure is proposed to motivate the above two orthogonal subspaces to correspond to the speech and background sound subspaces, respectively. Additionally, during the speech representation quantizing, semantic guidance (SG) is introduced to further guide hierarchical quantizing of semantic and residual paralinguistic information. The above information can ultimately be decoded into time-domain signal via the decoder. The key contributions of this paper are summarized as follows:
+
+- By proposing SOP module and combining it with the proposed RST procedure, the DeCodec achieved explicit decoupling representation of speech and background sound in the feature domain for the first time, realizing an universal disentanglement codec.
+- By adopting SG technology and employing a collaborative optimization strategy with speech-background sound decoupling, the DeCodec have enhanced the robustness of semantic and residual paralinguistic representations against background sound interference.
+
+Experimental results show that our DeCodec achieves, for the first time, an codec model that integrates audio reconstruction, SE, background sound extraction, one-shot VC, and can provide noise-robust feature-level controllable support for downstream audio tasks, such as ASR and zero-shot TTS.
+
+## 2 RELATED WORK
+
+**Audio codecs:** Audio codecs were originally used for signal compression (Pan, 1995), and are now widely used as tokenizers for large model approaches due to discretizing and compressing audio features effectively (Défossez et al., 2022; Kumar et al., 2024). In 2021 Zeghidour et al. (2021) proposed SoundStream, which is a novel end-to-end neural audio codec that can efficiently compress speech, music and general audio. It relies on a model architecture composed by a fully convolutional encoder-decoder network and an inserted residual vector quantizer, which forms the basic architecture of the neural codecs. EnCodec (Défossez et al., 2022) introduced a multiscale spectrogram adversary and a loss balancer to mitigate artifacts and enhance sample quality. Concurrently, HiFi-Codec (Yang et al., 2023) employed group-residual vector quantization (GRVQ) to improve reconstruction fidelity while reducing codebook usage. DAC (Kumar et al., 2024) integrates high-fidelity audio generation with image-inspired vector quantization, enabling universal compression of diverse audio domains—such as speech, music, and environmental sounds—within a single model, thus broadening its applicability to generative audio tasks. Different from above, Jiang et al. (2025) proposed UniCodec, a single-codebook model for multi-domain audio (speech, music, sound). It employs a partitioned domain-adaptive codebook and domain-specific Mixture-of-Experts to capture distinct acoustic characteristics. However, its single-codebook design fails to disentangle mixed audio—such as speech with background sound—which is categorized broadly as ‘sound’, leading to degraded performance in downstream tasks involving real-world recordings.
+
+**Speech Tokenizer:** Currently, research on speech representation is more extensive than in the general audio field. Speech comprises both semantic and paralinguistic information, with different tasks focusing on different aspects (Xu et al., 2023). In response to these diverse requirements, two main categories of speech representation methods have emerged: implicit representations based on self-supervised learning and explicit decoupling methods based on neural codecs. For implicit representation methods in self-supervised learning, models are typically forced to learn high-level representations with linguistic discriminative power through large-scale unsupervised pre-training (Hsu et al., 2021; Baevski et al., 2020; Chen et al., 2022). Although effective for speech recognition, these models entangle semantic and acoustic information in their representations, making them inferior apply to generation tasks (Tsai et al., 2022; Zhang et al., 2023), which require precise control over acoustic properties. For explicit decoupling methods, codec model is typically used as the basic framework, which achieves decoupling of speech components through the design of structured quantizers and supervision strategies (Huang et al., 2023; Du et al., 2024; Liu
+
+{3}------------------------------------------------
+
+et al., 2024). Among them, FACodec (Ju et al., 2024) uses gradient reversal layers to decompose speech into four components: content, pitch, timbre, and acoustic residual. However, there is significant information leakage between the components. In contrast, SpeechTokenizer (Zhang et al., 2023), Mimicodec (Défossez et al., 2024), and DualCodec (Li et al., 2025) adopt a simpler semantic content-acoustic residual decomposition approach. Among these, SpeechTokenizer and Mimicodec utilize HuBERT and WavLM for semantic supervision, respectively, while DualCodec employs a self-supervised strategy. All of them effectively decomposed the speech components. However, these methods are currently only applicable to clean speech input but lack robustness in noise scenarios, limiting their application in actual generation tasks.
+
+## 3 DECODEC
+
+### 3.1 SIGNAL MODEL AND PROBLEM FORMULATION
+
+Background sound is an additive interference to speech in the time domain, so the mixed signal can be written as
+
+$$\mathbf{y} = \mathbf{s} + \mathbf{n}, \quad (1)$$
+
+where $\mathbf{y}$ denotes the vector forms of mixed signal composed of clean speech $\mathbf{s}$ and background sound $\mathbf{n}$ . Based on the differences in the physical generation mechanisms, it can be assumed that speech signal and background sound signal are mutually independent (Zheng et al., 2023). Given this, an audio feature extractor can theoretically transform the mixed signal into an embedded space and provide decoupled representations of speech and background sound.
+
+### 3.2 SYSTEM OVERVIEW
+
+
+
+Figure 2: The overview of the proposed DeCodec. The diagram shows the signal flow from input y to output y-hat. The input y is split into two encoders (Enc) to produce Yl and Yr. Yl and Yr are processed by a SOP module (yellow box) containing P\_l and P\_r blocks. P\_l outputs S\_l and P\_r outputs N\_r. These are then processed by parallel RVQs: SRVQ for speech (S\_l) and BRVQ for background sound (N\_r). The SRVQ outputs Zc and Zr, which are supervised by HuBERT. The BRVQ outputs Zn. The outputs Zc, Zr, and Zn are summed and then processed by a decoder (Dec) to produce the final output y-hat. The legend indicates SOP (yellow), RST (green), and SG (red) modules. Training paths are shown with dashed blue arrows, and inference paths with dashed black arrows.
+
+Figure 2: The overview of the proposed DeCodec.
+
+The proposed DeCodec consists of four main components: an encoder, a SOP module, a parallel residual vector quantizers (RVQs) with SG, and a decoder, as shown in Figure 2. The encoder is used to preliminarily convert the time-domain signal $\mathbf{y}$ into an embedded representation $\mathbf{Y}$ based on the physical properties of the audio. The SOP module simulates the left and right hemispheres of the A2 in the brain, using subspace orthogonal projection to enable each hemisphere to process distinct information, *i.e.* $\mathbf{S}$ and $\mathbf{N}$ , within the audio. The parallel RVQs simulates the specific processing in A2, where SRVQ simulates the processing of speech information by the left hemisphere, yielding the speech quantization vector $\mathbf{Z}_S$ ; while NRVQ simulates the processing of background sound by the right hemisphere, yielding the background sound quantization vector $\mathbf{Z}_N$ . Furthermore, for speech information, the SG in the SRVQ can decompose it into a semantic quantization vector $\mathbf{Z}_C$ and a residual paralinguistic quantization vector $\mathbf{Z}_r$ which contain paralinguistic information. The decoder corresponds to the motor cortex, decoding the above quantization vectors back into time-domain audio $\hat{\mathbf{y}}$ .
+
+{4}------------------------------------------------
+
+### 3.3 ENCODER AND DECODER
+
+The convolutional-based encoder-decoder network from DAC (Kumar et al., 2024) is adopted in the proposed DeCodec. In particular, the encoder consists of a 1D convolution with channel of $C$ and kernel size of $K$ and $M$ encoder blocks adopted in DAC, which performs temporal downscaling with a chosen striding factor. Notably, we provide both causal/non-causal versions of the encoder. For the causal version, two-layer LSTM is employed after the encoder blocks for time sequence modeling, while for the non-causal version, two-layer BiLSTM is adopted instead. Finally, there is a final 1D convolution layer with a kernel size of $K$ and an output channel count of $D$ .
+
+The decoder mirrors the encoder, using transposed convolutions instead of strided convolutions, and with the strides in reverse order as in the encoder, outputting the final reconstructed audio.
+
+### 3.4 SOP MODULE
+
+Inspired by the cerebral cortical processing of speech and background sound in separate regions, we propose that the primary representation $\mathbf{Y}$ of the input mixture $\mathbf{y}$ can also be further decomposed into speech representation $\mathbf{S}$ and background sound representation $\mathbf{N}$ . Formally, for every $\mathbf{Y} \in \mathcal{V}_Y$ , there exists $\mathbf{S} \in \mathcal{V}_S$ and $\mathbf{N} \in \mathcal{V}_N$ , such that
+
+$$\mathbf{Y} = \mathbf{S} + \mathbf{N}, \quad (2)$$
+
+where $\mathcal{V}_Y$ is the space for mixture embeddings, and $\mathcal{V}_S$ and $\mathcal{V}_N$ are subspaces representing speech and background sound, respectively. This decomposition satisfies:
+
+$$\mathcal{V}_Y = \text{span}(\mathcal{V}_S \cup \mathcal{V}_N), \quad \mathcal{V}_S \cap \mathcal{V}_N = \mathbf{0}. \quad (3)$$
+
+equivalently, $\mathcal{V}_Y = \mathcal{V}_S \oplus \mathcal{V}_N$ . Let $\mathbf{P}_S : \mathcal{V}_Y \rightarrow \mathcal{V}_S$ and $\mathbf{P}_N : \mathcal{V}_Y \rightarrow \mathcal{V}_N$ be orthogonal projection operators. The embedding $\mathbf{Y}$ admits the orthogonal decomposition:
+
+$$\mathbf{Y} = \mathbf{S} + \mathbf{N} = \mathbf{P}_S \mathbf{Y} + \mathbf{P}_N \mathbf{Y}, \quad (4)$$
+
+where $\mathbf{S} \perp \mathbf{N}$ (i.e., $\langle \mathbf{S}, \mathbf{N} \rangle = 0$ ), and the projectors satisfy $\mathbf{P}_S + \mathbf{P}_N = \mathbf{I}$ with $\mathbf{P}_S \mathbf{P}_N^T = \mathbf{0}$ .
+
+Therefore, we introduce two trainable linear projection layers followed by the encoder to model $\mathbf{P}_S$ and $\mathbf{P}_N$ , respectively, as shown in the yellow box of Figure 2. To enforce orthogonality between $\mathbf{P}_S$ and $\mathbf{P}_N$ , we impose the following constraint on their outputs $\mathbf{S}$ and $\mathbf{N}$ :
+
+$$\mathcal{L}_\perp = \| \langle \mathbf{S}, \mathbf{N} \rangle - \mathbf{0} \|_2, \quad (5)$$
+
+where $\|\cdot\|_2$ is the $L^2$ norm, and $\mathcal{L}_\perp$ is minimized to ensure that $\mathbf{S}$ and $\mathbf{N}$ are mutually orthogonal. From this orthogonality constraint $\mathcal{L}_\perp$ and Equation (4), the following relationship can be derived:
+
+$$\mathbf{S} \mathbf{N}^T = (\mathbf{P}_S \mathbf{Y})(\mathbf{P}_N \mathbf{Y})^T = \mathbf{P}_S \mathbf{Y} \mathbf{Y}^T \mathbf{P}_N^T. \quad (6)$$
+
+When the covariance matrix $\mathbf{Y} \mathbf{Y}^T$ satisfies the angular matrix, indicating that the encoder extracts sufficiently diverse embeddings with different feature channels being mutually independent, we can obtain $\mathbf{P}_S \mathbf{P}_N^T = \mathbf{0}$ , which demonstrates that $\mathbf{P}_S$ and $\mathbf{P}_N$ are indeed orthogonal projection matrices. And thus our SOP methods ensures the subspaces spanned by $\mathbf{P}_S$ and $\mathbf{P}_N$ to be disentangled, thereby promoting a complete decoupling between speech and background sound representations.
+
+### 3.5 PARALLEL RVQS WITH SG
+
+After passing through the SOP module, the mixed embeddings $\mathbf{Y}$ is decoupled into two continuous representations $\mathbf{S}$ and $\mathbf{N}$ . To discrete the above representations into corresponding quantized vector, we involved parallel RVQs for DeCodec, where SRVQ and NRVQ are used to quantize $\mathbf{S}$ and $\mathbf{N}$ , respectively. Specifically, both SRVQ and NRVQ use residual vector quantization (Vasuki & Vanathi, 2006). The discrete speech representation can be obtained by $\mathbf{Z}_s = \sum_{k=1}^{K_s} \mathbf{Q}_s^k$ where $K_s$ donates number of vector quantizers, $\mathbf{Q}_s^k$ is the quantized speech vector obtained by the $k$ -th quantizer. Likewise, the discrete background sound representation can be expressed as $\mathbf{Z}_n = \sum_{k=1}^{K_n} \mathbf{Q}_n^k$ .
+
+{5}------------------------------------------------
+
+Moreover, for SRVQ, as semantic guidance has been proven effective, we have also applied base 960h Hubert-L91 as semantic guidance in the first layer of the SRVQ quantizer, as shown in the red box of Figure 2. The SG is expected to further help SRVQ decompose speech into semantic representation $\mathbf{Zc} = \mathbf{Qs}^1$ and residual paralinguistic representation $\mathbf{Zr} = \sum_{k=2}^{K_r} \mathbf{Qs}^k$ . And the SG constraint (Zhang et al., 2023) can be expressed as:
+
+$$\mathcal{L}_{\text{SG}} = \|\log \sigma(\cos(\mathbf{WZc}, \mathcal{H}))\|_1, \quad (7)$$
+
+where $\mathbf{Zc}$ and $\mathcal{H}$ denote the quantized output of the first layer of SRVQ and Hubert-L9 representation of the corresponding clean speech $\mathbf{s}$ , respectively. $\mathbf{W}$ denotes the projection matrix that projects $\mathbf{Zc}$ onto the same feature dimension as $\mathcal{H}$ . $\cos(\cdot)$ represents cosine similarity along the frame dimension and $\sigma(\cdot)$ denotes sigmoid activation. $\|\cdot\|_1$ denotes the $L^1$ norm of the feature dimension.
+
+### 3.6 RST PROCEDURE
+
+Inspired by neural developmental feedback mechanisms, we involved a novel representation swap training procedure that enforces disentanglement between speech and background sound and guides $\mathbf{S}$ and $\mathbf{N}$ to be speech representations and background sound representations, respectively. The procedure is shown in Figure 2. Given two uncorrelated mixed speech samples $\mathbf{y}_{11} = \mathbf{s}_1 + \mathbf{n}_1$ and $\mathbf{y}_{22} = \mathbf{s}_2 + \mathbf{n}_2$ , the RST proceeds as follows:
+
+First, the encoder processes both samples to extract corresponding continuous embeddings $\mathbf{Y}_{11}, \mathbf{Y}_{22}$ , respectively. These embeddings are then decoupled into orthogonal subspaces by the SOP module and we only take the speech representation $\mathbf{S}_1$ of $\mathbf{Y}_{11}$ and the background sound representation $\mathbf{N}_2$ of $\mathbf{Y}_{22}$ . Then the quantized vector of $\mathbf{S}_1$ and $\mathbf{N}_2$ are obtained by SRVQ and NRWQ of the parallel RVQ module, respectively. Finally, the reconstructed hybrid signal $\hat{\mathbf{y}}_{12}$ is obtained by the decoder. The entire process can be summarized as follows:
+
+$$\mathbf{Y}_{11} = \text{Enc}(\mathbf{y}_{11}), \mathbf{Y}_{22} = \text{Enc}(\mathbf{y}_{22}). \quad (8)$$
+
+$$\mathbf{S}_1 = \mathbf{P}_S \mathbf{Y}_{11}, \mathbf{N}_2 = \mathbf{P}_N \mathbf{Y}_{22}. \quad (9)$$
+
+$$\mathbf{Zs}_1 = \text{SRVQ}(\mathbf{S}_1), \mathbf{Zn}_2 = \text{NRVQ}(\mathbf{N}_2). \quad (10)$$
+
+$$\hat{\mathbf{y}}_{12} = \text{Dec}(\mathbf{Zs}_1 + \mathbf{Zn}_2) \approx \mathbf{s}_1 + \mathbf{n}_2. \quad (11)$$
+
+Correspondingly, we designed the RST loss to guide the proposed system to achieve decoupling of speech and background sound representation. The RST loss is given as:
+
+$$\mathcal{L}_{\text{RST}} = \|\text{Dec}(\mathbf{Zs}_1 + \mathbf{Zn}_2) - (\mathbf{s}_1 + \mathbf{n}_2)\|_1. \quad (12)$$
+
+According to Section 3.4, the orthogonal constraint $\mathcal{L}_\perp$ ensures that the subspaces remain statistically independent throughout the training process. Here, we theoretically prove that the proposed $\mathcal{L}_{\text{RST}}$ can further force $\mathbf{Zs} \in \mathcal{V}_S$ to be speech representations only, while $\mathbf{Zn} \in \mathcal{V}_N$ to be background sound representations only.
+
+Given $\mathbf{Zs}_1 + \mathbf{Zn}_1$ and $\mathbf{Zs}_1 + \mathbf{Zn}_2$ , SOP Loss minimization requires:
+
+$$\text{Dec}(\mathbf{Zs}_1 + \mathbf{Zn}_1) = \hat{\mathbf{s}}_1 + \hat{\mathbf{n}}_1 \approx \mathbf{s}_1 + \mathbf{n}_1, \quad (13)$$
+
+$$\text{Dec}(\mathbf{Zs}_1 + \mathbf{Zn}_2) = \hat{\mathbf{s}}_1 + \hat{\mathbf{n}}_2 \approx \mathbf{s}_1 + \mathbf{n}_2. \quad (14)$$
+
+Subtracting Equation (13) from Equation (14) can obtain:
+
+$$\text{Dec}(\mathbf{Zs}_1 + \mathbf{Zn}_2) - \text{Dec}(\mathbf{Zs}_1 + \mathbf{Zn}_1) \approx \mathbf{n}_2 - \mathbf{n}_1. \quad (15)$$
+
+By the mean value theorem for vector functions (Russell, 2020), there exists $\xi$ between $\mathbf{Zn}_1$ and $\mathbf{Zn}_2$ such that:
+
+$$\frac{\partial \text{Dec}}{\partial \mathbf{Zn}} \Big|_{\xi} (\mathbf{Zn}_2 - \mathbf{Zn}_1) \approx \mathbf{n}_2 - \mathbf{n}_1. \quad (16)$$
+
+The left side depends on $\mathbf{Zs}_1$ through $\xi$ , while the right side is independent of $\mathbf{Zs}_1$ . Therefore, for consistency $\forall \mathbf{n}_1, \mathbf{n}_2$ , $\mathbf{Zs}_1$ must be independent of $\mathbf{n}_1$ , which means that the quantized speech vector $\mathbf{Zs}$ does not contain background sound information. The same can be proven for the quantized background sound vector $\mathbf{Zn}$ , which does not contain speech information.
+
+1
+
+{6}------------------------------------------------
+
+## 4 EXPERIMENTS
+
+### 4.1 EXPERIMENTAL SETUP
+
+**Datasets:** For training, multilingual datasets were used at 16kHz sample rate, including Aishell3 (Shi et al., 2020), train-clean-100&360 of LibriTTS (Zen et al., 2019), VCTK (Veaux et al., 2013), WSJ1 and WSJ0 (Corpus, 1992). Around 700h of speech data were randomly selected and mixed with randomly selected background sound from ESC-50 (Piczak, 2015) and DNS-Noise (Reddy et al., 2020) at random signal-to-noise ratio (SNR) ranging from -5 to 40 dB to form the training set. For evaluation, the LibriSpeech Test-clean set served as the clean speech test set. A noisy speech test set was created by mixing Test-clean with DNS-Noise at SNRs from -5 to 20 dB. 300 clips were randomly selected from each set. Besides, to compare with the SOTA SE methods, the public 2nd DNS Challenge (Reddy et al., 2020) blind test sets is used for speech enhancement evaluation.
+
+**Evaluation:** Signal-to-distortion rate (SDR) (Vincent et al., 2007), Mel distance and word error rate (WER) based on Whisper ASR model (Radford et al., 2023) are employed for signal reconstruction evaluation. Non-intrusive p.835 DNSMOS scores (Reddy et al., 2021) are used to evaluate the SE performance. WER and speaker similarity (SIM) calculated by WavLM-TDNN (Chen et al., 2022) are adopted for evaluating one-shot VC.
+
+**Baseline models:** For reconstruction, Four strong codec baselines are adopted, namely EnCodec (Défossez et al., 2022)2, HiFi-Codec (Yang et al., 2023)3, DAC (Kumar et al., 2024)4, and SpeechTokenizer (Zhang et al., 2023)5. All these models are inferred from official checkpoints. For SE, Three types of advancing SE baselines are adopted namely InterSubNet (Chen et al., 2023), StoRM (Lemercier et al., 2023)6 and SELM (Wang et al., 2024). The results of these models on the DNS Challenge testset are taken from the paper (Wang et al., 2024). For one-shot VC, the advanced SpeechTokenizer is used as baseline. Further, to compare the cascaded pipeline with the proposed DeCodec, the advanced StoRM is selected as SpeechTokenizer’s denoising front-end, denoted as StoRM-SpeechTokenizer.
+
+### 4.2 EXPERIMENTAL RESULTS
+
+We conduct two sets of experiments to thoroughly evaluate the performance of the proposed DeCodec. The performance of audio processing tasks, which DeCodec can achieve on its own, are shown in this section. Further, the performance of DeCodec as a feature extractor for downstream ASR and TTS models are shown in Appendix F and G, respectively.
+
+#### 4.2.1 CODEC
+
+Table 1: Reconstruction performance of codec models.
+
+| Codec Models | kpbs | Causal | Clean | | | Noisy | |
+|-|-|-|-|-|-|-|-|
+| | | | SDR↑ | Mel Distance↓ | WER↓ | SDR↑ | Mel Distance↓ |
+| EnCodec | 6.0 | ✓ | 6.86 | 1.03 | 2.28 | 4.88 | 0.84 |
+| HiFi-Codec | 2.0 | ✓ | 4.85 | 0.75 | 2.61 | -0.66 | 0.90 |
+| DAC | 4.5 | ✓ | 0.60 | 0.65 | 2.21 | -1.62 | 0.69 |
+| SpeechTokenizer | 4.0 | ✗ | 3.41 | 0.76 | 1.82 | -0.50 | 0.90 |
+| DeCodec-c | 4.0+4.0 | ✓ | 6.79 | 0.88 | 1.98 | 4.62 | 0.82 |
+| DeCodec | 4.0+4.0 | ✗ | 7.61 | 0.89 | 1.92 | 5.21 | 0.81 |
+
+Table 1 demonstrates the audio reconstruction performance of the DeCodec and baseline codec models. As shown in the Table 1, regardless of whether it is clean or noisy speech, the proposed DeCodec achieves the highest SDR for speech reconstruction, indicating the lowest temporal distortion. Additionally, the causal DeCodec achieves an SDR comparable to that of the EnCodec. These results demonstrate that the proposed system can ensure the
+
+2
+
+3
+
+4
+
+5
+
+6
+
+{7}------------------------------------------------
+
+performance of complete signal reconstruction while decoupling representations. From the perspective of semantic preservation, the WER of the reconstructed speech by the proposed DeCodec is only slightly worse than that of SpeechTokenizer but significantly better than that of the baseline codes trained without semantic guidance, further confirming the role of semantic guidance in reconstructing semantic information. Additionally, in terms of mel distance, while the proposed algorithm does not show a significant advantage in clean speech, it outperforms SpeechTokenizer and other baselines in noisy scenarios, with performance second only to DAC, demonstrating the advantage of the DeCodec over other codecs in reconstructing background sound. Overall, the proposed DeCodec performs comparably to existing codec models in reconstruction while possessing its own distinctive advantages.
+
+#### 4.2.2 SE
+
+Speech enhancement for noisy speech can be easily achieved by decoding the recombined representations of the DeCodec, which replace the background sound representations of the input noisy speech with the background sound representations of a blank audio with the same length. Table 2 presents the speech enhancement performance of the proposed DeCodec compared with different types of SE baselines. As shown in the Table 2, the proposed DeCodec achieved the highest DNSMOS scores in both simulation and real recording test sets, demonstrating that it is effective in decoupling speech from background sound and providing a new approach for speech enhancement. Specifically, as the BAK scores show, the proposed DeCodec outperforms various existing SE models in background sound suppression, indicating that decoupling in the representation domain can sufficiently control the retention or removal of background sound. The speech signal distortion of the proposed DeCodec, as shown by the SIG score, is slightly inferior to SELM in real recordings, possibly because the proposed method, compared to a single SE model, includes discretization quantizers, resulting in slightly inferior speech signal reconstruction compared to SE models that contain complete continuous speech information. Additionally, the proposed causal DeCodec model achieves performance comparable to the non-causal SELM model and significantly outperforms the causal Inter-SubNet model. This suggests that the proposed speech-background sound representation decoupling method holds significant implications for the design of future causal speech enhancement models.
+
+Table 2: The DNSMOS scores on different SE models on the DNS Challenge test set.
+
+| SE Models | Model Type | Causal | Without Reverb | | | Real Recordings | | |
+|-|-|-|-|-|-|-|-|-|
+| | | | OVL↑ | SIG↑ | BAK↑ | OVL↑ | SIG↑ | BAK↑ |
+| Noisy | - | - | 2.48 | 3.39 | 2.62 | 2.26 | 3.05 | 2.51 |
+| Inter-SubNet | Discriminative | ✓ | 3.10 | 3.46 | 3.82 | 2.81 | 3.26 | 3.57 |
+| StoRM | Diffusion | × | 3.21 | 3.51 | 3.94 | 2.94 | 3.41 | 3.38 |
+| SELM | Transformer | × | 3.26 | 3.51 | 4.10 | 3.12 | 3.59 | 3.44 |
+| DeCodec-c | Codec | ✓ | 3.31 | 3.58 | 4.09 | 2.99 | 3.31 | 3.94 |
+| DeCodec | Codec | × | 3.39 | 3.64 | 4.13 | 3.13 | 3.45 | 3.99 |
+
+#### 4.2.3 ONE-SHOT VC
+
+To demonstrate that semantic and paralinguistic information can be hierarchically represented during the quantization process by the proposed DeCodec while decoupling speech and background sound, we conduct one-shot VC experiment on noisy speech test set by decoding the recombined representations of the DeCodec, which replacing the SRVQ-2:8 of the input noisy speech with the SRVQ-2:8 of the reference noisy speech. The reference speech is processed to match the input speech length.
+
+Results of one-shot VC on different codec models on the noisy speech test set is shown in Table 3. Note that in order to evaluate the semantic retention of the speech after one-shot VC, DeCodec removed background sound by the SE method as in Section 4.2.2 when performing voice conversion, *i.e.*, one-shot VC+SE. Correspondingly, since SpeechTokenizer is not robust to noise, for fairness, we also cascaded the optimal StoRM denoising model in Section 4.2.2 as its front end. Table 3 shows that existing speech entangled codec models such as SpeechTokenizer is not robust to noisy speech, as the WER of the converted speech reaches 74.18, indicating the speech is unintelligible. However, the proposed DeCodec and
+
+{8}------------------------------------------------
+
+Table 3: Results of one-shot VC on different codec models on the noisy speech test set.
+
+| Codec Models | Source Speech | Reference Speech | Output BGS | SIM↑ | WER↓ |
+|-|-|-|-|-|-|
+| Reference | - | - | - | 0.69 | - |
+| SpeechTokenizer | RVQ-1 | RVQ-2:8 | - | 0.80 | 74.18 |
+| StoRM-SpeechTokenizer | RVQ-1 | RVQ-2:8 | - | 0.83 | 52.73 |
+| DeCodec | SRVQ-1 | SRVQ-2:8 | × BRVQ-1:8 | 0.83 | 50.46 |
+
+SpeechTokenizer after front-end StoRM denoising can effectively reduce the WER of the converted speech, and the speaker similarity is also improved. This confirms that the proposed algorithm can decompose semantic and paralinguistic information while being robust to noise. As for the relatively high WER, it may be due to the different speech segment voicing times. When the input speech is voiced but the reference speech is not, the voice tone cannot be effectively converted by only switching representations, resulting in high distortion of the converted speech and a noticeable increase in WER. Besides, the proposed DeCodec achieves a lower WER compared to the StoRM-SpeechTokenizer method, indicating that the proposed approach of decoupling speech and background sound in the representation domain introduces less error than the front-end time-domain separation method, and thus has a competitive advantage in information control for audio tasks.
+
+#### 4.2.4 ABLATION STUDY
+
+Table 4: Results of ablation studies on Decodec on the noisy speech test set.
+
+| | Module | | | Causal | Overall SDR-O↑ | Decoupling | | |
+|-|-|-|-|-|-|-|-|-|
+| | SOP | RST | SG | | | SDR-B↑ | SDR-S↑ | WER*↓ |
+| Ablation-1 | ✓ | - | - | ✓ | 8.93 | -13.15 | -1.91 | - |
+| Ablation-2 | - | ✓ | - | ✓ | 6.70 | -10.67 | 3.03 | - |
+| Ablation-3 | ✓ | ✓ | - | ✓ | 6.68 | 0.49 | 7.90 | 41.9 |
+| DeCodec-c | ✓ | ✓ | ✓ | ✓ | 4.62 | -1.11 | 5.70 | 25.8 |
+| DeCodec | ✓ | ✓ | ✓ | × | 5.21 | -0.36 | 6.73 | 23.6 |
+
+To validate the effectiveness of the proposed SOP vlock, RST procedure, and SG method, we conducted ablation studies, with the results shown in Table 4. SDR-O, SDR-B, and SDR-S represent the signal distortion ratios for reconstructing the original audio, decoupled background sound, and decoupled speech, respectively. WER\* is the WER of the downstream ASR model, indicating the ability of the codec used in training the downstream ASR model to represent semantic information. The SDR-B values for Ablation-1 and Ablation-2 are both below -10 dB, and the SDR-S values are also low, indicating that relying solely on a single SOP module or RST procedure is insufficient to achieve effective decoupling of speech and background sound. However, the results of Ablation-3 show significant improvements in both SDR-B and SDR-S, indicating that the joint use of the proposed SOP module and RST procedure can effectively decouple speech and background sound in the representation domain. On the basis of Ablation-3, DeCodec further introduces SG, resulting in a slight decrease in SDR but a significant reduction in WER\*. This indicates that with the proposed SOP+RST method for achieving speech-background sound decoupling, the introduction of a speech decomposition mechanism can further enable hierarchical representation of semantic and paralinguistic information, thereby expanding the scope of audio processing applications for the proposed DeCodec. Additionally, compared to the causal version, the non-causal version of DeCodec demonstrates improved performance, allowing users to select the appropriate version based on specific audio processing requirements.
+
+## 5 CONCLUSION
+
+This work presents DeCodec, reframing audio codecs as an universal disentangled representation learner to achieve hierarchical disentanglement for representing speech-background sound and semantic-paralinguistic. The experimental results confirm that the representations are sufficiently disentangled, enabling controllable feature selection tailored to diverse downstream tasks. Limitations and future directions are discussed in Appendix H.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- 486
+487
+488 Alexei Baevski, Yuhao Zhou, Abdelrahman Mohamed, and Michael Auli. wav2vec 2.0:
+489 A framework for self-supervised learning of speech representations. *Advances in neural*
+490 *information processing systems*, 33:12449–12460, 2020.
+- 491
+492 Jun Chen, Wei Rao, Zilin Wang, Jiuxin Lin, Zhiyong Wu, Yannan Wang, Shidong Shang,
+493 and Helen Meng. Inter-subnet: Speech enhancement with subband interaction. In *ICASSP*
+494 *2023-2023 IEEE International Conference on Acoustics, Speech and Signal Processing*
+495 *(ICASSP)*, pp. 1–5. IEEE, 2023.
+- 496
+497 Sanyuan Chen, Chengyi Wang, Zhengyang Chen, Yu Wu, Shujie Liu, Zhuo Chen, Jinyu Li,
+498 Naoyuki Kanda, Takuya Yoshioka, Xiong Xiao, et al. Wavlm: Large-scale self-supervised
+499 pre-training for full stack speech processing. *IEEE Journal of Selected Topics in Signal*
+500 *Processing*, 16(6):1505–1518, 2022.
+- 501
+502 C Corpus. The design for the wall street journal-based. In *Speech and Natural Language:*
+503 *Proceedings of a Workshop Held at Harriman, New York, February 23-26, 1992*, pp. 357.
+504 Morgan Kaufmann Publishers, 1992.
+- 505
+506 Alexandre Défossez, Jade Copet, Gabriel Synnaeve, and Yossi Adi. High fidelity neural
+507 audio compression. *arXiv preprint arXiv:2210.13438*, 2022.
+- 508
+509 Alexandre Défossez, Laurent Mazaré, Manu Orsini, Amélie Royer, Patrick Pérez, Hervé
+510 Jégou, Edouard Grave, and Neil Zeghidour. Moshi: a speech-text foundation model for
+511 real-time dialogue. *arXiv preprint arXiv:2410.00037*, 2024.
+- 512
+513 Zhihao Du, Shiliang Zhang, Kai Hu, and Siqi Zheng. Fmcodec: A fundamental, reproducible
+514 and integrable open-source toolkit for neural speech codec. In *ICASSP 2024-2024 IEEE*
+515 *International Conference on Acoustics, Speech and Signal Processing (ICASSP)*, pp. 591–
+516 595. IEEE, 2024.
+- 517
+518 Wei-Ning Hsu, Benjamin Bolte, Yao-Hung Hubert Tsai, Kushal Lakhotia, Ruslan Salakhut-
+519 dinov, and Abdelrahman Mohamed. Hubert: Self-supervised speech representation learn-
+520 ing by masked prediction of hidden units. *IEEE/ACM transactions on audio, speech, and*
+521 *language processing*, 29:3451–3460, 2021.
+- 522
+523 Zhichao Huang, Chutong Meng, and Tom Ko. Repcodec: A speech representation codec for
+524 speech tokenization. *arXiv preprint arXiv:2309.00169*, 2023.
+- 525
+526 Yidi Jiang, Qian Chen, Shengpeng Ji, Yu Xi, Wen Wang, Chong Zhang, Xianghu Yue,
+527 ShiLiang Zhang, and Haizhou Li. Unicodec: Unified audio codec with single domain-
+528 adaptive codebook. *arXiv preprint arXiv:2502.20067*, 2025.
+- 529
+530 Zeqian Ju, Yuancheng Wang, Kai Shen, Xu Tan, Detai Xin, Dongchao Yang, Yanqing
+531 Liu, Yichong Leng, Kaitao Song, Siliang Tang, et al. Naturalspeech 3: Zero-shot speech
+532 synthesis with factorized codec and diffusion models. *arXiv preprint arXiv:2403.03100*,
+533 2024.
+- 534
+535 Rithesh Kumar, Prem Seetharaman, Alejandro Luebs, Ishaaan Kumar, and Kundan Kumar.
+536 High-fidelity audio compression with improved rvqgan. *Advances in Neural Information*
+537 *Processing Systems*, 36, 2024.
+- 538
+539 Jean-Marie Lemercier, Julius Richter, Simon Welker, and Timo Gerkmann. Storm: A
+540 diffusion-based stochastic regeneration model for speech enhancement and dereverbera-
+541 tion. *IEEE/ACM Transactions on Audio, Speech, and Language Processing*, 31:2724–2737,
+542 2023.
+- 543
+544 Jiaqi Li, Xiaolong Lin, Zhekai Li, Shixi Huang, Yuancheng Wang, Chaoren Wang, Zhenpeng
+545 Zhan, and Zhizheng Wu. Dualcodec: A low-frame-rate, semantically-enhanced neural
+546 audio codec for speech generation. *arXiv preprint arXiv:2505.13000*, 2025.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/5H8kxW0Efk.txt b/papers/5H8kxW0Efk.txt
new file mode 100644
index 0000000000000000000000000000000000000000..efc9511f4447f32aa875b70d4ed2804219ca9eb1
--- /dev/null
+++ b/papers/5H8kxW0Efk.txt
@@ -0,0 +1,220 @@
+
+
+{0}------------------------------------------------
+
+# NEURAL NETWORK ISING MACHINES: ALGORITHM UNROLLING FOR COMBINATORIAL OPTIMIZATION
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+We propose a new data-driven neural approach to combinatorial optimization in which we learn the parameters of an iterative dynamical system which efficiently samples good solutions for typical instances of the NP-hard Max-Cut/Ising problem. The dynamical system is parameterized by a small neural network which is trained using a zeroth-order optimization method. We find that our method is able to learn efficient and scalable algorithms for solving these combinatorial optimization problems. We show that even with a limited parameter count, the neural network is able to learn sophisticated dynamics which allow it to efficiently navigate the non-convex landscapes that are characteristic of NP-hard problems. We compare our method against state-of-the-art neural-CO approaches as well as other classical Max-Cut/Ising algorithms and show that it can achieve competitive performance.
+
+## 1 INTRODUCTION
+
+Combinatorial optimization (CO) problems are a class of problems which have important applications across many fields of science and engineering. However, because they are NP-hard there is no general algorithm which can solve these problems efficiently. Thus many heuristics and approximate algorithms have been developed which are effective on certain classes of CO problems. On the other hand, the techniques of neural networks and machine learning have been widely successful at learning patterns from data. This raises a central question: can heuristic algorithms for combinatorial optimization be learned from data, and can they ultimately outperform their handcrafted counterparts? This intersection between the two fields is attractive in a number of ways. First of all, many heuristic algorithms for CO are not well understood and are a result of a large amount of human experimentation and parameter tuning already. In this context it makes sense that an ML technique would be appropriate to further automate this process. Secondly, from the perspective of machine learning, one drawback that many neural network based algorithms have is that their output can be unreliable and unverifiable. This problem is partially avoided in the context of CO because the solutions we are looking for are inherently verifiable. For these reasons (among many others) the intersection of these fields, often referred to as “neural CO”, has been extensively studied over the last decade or so (see section 2.1). However, although there have been many success stories of these methods, there is still no generally agreed upon technique, and in many cases hand-crafted classical heuristics are still better, making the field an area of active research. In this work, we propose a new method which optimizes the NP-hard Ising/Max-Cut problem and related problems. Our approach is closely related an recent line of work which aims at developing a dynamical systems approach to solving the Ising problem (see section 2.2), however we extend it in a data-driven matter. Although our method differs in both architecture and training method from existing neural CO approaches, we show that it can achieve state-of-the art performance on many commonly used benchmarks.
+
+## 2 RELATED WORKS
+
+### 2.1 NEURAL COMBINATORIAL OPTIMIZATION
+
+In the field of neural combinatorial optimization (neural CO) many different types of CO problems have been considered, The most common of them being the traveling salesmen problem (TSP)
+
+{1}------------------------------------------------
+
+Vinyals et al. (2017); Bello et al. (2017); Deudon et al. (2018); Joshi et al. (2019); Bresson & Laurent (2021); Bogrybayeva et al. (2022); Sui et al. (2024); Alanzi & Menai (2025). Many architectures have been used on TSP including pointer networks Vinyals et al. (2017), transformers Kool et al. (2019) and GNNs Joshi et al. (2019). Both supervised learning (SL) and reinforcement learning (RL) have been used for training with policy gradient based RL methods being the most popular Bello et al. (2017). Additionally, diffusion models have also been proposed as a technique for neural CO Sun & Yang (2023); Sanokowski et al. (2024). In addition to TSP, neural methods have been proposed to heuristically solve countless other NP-hard problems including graph matching Zanfir & Sminchisescu (2018), routing problems Zhou et al. (2025), maximum independent set Ahn et al. (2020), and Boolean satisfiability Bünz & Lamm (2017) to name a few. In particular, there have been a number of neural approaches to Max-Cut and other closely related problems such as Maximum independent set (MIS) that are directly equivalent to the Ising problem studied in this work Dai et al. (2018); Karalias & Loukas (2021); Schuetz et al. (2022); Zhang et al. (2023); Sanokowski et al. (2023; 2024; 2025). Approaches include GNNs Schuetz et al. (2022) G-flownets, Zhang et al. (2023) and more recently diffusion samplers Sanokowski et al. (2024; 2025). For further references and recent reviews on neural CO we refer the reader to Cappart et al. (2022); I. Garmendia et al. (2024); Martins et al. (2025); Thinklab-SJTU (2021).
+
+### 2.2 DYNAMICAL SYSTEM APPROACHES TO ISING/MAX-CUT (ISING MACHINES)
+
+Over the years, there have been many physics-inspired approaches to solving the Max-Cut problem. These approaches are inspired by the fact that many physical systems naturally seek to minimize some quantity (e.g., physical energy) so if the problem objective can be mapped to this quantity then the physical device can sample good solutions to the desired optimization problem. These ideas date back to concepts like Hopfield neural networks Hopfield (1982), but have gained more attention again recently. In particular, there has been a lot of work showing that even for certain systems, simulating the physical dynamics numerically can lead to developing state-of-the-art algorithms. These algorithms, typically called “Ising machines” often involve representing the solution of a Max-Cut/Ising problem as a set of continuous degrees of freedom which evolve dynamically over time. Some examples include coherent Ising machines (CIM) Wang et al. (2013); Yamamoto et al. (2017; 2020); Lu et al. (2023), analog iterative machines (AIM) Kalinin et al. (2023) which are inspired by photonics, oscillator Ising machines (OIM) Wang & Roychowdhury (2019) based on analog electronics as well as algorithms like simulated bifurcation machines (SBM) Goto et al. (2019), and chaotic amplitude control (CAC) Leleu et al. (2019; 2021); Leleu & Reifenstein (2025) which are inspired by more general physical principals. Although it has been demonstrated numerically that these algorithms are very effective at solving Max-Cut problems, it is not well understood why certain types of dynamics are more effective than others beyond some loose connections with the underlying physics. Additionally, as is common for heuristic algorithms for CO, there is often an amount of hyper-parameter tuning required for these algorithms to be effective on a certain class of problem instances.
+
+### 2.3 LEARNING TO OPTIMIZE AND ALGORITHM UNROLLING
+
+Learning to Optimize (L2O) and algorithm unrolling are machine learning techniques commonly used for solving optimization problems where a simple iterative algorithm is typically used. The idea of algorithm unrolling is that instead of replacing the whole iterative algorithm with a many layered deep neural network, we modify the existing iterative algorithm to a more general version with more parameters (which is essentially a recurrent neural network) Monga et al. (2020); Chen et al. (2021); Kotary et al. (2023); Chen et al. (2024). These parameters can then be tuned by some machine learning technique so that we get an improved version of the original iterative approach. Because this technique requires many fewer parameters than the corresponding DNN parameterization, it is often much more efficient, scalable and interpretable Monga et al. (2020). Algorithm unrolling has traditionally focused on problems in sensing and signal reconstruction Chen et al. (2021); Balatsoukas-Stimming & Studer (2019); Gregor & LeCun (2010). A foundational example of this is in which ISTA (iterative shrinkage and thresholding algorithm), a commonly used algorithm for sparse signal construction, was extended to LISTA (learned ISTA). The convergence and reconstruction accuracy of ISTA were greatly improved by learning additional parameters Gregor & LeCun (2010). Although these examples are mostly in settings where the underlying optimization problem is convex, there are some works that explore algorithm unrolling in the context of non-
+
+{2}------------------------------------------------
+
+convex optimization Tan et al. (2023); Wei et al. (2025); Song et al. (2024). However, to the best of our knowledge algorithm unrolling has not been explored for NP-hard combinatorial optimization with the exception of the integer linear programming (ILP) problem which is discussed in Chen et al. (2024).
+
+### 2.4 ZEROTH ORDER OPTIMIZATION AND EVOLUTIONARY STRATEGIES
+
+Most ML techniques require some sort of gradient estimator which usually based off of backpropagation. Examples of this are the typical stochastic gradient descent (SGD) used in supervised learning and the policy gradient method of reinforcement learning. On the other hand, zeroth-order methods do not use a backwards pass and compute the gradient using a finite-difference estimator. These types of methods have been proposed as alternatives to backpropagation and policy-gradient reinforcement learning, typically because of the smaller computational overhead required Salimans et al. (2017). In our case, we use a zeroth order method for a slightly different reason. Because the dynamics of an Ising machine are very complex and require many layers of computation, it is not possible to use backpropagation to estimate gradients accurately because of the vanishing/exploding gradient phenomenon. Similarly, if we try to use the policy gradient method on an Ising machine an equivalent problem arises. Because there are so many small steps (decisions) that an Ising machine makes in a single trajectory, when using the policy gradient method we get a very noisy gradient single because it is hard to accurately attribute each of these decisions to the success of the algorithm. For more details and numerical results see appendix E. Note that many previous works such as Zhang et al. (2023) and Sanokowski et al. (2024) attempt to fix this problem of reward attribution for CO algorithms, however we take a different approach and use an entirely different optimization technique which is not based on the REINFORCE algorithm Williams (1992).
+
+### 2.5 OUR CONTRIBUTION
+
+In this work, we propose a method of neural CO which essentially applies the idea of algorithm unrolling to dynamical Ising machines. For our training method, we use a zeroth order optimization method Reifenstein et al. (2024) instead of the more typical backpropagation or policy-gradient based methods. We parameterize the update step of an Ising machine with a neural network allowing it to learn optimal search dynamics in a data-driven way. To the best of our knowledge, our method is novel in the following ways:
+
+- We apply the techniques of algorithm unrolling to the NP-hard Max-Cut problem.
+- We use zeroth-order optimization to tune a neural network in the context of combinatorial optimization.
+- We show that effective dynamics for Ising machines can be learned from scratch in a data-driven way.
+
+## 3 PROPOSED METHOD
+
+### 3.1 THE ISING PROBLEM
+
+In this work, we will consider the NP-hard Ising problem defined as follows. The goal is to minimize a quadratic objective function with respect to a set of binary $N$ variables:
+
+$$\text{minimize} \quad \sum_{i,j} J_{ij} \sigma_i \sigma_j - \sum_i l_i \sigma_i \quad \text{subject to} \quad \sigma \in \{-1, 1\}^N \quad (1)$$
+
+where the problem instance is specified by the symmetric $N \times N$ matrix $J$ and $N$ dimensional vector $l$ . This problem can be shown to be mathematically equivalent to several other optimization problems including Max Cut (MCut), Max Clique (MC), Max Independent Set (MIS) and QUBO (Quadratic Unconstrained Binary Optimization) problems (see appendix A). In this work we will often use the term “Ising problem” to refer to this class of problems which are described by optimizing a set of binary variables over a quadratic objective function.
+
+{3}------------------------------------------------
+
+
+
+Figure 1: a) Diagram showing the flow of information in a neural network Ising machine. It depicts four nodes (h(t-3), h(t-2), h(t-1), and a coupling field) feeding into an MLP, which then outputs x(t). b) High level overview of our method relative to other approaches to CO, showing a large blue circle representing 'All possible CO algorithms (parameterized by Data)' and a smaller green circle representing 'Existing Ising machine algorithms'. c) Cartoon depiction of the zeroth-order evolutionary optimization algorithm, showing a target (blue dot) and a distribution of parameters (red circles) evolving over iterations.
+
+Figure 1: a) Diagram showing the flow of information in a neural network Ising machine. The coupling fields (purple), calculated by aggregating the influence of the $N - 1$ other variables, are saved from previous iterations. They are then fed into the neural network model and used to decide the new spin variable which is then used to compute the next coupling field. See sections 3.2 and 3.3 for a concrete mathematical description. b) High level overview of our method relative to other approaches to CO, inspired by figure 15 of Monga et al. (2020). c) Cartoon depiction of the zeroth-order evolutionary optimization algorithm we use based off of Reifenstein et al. (2024). A distribution of parameters (represented by red circles) is evolved over many iterations to close in on an optimal parameter configuration (blue dot).
+
+### 3.2 ISING MACHINES
+
+An Ising machine is most generally defined as a dynamical system which is used to optimize the Ising problem. However, in this work we will give it a specific mathematical definition as
+
+$$x_i(t) = F(t, h_i(0), \dots, h_i(t - 1)) \quad (2)$$
+
+$$h_i(t) = \sum_j J_{ij} x_j(t) + \frac{1}{2} l_i. \quad (3)$$
+
+The Ising machine dynamics are fully determined by the function $F$ . The variables $x_i(t)$ denote the current approximate solution of the Ising problem (although they can have continuous values) and the variables $h_i(t)$ can be interpreted as a discrete gradient of the objective function with respect to the current approximate solution. In addition, $F$ may have some stochastic component to it. The algorithm is carried out by starting with $x_i(0)$ at some random value (determined by $F$ ) and then iterating the above equations by $T$ steps. At each step, a possible solution can be calculated as $\sigma_i(t) = \text{sign}(x_i(t))$ and typically we take the best solution over the course of the trajectory to be the output. Because of the stochastic nature, in practice many trajectories are often computed and the best solution out of all of them is used. For specific examples of dynamical Ising machines and how they map to this formulation, refer to appendix B.
+
+### 3.3 MLP PARAMETERIZATION
+
+The key concept behind our method is to parameterize the function $F$ with a simple multilayer perceptron (MLP) neural network. To do this, we restrict the history of $h_i$ variables used to a specific length $T_c$ and use these as the input layer of our network. For this work we use a two layer network with tanh activation functions. Additionally, we do not include bias parameters. This is because in order for the algorithm to respect the symmetry of the Ising problem we want the resulting function to be odd with respect to every input. We can express this function explicitly as follows:
+
+$$F(t, h(0), \dots, h(t - 1)) = \text{MLP}(t, h(t - T_c), \dots, h(t - 1)) = \quad (4)$$
+
+$$\tanh \left[ W^0(t)\eta + \sum_{k \in \{0, \dots, D-1\}} W_{1,k}^1(t) f_{\text{nl}} \left( \sum_{s \in \{0, \dots, T_c-1\}} W_{k,s}^2(t) h(t - T_c + s) \right) \right] \quad (5)$$
+
+where $D$ denotes the number of hidden neurons, $\eta$ is $\mathcal{N}(0, 1)$ gaussian noise, and $f_{\text{nl}}$ is the nonlinear activation function $f_{\text{nl}}(x) = x + \tanh(x)$ . $W^0(t)$ , $W^1(t)$ , and $W^2(t)$ are the tunable weight matrices of dimensions $1 \times 1$ , $1 \times D$ and $D \times T_c$ respectively. Note that the weight matrices are indicated to have dependence on $t$ . This is because we want the Ising machine's dynamics to be allowed to vary over the course of the trajectory which is something that is important to many Ising machines. To
+
+{4}------------------------------------------------
+
+complete this parameterization, we first flatten the weight matrices into one vector $\theta(t)$ of dimension $1 + D + DT_c$ . Then we introduce another hyperparameter $M$ which corresponds to the number of degrees of freedom for which each parameter can vary with respect to time. More specifically, we can express $\theta_i(t)$ in terms of a $(1 + D + DT_c) \times M$ matrix $\Theta_{i,m}$ as follows:
+
+$$\theta_i(t) = \sum_{m \in \{0, \dots, M-1\}} \Theta_{i,m} f_m(t/T) \quad (6)$$
+
+where $f_m$ are a set of functions on the interval $[0, 1]$ which can be used as a basis to describe a general smooth function. In our work we use the Fourier basis described by
+
+$$f_m(\tau) = \begin{cases} \cos(\frac{m}{2}\pi\tau) & m \in \text{even} \\ \sin(\frac{m+1}{2}\pi\tau) & m \in \text{odd} \end{cases}. \quad (7)$$
+
+Together, this gives a total of $(1 + D + T_c D)M$ total parameters. We will refer to the algorithm created by iterating these equations as “neural network parameterized Ising machine” (NPIM). In addition to the network defined in equation 5, we also consider another version in which the outer tanh nonlinearity is replaced by the discontinuous sign function causing the $x_i(t)$ variables to be binary. We will refer to the resulting algorithms as cNPIM and dNPIM respectively (corresponding to continuous and discrete coupling). Although dNPIM is technically a special case of cNPIM (by scaling the weights), dNPIM tends to have different inductive biases and better generalization as shown in section (see section 4.5). We find that the specific choice of temporal basis described in eq 7 (Fourier, Chebyshev, Legendre) has only a minor effect on performance, while the dominant factor is the number of temporal modes $M$ available, as observed in Appendix C.2 (Fig. 5).
+
+### 3.4 PARAMETER TUNING AND REWARD FUNCTION
+
+To optimize the parameters of our model we use a zeroth-order evolutionary optimization method based off of Reifenstein et al. (2024). To do this, we choose a reward function which incentivizes trajectories which are successful at finding good values of the objective function. Depending on our goal (i.e. which benchmark we are training for) we use one of two reward functions which are described in appendix F. The optimization process can then be formalized as follows. A distribution in the space of network weights $\theta \in \mathbb{R}^P$ (where $P = (1 + D + T_c D)M$ ) is described by two variables $\theta_x \in \mathbb{R}^P$ and $\theta_L \in \mathbb{R}^{P \times P}$ . Then, we define the reward function $\rho$ which takes as an input a trajectory of an NPIM and outputs a real number (see section F for specific definitions). Our goal is to maximize the expected reward function which can be written as
+
+$$\mathcal{R}(\theta_x, \theta_L) = \mathbb{E}_{v, \eta, J} \rho(\text{traj}(\theta_x + \theta_L v, \eta, J)) \quad (8)$$
+
+where the expected value is taken over three distributions. $v$ is a random variable in $\mathcal{N}(0, 1)^P$ which is mapped to a perturbation in the parameter space by the matrix $\theta_L$ . $\eta$ is a random vector corresponding to the stochastic behavior of the trajectory dynamics themselves, and lastly $J$ is an instance of the Ising problem chosen from the relevant distribution. The notation $\text{traj}(\theta, \eta, J)$ is meant to symbolize a trajectory of the NPIM dynamics with the given network weights $\theta$ , instantiation of noise $\eta$ and problem instance $J$ . Following the equations in Reifenstein et al. (2024) we then estimate the gradient of $\mathcal{R}$ with respect to both $\theta_x$ and $\theta_L$ by computing samples from this distribution. At each step, the estimated gradients are then used to update both $\theta_x$ and $\theta_L$ . A single update of both $\theta_x$ and $\theta_L$ we will refer to as an “epoch” in this work. For more details including equations and hyper-parameters, see appendix G
+
+## 4 ANALYSIS OF LEARNED DYNAMICS
+
+### 4.1 EXAMPLE OF LEARNED DYNAMICS: EMERGENCE OF MOMENTUM IN SINGLE LAYER NETWORK
+
+In order to illustrate the relationship between network weights, Ising machine dynamics, and algorithm performance we will briefly consider a simplified example in which we have a single layer network with fixed weights ( $M = 1$ ) and 10 input neurons ( $T_c = 10$ ). In figure 2 we show how this network evolves over the course of the training process. In the first few epochs the network quickly learns a greedy “steepest descent” strategy. This is reflected by all of the network weights being
+
+{5}------------------------------------------------
+
+negative (bottom middle of figure 2). However, because set of Ising problem instances used are non-convex, this basic strategy causes the machine to often get trapped in solutions which are not globally optimal. Thus, during the training process the network weights gradually become modified to allow for a more effective search procedure that includes some additional “momentum” effect that kicks it out of these meta-stable state. This is depicted in the upper and lower right plots where some of the network weights become positive (red).
+
+
+
+Figure 2: Training performance and weight dynamics of a single-layer neural network Ising machine. The figure consists of four subplots. Top-left: Average reward vs. training epoch, showing a sharp increase from negative to positive reward around epoch 25. Bottom-left: Residual Ising energy vs. time, showing a rapid decrease for Network A and Network B. Top-middle: Network A weights and biases over 100 iterations, showing convergence to a stable state. Top-right: Network B weights and biases over 100 iterations, showing more complex dynamics. Bottom-middle and bottom-right: Diagrams of network weights at different iterations, showing the evolution of connections between input, hidden, and output layers.
+
+Figure 2: Example of training single layer neural network Ising machine. Upper left: the average reward (success rate) of the network with respect to training epoch. The reward starts negative because of an initial bootstrapping phase in which bad trajectories are penalized. Two snapshots of the network parameters are taken and shown in the right two figures: network A at epoch 19, and network B at epoch 99. Lower left: residual Ising energy (difference with best known solution) is shown as a function of iteration step for both networks. Darker colored trajectories indicate the ground state was found. Bottom middle and right: network weights of network A and network B respectively. Blue and red connections depict negative and positive network weights respectively. Top middle and right: trajectory of $x_i(t)$ variables for network A and network B respectively. Each color represents a different variable of the Ising problem.
+
+### 4.2 EFFECT OF ARCHITECTURE ON PERFORMANCE
+
+As shown in section 4.1, a simple single layer network with fixed weights can be effective at learning the complex dynamics required of solving these optimization problems. This raises the question of how important a more complicated multi-layer network is, and to what extent parameter modulation (annealing) is necessary for the algorithm to be effective. However, based on our experimentation with different network architectures it appears that both increasing the number of hidden neurons and degrees of freedom for the annealing schedule improve algorithm performance. In figure 3c and table 3 we show the success rate of both cNPIM and dNPIM on $N = 100$ SK problem instances for different network configurations. We see a clear trend in which a greater number of parameters results in improved performance, although there may be a saturation around 50 parameters, the results indicate that the network is learning some non-trivial strategy that needs many parameters to describe. Interestingly, as long as the number of parameters is large, the exact type of parameters (i.e. tradeoff between $T_c$ , $D$ and $M$ ) doesn’t seem to have a large effect on performance. For more details, single-parameter sensitivity sweeps over $T_c$ , $D$ , and $M$ are provided in Appendix C.1 (Fig. 4).
+
+### 4.3 BOOTSTRAPPING AND FINE TUNING
+
+In order to train the network on hard problem instances, it is often not sufficient to simply start with random parameters. This is because the success rate of finding the ground state will be zero or close to zero so there will be no gradient signal for the optimizer to use. To fix this problem we use various forms of bootstrapping and fine-tuning, in which the network is first tuned on an
+
+{6}------------------------------------------------
+
+
+
+Figure 3 consists of five subplots:
+
+
+- a) SK Problem Instances:** A log-log plot of 'median time to solution (TTS)' vs 'N (problem size)' from 100 to 800. It shows four traces: WPE baseline (dotted), cNPIM fine-tuned on N=100 (blue solid), dNPIM fine-tuned on N=100 (orange solid), and CAC (green dashed). Performance generally improves with N, with cNPIM and dNPIM showing better performance than the baseline at larger N.
+- b) TTS of 100 Problem Instances (cNPIM):** A log-log scatter plot of 'cNPIM TTS' vs 'CAC (IM baseline) TTS' for N=100. Most points are above the diagonal dashed line, indicating cNPIM is generally slower than CAC for these instances.
+- c) N=100 SK, Average Success Rate:** A scatter plot of 'reward (success rate)' vs 'number of parameters' (0 to 140). It compares cNPIM (blue dots) and dNPIM (orange dots). cNPIM achieves higher success rates, especially as the number of parameters increases.
+- d) WPE Problem Instances:** A log-log plot of 'TTS (number of steps 99% accuracy)' vs '(hardness parameter)' from 0.70 to 0.95. It shows traces for cNPIM and dNPIM fine-tuned on different hardness parameters (0.90, 0.80, 0.70) and the CAC baseline (dotted). Performance decreases as the hardness parameter increases.
+- e) TTS of 100 Problem Instances (dNPIM):** A log-log scatter plot of 'dNPIM TTS' vs 'CAC (IM baseline) TTS' for N=100. Points are more clustered around the diagonal dashed line compared to subplot b, indicating more comparable performance to CAC.
+
+Figure 3: Performance and TTS analysis for cNPIM and dNPIM on SK and WPE problem instances.
+
+Figure 3: a) Performance (Time to solution) of cNPIM on Sherrington-Kirkpatrick (SK) problem instances. Colored traces show performance with and without fine-tuning showing limited (but nonzero) ability to generalize over problem size. Dotted trace shows baseline Ising machine performance (Chaotic amplitude control Leleu et al. (2019; 2021); Leleu & Reifenstein (2025)). b, e) Scatter plot showing the TTS of 100 random SK problem instances of problem size $N = 800$ against that of CAC for cNPIM and dNPIM respectively. c) Success rate for different architectures of cNPIM and dNPIM as a function of total parameter count. The same data is shown in table 3. d) TTS is shown as a function of hardness parameter for the Wishart planted ensemble (WPE) problem instances Hamze et al. (2020). Colored traces show cNPIM fine-tuned on different hardness parameters while dotted line shows Ising machine baseline (CAC).
+
+easier version of the problem and then fine-tuned on the desired instance distribution. In figures 3a and 3d we show two examples of bootstrapping and fine-tuning. For example, in figure 3a the network is first trained from scratch (random initialization) on SK problem instances of problem size $N = 100$ . Then, this pretrained network is fine-tuned on problem size $N = 500$ . Performance of both networks is shown in blue and orange traces respectively, showing that the fine-tuned network is more effective especially for larger problem sizes. This process is necessary because training a network from scratch at the larger problem size ( $N = 500$ ) is not possible. For more details on training process see appendix F.
+
+### 4.4 OUT OF DISTRIBUTION PERFORMANCE
+
+In figures 3a and 3d we show the performance of cNPIM with respect to problem size and instance hardness parameter respectively. In both cases, when the network is tuned on a specific problem distribution, the fine-tuned weights are still successful at solving problems in different (but closely related) distributions. However, performance tends to degrade the more the distribution differs from the one it is tuned on as expected. This shows that although some out-of-distribution generalization is possible, fine-tuning is still important in order to get the desired performance.
+
+### 4.5 OVERFITTING AND DIFFERENCES BETWEEN CNPIM AND DNPIM
+
+In figures 3b and 3e we show the instance-wise performance of cNPIM and dNPIM respectively against that of the chaotic amplitude control (CAC) algorithm Leleu et al. (2019; 2021); Leleu & Reifenstein (2025). Because the network is trained to optimize average success rate over all instances, this can result in overfitting in which the success rate of some problem instances is very large whereas others will have zero or very low success rate. This is depicted in figure 3b where many of the easier instances have low TTS (high success rate) for cNPIM compared to CAC whereas some hard instances were not solved at all by cNPIM indicated by their placement on the horizontal dotted line. On the other hand, in figure 3e we see this effect is much less prevalent for dNPIM. Although cNPIM achieves a larger reward value (average success rate), and smaller TTS for the median difficulty problem instances (indicated by red lines), it struggles on the hardest
+
+{7}------------------------------------------------
+
+problem instances relative to dNPIM and CAC.
+
+Although this phenomenon is not fully understood, we believe that because cNPIM uses continuous coupling it learns to optimize some relaxed version of the underlying discrete Ising problem. Although this relaxed problem may align well with the real problem for some instances, it doesn't for others, making it unreliable if we want to find the true ground state. On the other hand, because dNPIM uses discrete couplings the internal state of the algorithm is always based on true solutions to the underlying Ising problem. This forces it to be more faithful in its ability to search over the true solution space which may cause it to take longer for the easier problem instances.
+
+## 5 BENCHMARK RESULTS
+
+Because our method is closely related to both literature from the machine learning community on neural CO as well as the literature on dynamical Ising machines, to benchmark our algorithm we will include common benchmarks from both fields. Each field differs in what type of problems and what performance metric is used.
+
+In the literature on neural CO, typically both average objective value and computation time are reported Zhang et al. (2023); Sanokowski et al. (2025). Additionally, common benchmark problems include maximum independent set and Max-Clique problems based off of graphs from Xu et al. (2005) and Max-Cut problems from the Barabási–Albert (BA) distribution Albert & Barabási (2002). In table 1 we compare against the results of Sanokowski et al. (2025) on MIS, Max-Clique and Max-Cut problems. Although Sanokowski et al. (2025) also includes results on the maximum dominating set problem, we omit these because it is not directly mappable to the quadratic Ising problem. However our framework can easily be extended to other types of problems like this (see appendix D) which can be explored in future works. We find that in four out of the five cases dNPIM is able to achieve a better average objective value than the results of Sanokowski et al. (2025). However, in the case of the larger graphs our method does take longer. Although we are using the same hardware as Sanokowski et al. (2025) this difference could have something to do with the sparse graph library used for the results in Sanokowski et al. (2025) as opposed to the dense PyTorch matrix-matrix product used in our implementation. So without further optimization it is unclear if this difference in speed is inherent to the algorithm or the implementation.
+
+In literature on Ising machines, time to solution (TTS) is typically used as a metric. TTS takes into account both computation time of a single run of the algorithm and the quality of solutions achieved per run into a single metric. TTS is defined as an estimate of the amount of time you would need to run the algorithm to have a 99% chance of finding the solution. Because these are NP-hard problems and we don't know the true optimum we use "solution" to mean the best solution found by the algorithms we are benchmarking. For more details on TTS and how it is calculated see appendix H. For benchmark problem instance we use the famous G-set instance which are a set of both weighted and unweighted graphs with a variety of structures. These graphs are typically interpreted as Max-Cut problems for benchmarking. In order to train our network, for each type of graph in the G-set we generate a training set of problem instances which is used to fine-tune a network for that specific set of graph parameters (see appendix I for details). We compare the resulting algorithm against the results of Reifenstein et al. (2021) and Goto et al. (2021). We use the cut values reported in these works when computing TTS. Note that for the results of Reifenstein et al. (2021) and Goto et al. (2021) algorithm parameters are also tuned for each instance type. We find that on almost all problem instances dNPIM outperforms the existing Ising machine state-of-the-art with the exception of the unweighted planar instances. These instances are more difficult and other Ising machine algorithms struggle on them as well, especially dSBM (as shown in Reifenstein et al. (2021)). We believe that with more careful optimization and improvements to the architecture our method could achieve SOTA performance on all G-set instance but we leave this in-depth exploration for future works.
+
+Overall, we find that in almost all cases we have explored, our NPIM approach is able to compete with state-of-the-art results. This is promising because the simplicity and flexibility of the method makes it attractive as a technique that can quickly be adapted to a wide variety of optimization problems.
+
+{8}------------------------------------------------
+
+| Method | MIS-small | | MIS-large | | MaxCl-small | | MaxCut-small | | MaxCut-large | |
+|-|-|-|-|-|-|-|-|-|-|-|
+| | Size ↑ | time ↓ | Size ↑ | time ↓ | Size ↑ | time ↓ | Size ↑ | time ↓ | Size ↑ | time ↓ |
+| Gurobi | 20.13 ± 0.03 | 6:29 | 42.51 ± 0.06* | 14:19:23 | 19.06 ± 0.03 | 11:00 | 730.87 ± 2.35* | 17:00:00 | 2944.38 ± 0.86* | 2:35:10:00 |
+| LTFT (G) | 19.18 | 1:04 | 37.48 | 8:44 | 16.24 | 1:24 | 704 | 5:54 | 2864 | 42:40 |
+| DiffUCO | 19.42 ± 0.03 | 0:02 | 39.44 ± 0.12 | 0:03 | 17.40 ± 0.02 | 0:02 | 731.30 ± 0.75 | 0:02 | 2974.60 ± 7.73 | 0:02 |
+| SDDS: rKL w/ RL | 19.62 ± 0.01 | 0:02 | 39.97 ± 0.08 | 0:03 | 18.89 ± 0.04 | 0:02 | 731.93 ± 0.74 | 0:02 | 2971.62 ± 8.15 | 0:02 |
+| dNPIM (top 30) | 19.9 | 0:02 | 40.297 | 1:20 | 18.7 | 0:02 | 734.908 | 0:02 | 2988.551 | 1:20 |
+
+Table 1: Comparison of different methods on Max Independent Set (MIS), Max Clique (MaxCl) and MaxCut problems. Solution size (higher is better) and computation time (lower is better) are used as dual performance indicators. We compare with data from Sanokowski et al. (2025) which includes benchmark results of DiffUCO Sanokowski et al. (2024) and LTFT Zhang et al. (2023) as well. Computation times are based on PyTorch code running on and NVIDIA A100 GPU. "top 30" refers to the fact that since our algorithm is less computationally intensive per trajectory than the other algorithms we compare it to we run it 30 times in parallel and then use the best solution found out of these trajectories for our comparison.
+
+| Method | N=800, R, + | N=800, R, +/- | N=800, T, +/- | N=800, P, + | N=800, P, +/- |
+|-|-|-|-|-|-|
+| | TTS ↓ | TTS ↓ | TTS ↓ | TTS ↓ | TTS ↓ |
+| CAC | 2.09e+05 | 4.31e+05 | 3.38e+05 | 1.81e+06 | 8.87e+05 |
+| CFC | 2.39e+05 | 2.24e+05 | 2.22e+05 | 2.00e+06 | 3.44e+05 |
+| dSBM | 4.00e+05 | 3.59e+05 | 4.08e+05 | 2.12e+07 | 5.25e+06 |
+| dNPIM | 1.00e+05 | 6.55e+04 | 5.51e+04 | 4.42e+07 | 2.04e+05 |
+
+Table 2: Comparison of different methods on the G-set max-cut problem instances. Time-to-solution is used as performance metric. Time-to-solution is reported in units of number of iterations to solution. This is because the compute intensive matrix vector product is the computational bottleneck for each algorithm. In this table, we report medians over each group of instances, but for instance-wise performance see table 4. Target cut values used to evaluate the success of the algorithm are taken from Goto et al. (2021) and represent the current best known cut values for these instances. State of the art Ising machine TTS is obtained by taking the best TTS from Reifenstein et al. (2021) which includes the results of Goto et al. (2021) as well.
+
+{9}------------------------------------------------
+
+## 6 CONCLUSIONS AND DISCUSSION
+
+We have presented a novel data-driven method for solving combinatorial optimization problems. We use ideas from algorithm unrolling, Ising machines and zeroth-order optimization in a new way to learn algorithms that can achieve state-of-the-art performance on commonly used benchmarks. In addition to being novel, the simplicity of our approach makes it (in principle) easily generalizable to many types of problem instances. To conclude, we will discuss some current limitations of our approach and future directions that should be explored.
+
+In the context of our work there are two types of scalability: with problem size ( $N$ ), and with number of network parameters. We believe that our method achieves good scaling with respect to problem size relative to the general difficulty of scaling in CO (see figure 3a). However, scaling with number of parameters can be a potential limitation. This stems from the fact that we use a zeroth-order optimization method which will cause an additional overhead in the optimization when more parameters are added (for example see figure 4). This may limit the networks capability to learn more sophisticated dynamics (i.e. non-local moves) which maybe required to solve certain types of problems. An interesting future direction would be to combine the zeroth-order method used in this work with some sort of policy gradient or backpropagation-like method to see if the network could scale to a larger number of parameters.
+
+Another limitation of our method is the problem of explainability. Although this problem is common in ML approaches in general and, to a lesser extent, dynamical Ising machines, we have not contributed much in this work to fix this explainability issue. The best we can do currently is draw connections to physical concepts used in the optimization literature such as “momentum” and “annealing”. We show to some extent that these phenomena are emergent properties of our network when it is trained with the sole objective of maximizing reward (see figure 2). However, this does not answer the question of why these dynamics are so important for certain problem instances. A more detailed understanding of the dynamical complexity generated by the learned iterative map is still needed, and is an interesting direction for future works.
+
+Although we have tested our approach on a variety of benchmarks, these problem instances are synthetic and are constrained to the class of quadratic optimization over binary variables. To further study our method it will be necessary to test it on different types of CO problems such as SAT, integer programming and TSP (see section D) and also consider problems of industrial or academic interest. Because of the simplicity and flexibility of our method, we believe it is likely that our approach can be adapted provide an efficient solution in some real-world applications.
+
+## REFERENCES
+
+- Sungsoo Ahn, Younggyo Seo, and Jinwoo Shin. Learning what to defer for maximum independent sets. In Hal Daumé III and Aarti Singh (eds.), *Proceedings of the 37th International Conference on Machine Learning*, volume 119 of *Proceedings of Machine Learning Research*, pp. 134–144. PMLR, 13–18 Jul 2020. URL .
+- Entesar Alanzi and Mohamed El Bachir Menai. Solving the traveling salesman problem with machine learning: a review of recent advances and challenges. *Artificial Intelligence Review*, 58 (9):267, 2025. doi: 10.1007/s10462-025-11267-x. URL .
+- Réka Albert and Albert-László Barabási. Statistical mechanics of complex networks. *Rev. Mod. Phys.*, 74:47–97, Jan 2002. doi: 10.1103/RevModPhys.74.47. URL .
+- Alexios Balatsoukas-Stimming and Christoph Studer. Deep unfolding for communications systems: A survey and some new directions. In *2019 IEEE International Workshop on Signal Processing Systems (SiPS)*, pp. 266–271, 2019. doi: 10.1109/SiPS47522.2019.9020494.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/5T1vMQldr8.txt b/papers/5T1vMQldr8.txt
new file mode 100644
index 0000000000000000000000000000000000000000..70645d91aef1239defff30dcb6e0ae6145560b2f
--- /dev/null
+++ b/papers/5T1vMQldr8.txt
@@ -0,0 +1,439 @@
+
+
+{0}------------------------------------------------
+
+# MITIGATING REWARD EXTRAPOLATION ERRORS IN OFFLINE PREFERENCE-BASED RL VIA ATTENTION-GUIDED SUBGOAL DISCOVERY
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Offline preference-based reinforcement learning (PbRL) learns complex behaviors from human feedback without environment interaction, but suffers from reward model extrapolation errors when encountering out-of-distribution region during policy optimization. These errors arise from distributional shifts between preference-labeled training trajectories and unlabeled inference data, leading to reward misestimation and suboptimal policies. We introduce SPOT (Subgoal-based Preference Optimization Through Attention Weight), which mitigates extrapolation errors by leveraging attention-derived subgoals from preference data. SPOT regularizes the policy toward subgoals observed in preferred trajectories. This approach constrains learning within the training distribution, reducing reward model extrapolation errors. Through comprehensive experiments, we demonstrate that our subgoal-guided approach achieves superior performance compared to existing methods while reducing extrapolation errors. Our approach preserves fine-grained credit assignment information while enhancing query efficiency, suggesting promising directions for reliable and practical offline preference-based learning.
+
+## 1 INTRODUCTION
+
+Preference-based reinforcement learning (PbRL) has demonstrated remarkable success across diverse domains. PbRL learns reward functions directly from human feedback, eliminating the overhead of manually designing the dense reward functions (Christiano et al., 2017b). This paradigm is particularly valuable in complex scenarios where defining precise reward functions is challenging, such as robotic manipulation (Akrou et al., 2011), autonomous driving (Surmann et al., 2025), and LLMs (Fernandes et al., 2023; Korbak et al., 2023). With the growing utilization of offline data in policy optimization (Fang et al., 2022; Prudencio et al., 2023), offline PbRL has emerged as a significant area of research (Tu et al., 2025).
+
+The standard offline PbRL framework follows a two-stage process. First, a reward model is trained using pairwise preference-labeled trajectory datasets to approximate step-wise rewards. Second, this learned reward model is used to label an unlabeled trajectory dataset, which is then utilized for policy optimization through reinforcement learning algorithms. Offline PbRL faces fundamental challenge in learning accurate step-wise reward model from coarse-grained trajectory-level preferences. This challenge stems primarily from extrapolation errors –a critical limitation when reward models encounter distributional shifts (Yu et al., 2022; Gulcehre et al., 2021). Specifically, trajectories used for policy optimization often lie outside the distribution of preference-labeled data, creating out-of-distribution regions where reward model estimates become unreliable. These estimation errors can significantly mislead policy learning by providing over- or underestimated reward signals, which in turn leads suboptimal performance by either inflated Q-function estimates or deflated value estimates (Fujimoto et al., 2019; Kumar et al., 2020).
+
+Two main directions were suggested to mitigate this challenge: improving reward model reliability (Tu et al., 2025) or completely eliminating them (Hejna & Sadigh, 2023; An et al., 2023). While these approaches do reduce reward model extrapolation errors, they overlook the rich information
+
+{1}------------------------------------------------
+
+054 contained in preference datasets, dismissing valuable signals that could further alleviate extrapolation
+055 error.
+
+056 Building on recent advances in attention-based reward modeling (Kim et al., 2023; Verma & Susa,
+057 2024), we observe that preference-based RL identifies critical states within trajectories through at-
+058 tention mechanisms that assign higher weights to states strongly influencing human preferences. We
+059 conceptualize these high-attention states as **subgoals**, which act as critical decision points or mile-
+060 stones. These subgoals are anchored within the demonstrated preferred trajectories, which helps to
+061 mitigate extrapolation errors while simultaneously providing auxiliary waypoints that guide reward
+062 learning through additional supervisory structure.
+
+063 In this work, we propose **SPOT** (Subgoal-based Preference Optimization Through Attention
+064 Weight), a novel approach that addresses reward model extrapolation errors in offline PbRL. Our
+065 approach improves reward model reliability by utilizing meaningful subgoals extracted from high-
+066 attention weight points on preferred trajectories. We employ a Conditional Variational Autoencoder
+067 (CVAE) to learn the underlying distribution of these preference-aligned subgoals, enabling gener-
+068 ation of contextually appropriate intermediate subgoals for unlabeled trajectories. By incorporat-
+069 ing subgoals as intermediate reward signals, SPOT effectively mitigates extrapolation errors while
+070 preserving fine-grained credit assignment information. SPOT regularizes the policy toward sub-
+071 goals observed in preferred trajectories. Through empirical evaluation, we demonstrates that SPOT
+072 achieves state-of-the-art performance across multiple benchmarks while effectively addressing ex-
+073 trapolation errors and improving reward model reliability.
+
+###### 075 2 RELATED WORK
+
+077 Offline Preference-based Reinforcement Learning (PbRL) has emerged as a promising paradigm
+078 that combines human preference feedback with offline RL to learn effective policies without online
+079 environment interaction (Christiano et al., 2017b; Lee et al., 2021; Liang et al., 2022; Park et al.,
+080 2022). The traditional approach follows a two-stage framework: first learning a reward function
+081 from human preference data, then applying standard reinforcement learning algorithms (Haarnoja
+082 et al., 2018; Schulman et al., 2017) using the learned reward function for policy optimization. Recent
+083 advances have enhanced offline preference learning through non-Markovian reward structures (Kim
+084 et al., 2023), contrastive learning frameworks (Hejna et al.), and data augmentation techniques (Choi
+085 et al., 2025). Modern approaches integrate diffusion models for trajectory optimization (Zhang et al.,
+086 2024) and leverage large language models for preference elicitation (Ouyang et al., 2022; Verma &
+087 Susa, 2024; Early et al., 2022; Kang et al., 2023).
+
+088 Existing offline RL suffers from extrapolation error due to distribution mismatch, leading to either
+089 overestimated Q-values for out-of-distribution actions (Gulcehre et al., 2021) or deflated value es-
+090 timates (Yeom et al., 2024). Various error regularization methods address this challenge, including
+091 BCQ (Fujimoto et al., 2019), CQL (Kumar et al., 2020), and IQL (Kostrikov et al., 2021), which
+092 constrain learning OOD region. Reward shaping provides another principled approach to address
+093 extrapolation error with policy invariance guarantees (Ng et al., 1999). Techniques include posi-
+094 tive reward shaping for offline dataset conservative exploitation (Sun et al., 2022), adaptive shaping
+095 mechanisms (Zhang & Tan, 2023; Rezaeifar et al., 2022), and model-based penalties (Yu et al.,
+096 2020). Recent work extends this through language-guided (Goyal et al., 2019) and goal-conditioned
+097 formulations (Mezghani et al., 2022). In offline PbRL, extrapolation errors are further amplified than
+098 in offline RL due to the existence of the reward model. Distribution mismatch between preference-
+099 labeled trajectories and policy optimization trajectories causes biased reward estimates (Yu et al.,
+100 2022; Konyushkova et al., 2020; Hu et al., 2023). Recent approaches address this through trajectory
+101 return regularization (Tu et al., 2025) or alternative paradigms that circumvent explicit reward mod-
+102 eling (Hejna & Sadigh, 2023; An et al., 2023) by directly optimizing against preference datasets.
+
+###### 104 3 PRELIMINARIES
+
+105 **Offline Preference based Reinforcement Learning** Traditional offline PbRL approaches employ a
+106 Markov Decision Process (MDP) (Christiano et al., 2017a) framework for preference learning. Let
+107 $\sigma^{(\ell)} = (s_1^{(\ell)}, a_1^{(\ell)}), \dots, (s_H^{(\ell)}, a_H^{(\ell)}),$ where $\ell \in 0, 1$ . preferences are collected as triples $(\sigma^0, \sigma^1, y),$
+
+{2}------------------------------------------------
+
+
+
+The diagram illustrates the SPOT framework architecture. On the left, 'Subgoal Learning via CVAE' shows a 'Preference Dataset' with state-action pairs $(s_1^1, a_1^1), (s_2^1, a_2^1), \dots, (s_H^1, a_H^1)$ and $(s_1^0, a_1^0), (s_2^0, a_2^0), \dots, (s_H^0, a_H^0)$ . These are processed by a 'Preference Transformer' to produce attention weights $w_t^1, r_t^1, w_t^2, r_t^2, \dots, w_H^1, r_H^1$ . This is followed by 'Weight & Reward Filtering' to identify subgoals $(s_t^0, a_t^0, g_t)$ . A 'CVAE' then generates subgoals $\hat{g}_t$ . On the right, 'Reward Shaping for Offline RL' shows a 'Batch Dataset' with states $s_1, a_1, s_2, a_2, \dots, s_N, a_N$ . This is processed by both a 'Preference Transformer' (producing $r_m^1, r_m^2, \dots, r_m^N$ ) and a 'CVAE' (producing $\hat{g}_1, s_1^1, \hat{g}_2, s_2^1, \dots, \hat{g}_N, s_N^1$ ). The CVAE outputs are processed by 'Cosine similarity' to produce $r_s^1, r_s^2, \dots, r_s^N$ . The final reward is $r_{final}^i = r_{model}^i + \lambda r_{shape}^i$ .
+
+Figure 1: Overall architecture of SPOT. The diagram is divided into two main stages: Subgoal Learning via CVAE (left) and Reward Shaping for Offline RL (right).
+
+Figure 1: Overall architecture of *SPOT*. Our framework consists of two main stages: (1) Subgoal Learning via CVAE (left): The Preference Transformer, as a reward model, processes state-action pairs $(s_t, a_t)$ and produces attention weights $w_t$ and rewards $r_t$ during reward learning. Subgoal states $S_g$ are identified by applying weight and reward filtering, selecting states with both top K% attention weights and above-average reward values. The CVAE learns to generate subgoal $\hat{g}$ conditioned on each intermediate state and action. (2) Reward Shaping for offline RL (right): For training, the batch dataset is simultaneously processed through both the Preference Transformer to obtain model rewards $r_m$ and the CVAE to generate predicted subgoals $\hat{g}$ . The final reward $r_{final}$ is computed by combining the model reward with a shaped reward term derived from cosine similarity between predicted subgoals and next states, weighted by hyperparameter $\lambda$ .
+
+where $y \in \{0, 1, 0.5\}$ denotes the preference label: $y = 1$ if $\sigma^1 \succ \sigma^0$ , $y = 0$ if $\sigma^0 \succ \sigma^1$ , and $y = 0.5$ for equal preference. The Bradley-Terry model (Bradley & Terry, 1952) with Markovian reward assumption is typically employed (Christiano et al., 2017a) :
+
+$$P[\sigma^1 \succ \sigma^0; \psi] = \frac{\exp(\sum_t r_\psi(s_t^1, a_t^1))}{\sum_{j \in \{0,1\}} \exp(\sum_t r_\psi(s_t^j, a_t^j))} \quad (1)$$
+
+This approaches are trained using cross-entropy loss with human-provided preference labels $y$ :
+
+$$\mathcal{L}_{CE} = -\mathbb{E}_{(\sigma^0, \sigma^1, y) \sim \mathcal{D}} [y \log P[\sigma^1 \succ \sigma^0; \psi] + (1-y) \log P[\sigma^0 \succ \sigma^1; \psi]] \quad (2)$$
+
+**Preference Transformer** Preference Transformer (PT) (Kim et al., 2023) formulates preference learning as a non-Markovian reward problem (Bacchus et al., 1996). PT employs a causal transformer to process state-action sequences and a preference attention layer to generate non-Markovian rewards $\hat{r}$ and importance weights $w_t$ . Each trajectory segment is processed through a causal transformer backbone, followed by a bidirectional attention mechanism that produces both predicted scalar rewards and associated attention weights at each timestep. The preference prediction is formulated as:
+
+$$P[\sigma^1 \succ \sigma^0; \psi] = \frac{\exp\left(\sum_t w((s_t^1, a_t^1)_{i=1}^H; \psi) \cdot \hat{r}((s_t^1, a_t^1)_{i=1}^t; \psi)\right)}{\sum_{\ell \in 0,1} \exp\left(\sum_t w((s_t^\ell, a_t^\ell)_{i=1}^H; \psi) \cdot \hat{r}((s_t^\ell, a_t^\ell)_{i=1}^t; \psi)\right)} \quad (3)$$
+
+where the reward function $\hat{r}_\psi$ takes into account the trajectory history $\{(s_i, a_i)\}_{i=1}^t$ and the attention weights $w$ are computed over the previous $H$ steps. This approach enables credit assignment through importance weights $w_t^i$ .
+
+{3}------------------------------------------------
+
+## 4 METHOD
+
+We propose an enhanced offline PbRL framework that integrates attention-driven subgoal discovery to mitigate extrapolation error. Our approach extends the traditional two-phase PbRL paradigm by incorporating a novel subgoal learning mechanism in the first phase and leveraging these learned subgoals for effective reward shaping in the second phase. Our framework addresses the extrapolation error problem by constraining policy learning toward subgoals where reward models produce unreliable estimates. The framework simultaneously trains a CVAE during reward model learning and applies the learned subgoal guidance during offline RL training.
+
+### 4.1 SUBGOAL LEARNING VIA CVAE
+
+#### 4.1.1 ATTENTION-BASED SUBGOAL IDENTIFICATION
+
+Building upon the Preference Transformer architecture Kim et al. (2023), which employs causal transformers with bidirectional attention layers for credit assignment in preference trajectories, we leverage attention weights as importance measures to identify critical states within trajectories. The attention mechanism captures states that most strongly influence human preferences. This attention weight can capture the temporal dependencies and state importance that are crucial for subgoal identification.
+
+For a given trajectory segment $\sigma = \{(s_t, a_t)\}_{t=1}^H$ , we extract attention weights $w_t$ through the preference transformer:
+
+$$w_t = f_{\text{attention}}(s_t, a_t; \theta) \quad (4)$$
+
+where $f_{\text{attention}}$ represents the attention mechanism parameterized by $\theta$ , producing scalar attention weights that quantify the importance of each state-action pair in the trajectory.
+
+#### 4.1.2 DUAL-CRITERIA FILTERING
+
+In preferred trajectories that only marginally outperform non-preferred ones, high attention states are prone to focus on relatively bad states. To avoid selecting less desirable subgoals, we introduce a dual-criteria filtering mechanism, attention-based and reward-based criteria. The subgoal state set $\mathcal{S}_g$ is then constructed by selecting states that satisfy both criterias:
+
+$$\mathcal{S}_g(\sigma; K) = \{s_t \mid w_t \geq \alpha_K(\sigma) \wedge \hat{r}_t \geq \bar{r}(\sigma)\} \quad (5)$$
+
+$$\alpha_K(\sigma) = \text{Quantile}_{1-K\%}(\{w_t\}_{t=1}^T) \quad (6)$$
+
+where $\alpha_K(\sigma)$ represents the $(100 - K)$ -th percentile threshold of attention weights within trajectory $\sigma$ , ensuring we select only the top $K\%$ attention states. The reward constraint $\hat{r}_t \geq \bar{r}(\sigma)$ with $\bar{r}(\sigma) = \frac{1}{T} \sum_{t=1}^T \hat{r}_t$ selects states that exceed the trajectory's average reward. This dual-criteria approach serves a critical role in extrapolation error mitigation by guaranteeing that high-quality subgoals are derived exclusively from preference-aligned training trajectory segments.
+
+#### 4.1.3 CONDITIONAL VARIATIONAL AUTOENCODER TRAINING
+
+Although our method identifies meaningful subgoals in preferred trajectories, applying them to unlabeled data presents a key challenge: mapping these waypoints to arbitrary state-action pairs during policy optimization. To address this, we employ a Conditional Variational Autoencoder (CVAE) that learns the underlying distribution of preference-aligned subgoals and generates contextually relevant subgoals conditioned on current state-action. This enables SPOT to provide appropriate intermediate guidance during policy optimization.
+
+CVAE is trained with state-action-subgoal triplets $(s_t, a_t, g_t)$ sampled from preferred trajectories, where $s_t$ and $a_t$ is a corresponding state-action pairs between $g_{t-1}$ and $g_t$ . The CVAE framework models the conditional distribution $p_\theta(g|s_t, a_t)$ through three components:
+
+- **Encoder network:** $q_\phi(z|g_t, s_t, a_t)$ that approximates the posterior distribution
+- **Prior network:** $p_\psi(z|s_t, a_t)$ that models the latent space conditioned on current context
+- **Decoder network:** $p_\theta(g_t|z, s_t, a_t)$ that reconstructs subgoals from latent representations
+
+{4}------------------------------------------------
+
+The CVAE training objective combines reconstruction accuracy with regularization:
+
+$$\mathcal{L}_{\text{CVAE}} = -\mathbb{E}_{q_\phi(z|g_t, s_t, a_t)} [\log p_\theta(g_t|z, s_t, a_t)] + \beta D_{\text{KL}}(q_\phi(z|g_t, s_t, a_t) \| p_\psi(z|s_t, a_t)) \quad (7)$$
+
+To maintain directional consistency between current states and target subgoals, we introduce an additional cosine similarity loss:
+
+$$\mathcal{L}_{\text{sim}} = -\frac{1}{2} \left( 1 + \frac{\hat{g}_t \cdot g_t}{\|\hat{g}_t\| \|g_t\|} \right) \quad (8)$$
+
+where $\hat{g}_t$ represents the CVAE-generated subgoal and $g_t$ is the ground-truth subgoal. The complete training objective is:
+
+$$\mathcal{L}_{\text{total}} = \mathcal{L}_{\text{CVAE}} + \mathcal{L}_{\text{sim}} \quad (9)$$
+
+The CVAE framework ensures that generated subgoals remain within the training distribution. This is achieved via the KL divergence term in the objective function, which regularizes the latent space to prevent the decoder from generating out-of-distribution subgoals.
+
+### 4.2 REWARD SHAPING FOR OFFLINE RL
+
+#### 4.2.1 SUB-GOAL-GUIDED REWARD AUGMENTATION
+
+The learned CVAE generates contextually relevant sub-goals during offline RL training. For each state-action pair $(s_t, a_t)$ in a training batch $\mathcal{B} = \{(s_t, a_t)\}_{t=1}^N$ , we generate corresponding subgoals:
+
+$$\hat{g}_t = G_\phi(s_t, a_t), \quad \forall (s_t, a_t) \in \mathcal{B} \quad (10)$$
+
+where $G_\phi$ represents the trained CVAE decoder network.
+
+To measure progress toward these generated sub-goals, we compute a normalized similarity between the next state $s'_t$ and the predicted sub-goal $\hat{g}_t$ :
+
+$$\text{sim}(s'_t, \hat{g}_t) = \frac{s'_t \cdot \hat{g}_t}{\|s'_t\| \|\hat{g}_t\|} \quad (11)$$
+
+$$r_{\text{shape}}(s'_t, \hat{g}_t) = \frac{\text{sim}(s'_t, \hat{g}_t) + 1}{2} \quad (12)$$
+
+The normalization ensures $r_{\text{shape}} \in [0, 1]$ , providing a consistent scale for reward combination. The resulting similarity-based reward provides an auxiliary signal that guides the policy toward preference-aligned subgoals. This mechanism effectively constrains the policy to regions well-supported by the training data and thereby mitigating catastrophic extrapolation errors.
+
+#### 4.2.2 INTEGRATED REWARD SIGNAL
+
+The final reward is the weighted sum of the original reward model output and the subgoal-based shaping term:
+
+$$r_{\text{final}}(s_t, a_t, s'_t) = r_{\text{model}}(s_t, a_t) + \lambda r_{\text{shape}}(s'_t, \hat{g}_t) \quad (13)$$
+
+where $\lambda \in [-1, 1]$ is a carefully chosen hyperparameter that balances the contribution of subgoal guidance without overwhelming the primary reward signal. This formulation preserves the original task objectives while providing auxiliary guidance toward meaningful intermediate states.
+
+## 5 EXPERIMENT
+
+**Benchmarks** We evaluate our approach against state-of-the-art offline preference-based RL methods on three widely-adopted benchmarks: D4RL Gym Locomotion (Fu et al., 2020), Robosuite robotmimic (Mandlekar et al., 2021), and Meta-World (Yu et al., 2019). Following established protocols from prior work (Brockman et al., 2016; Zhu et al., 2025), we conduct evaluations across diverse task domains and report average normalized scores for D4RL and success rates for Robomimic and Meta-World.
+
+{5}------------------------------------------------
+
+Table 1: Performance Comparison Across Models and Tasks. We report average normalized scores on Gym-MuJoCo locomotion tasks in D4RL and success rates on Robosuite and Meta-World manipulation tasks. For D4RL tasks, *hop* and *walk* represent hopper and walker2d, where *m*, *r*, and *e* denote medium, replay, and expert, respectively. For Robosuite tasks (lift, can), *ph* and *mh* denote proficient-human and multi-human datasets. For Meta-World, we evaluate on drawer-open and plate-slide tasks. All scores are reported as mean $\pm$ std across 5 random seeds, with **bold** indicating methods within the top 95% performance. Average performance across all tasks is shown in the final column. Note that oracle average is computed over 8 tasks excluding Meta-World.
+
+| Dataset | Oracle | MR | PT | IPL | HPL | CPL | DTR | SPOT(ours) |
+|-|-|-|-|-|-|-|-|-|
+| D4RL Locomotion Tasks | | | | | | | | |
+| hop-m-r | 92.02 7.23 | 37.21 $\pm$ 12.53 | 52.15 $\pm$ 25.94 | 74.96 $\pm$ 5.79 | 79.89 $\pm$ 10.01 | 62.21 $\pm$ 6.40 | 94.18 0.28 | 85.08 $\pm$ 1.32 |
+| hop-m-e | 62.10 $\pm$ 30.42 | 63.60 $\pm$ 25.42 | 74.46 $\pm$ 4.33 | 42.11 $\pm$ 8.93 | 95.30 $\pm$ 10.66 | 44.97 $\pm$ 44.74 | 102.12 6.79 | 98.73 7.50 |
+| walk-m-r | 67.59 $\pm$ 7.91 | 71.39 $\pm$ 2.66 | 73.85 3.18 | 47.05 $\pm$ 15.24 | 49.89 $\pm$ 10.49 | 36.10 $\pm$ 12.61 | 69.09 $\pm$ 4.85 | 76.89 2.46 |
+| walk-m-e | 108.72 1.86 | 110.88 0.76 | 110.6 0.43 | 107.78 0.95 | 103.14 $\pm$ 2.49 | 108.98 0.15 | 110.96 0.37 | 110.06 0.28 |
+| Robosuite Manipulation Tasks | | | | | | | | |
+| lift-mh | 81.62 $\pm$ 5.54 | 95.62 2.23 | 68.46 $\pm$ 10.02 | 84.49 $\pm$ 4.28 | 88.37 $\pm$ 3.06 | 18.79 $\pm$ 5.19 | 22.30 $\pm$ 21.96 | 65.17 $\pm$ 12.57 |
+| lift-ph | 98.43 1.15 | 87.40 $\pm$ 10.65 | 95.50 1.90 | 95.81 3.04 | 61.04 $\pm$ 7.61 | 28.41 $\pm$ 5.85 | 9.86 $\pm$ 4.31 | 97.12 1.81 |
+| can-mh | 34.30 $\pm$ 6.95 | 47.95 $\pm$ 2.29 | 53.06 $\pm$ 14.48 | 41.12 $\pm$ 2.21 | 35.19 $\pm$ 12.25 | 12.34 $\pm$ 5.44 | 60.28 2.56 | 60.55 1.65 |
+| can-ph | 73.25 2.70 | 51.90 $\pm$ 6.58 | 48.74 $\pm$ 5.82 | 67.98 $\pm$ 3.41 | 10.90 $\pm$ 4.33 | 9.15 $\pm$ 2.40 | 39.82 $\pm$ 8.25 | 63.82 $\pm$ 5.64 |
+| Meta-World Manipulation Tasks | | | | | | | | |
+| drawer-open | — | 86.6 14.3 | 42.8 $\pm$ 29.1 | 87.64 6.99 | 83.13 $\pm$ 12.64 | 75.48 $\pm$ 7.42 | 26.90 $\pm$ 24.09 | 66.80 $\pm$ 18.05 |
+| plate-slide | — | 51.5 $\pm$ 11.9 | 51.0 $\pm$ 2.8 | 51.18 $\pm$ 6.63 | 28.73 $\pm$ 12.22 | 53.41 $\pm$ 4.94 | 5.24 $\pm$ 5.07 | 64.0 4.1 |
+| Average | 77.25 | 73.61 | 74.76 | 73.24 | 67.96 | 44.98 | 54.08 | 78.82 |
+| Avg. Std | 11.89 | 11.51 | 13.80 | 6.95 | 9.36 | 9.51 | 7.85 | 7.76 |
+
+**Baselines** For comparative analysis, we establish a comprehensive set of baselines encompassing several key approaches in preference-based learning. These include Oracle reward (ground-truth reward from the dataset), Markovian Reward (MR) (Christiano et al., 2017a), Preference Transformer (PT) (Kim et al., 2023), Inverse Preference Learning (IPL) (Hejna & Sadigh, 2023), Hindsight Preference Learning (HPL) (Gao et al., 2024), Contrastive Preference Learning (CPL) (Hejna et al.), and In-Dataset Trajectory Return Regularization (DTR) (Tu et al., 2025). We adopt Implicit Q-Learning (IQL) (Kostrikov et al., 2021) as our core reinforcement learning algorithm, given its established track record in previous research. Each baseline method offers distinct characteristics: MR employs the Bradley-Terry model for preference-based reward extraction, PT implements a causal transformer architecture for non-Markovian reward inference, IPL demonstrates reward-free preference learning, HPL utilizes a variational autoencoder framework to predict future segments for reward labeling, CPL combines a regret-based preference model with contrastive objectives over preferred and non-preferred trajectory segments, and DTR regularizes policy learning toward high-return in-dataset trajectories to stabilize offline RL under learned rewards.
+
+**Setup** The experimental setup utilize a training configuration wherein the importance weight Top-K% is set to 10, KL divergence term $\beta$ is fixed to 1, and the reward coefficient $\lambda$ is fixed at 1. Ablation studies about Top-K% at Section 5.2.1.
+
+### 5.1 BENCHMARK RESULT
+
+Our empirical results demonstrate that reward shaping with predicted subgoals significantly enhances the performance of offline Preference-based RL. Table 1 presents a comprehensive evaluation, confirming the consistent superiority of our approach across multiple benchmarks. In the hopper environment, SPOT achieves state-of-the-art performance on both medium-replay and medium-expert datasets, significantly outperforming existing benchmarks while maintaining notably low variance. The walker2d environment further validates our method’s effectiveness, exhibiting remarkable stability across various data distributions. In manipulation tasks, our approach demonstrates consistent efficacy across different levels of demonstration quality, consistently achieving or approaching top-tier performance metrics. For meta-world, our method yields modest but meaning-
+
+{6}------------------------------------------------
+
+ful improvements over baseline approaches. Particularly noteworthy is the substantial performance enhancement in the drawer-open task compared to PT, despite its historically challenging low-reward characteristics, though it falls short of the absolute peak performance while still maintaining incremental improvements. Importantly, our approach achieves the highest mean performance of 78.82 across all evaluated tasks, substantiating the effectiveness of incorporating attention-guided subgoals in the offline preference-based reinforcement learning paradigm. Additionally, it demonstrates significantly reduced average standard deviation from 13.80 (PT) to 7.76.
+
+### 5.2 ABLATION STUDY
+
+#### 5.2.1 ANALYSIS OF TOP-K% SUBGOAL PERFORMANCE
+
+Table 2: Performance analysis across different Top-K% percentile groups.
+
+| Percentile | hopper-medium-expert | Can-mh |
+|-|-|-|
+| Top 10% (SPOT) | 99.37 8.35 | 59.56 0.23 |
+| Top 10–20% | 83.19 $\pm$ 2.85 | 54.10 $\pm$ 7.38 |
+| Bottom 10–20% | 69.90 $\pm$ 39.12 | 50.38 $\pm$ 12.79 |
+| Bottom 10% | 55.24 $\pm$ 24.39 | 50.04 $\pm$ 3.67 |
+
+The analysis of performance across different Top-K% groups over 3 seeds reveals interesting patterns in how the importance weights correlate with performance. In both the hopper-medium-expert-v2 and Can-mh environments, we observe a clear hierarchical performance pattern that aligns with the percentile rankings. The top 10% group achieves the highest performance, followed closely by the top 10–20% group. This suggests that the higher importance weights effectively identify critical subgoal within the trajectories. Notably, there is a substantial performance gap between the upper and lower percentile groups in both environments. The bottom 10–20% group shows a second lowest performance with significantly higher variance in performance, while the bottom 10% group exhibits the lowest performance compared to other percentile groups. This increasing variance in lower percentiles suggests that lower attention weight subgoals may lead to more unstable performance outcomes. These findings suggest that the strategic extraction of subgoals significantly enhances reinforcement learning outcomes through more effective reward shaping mechanisms.
+
+#### 5.2.2 ANALYSIS OF REWARD SHAPING METHODS AND WEIGHT SELECTION
+
+We conduct comparative analysis on different weight magnitudes ( $\lambda \in [-1, 1]$ ) over three widely-used reward shaping methods.
+
+1. **Negative Distance:** the Euclidean distance between current states and predicted subgoals.
+2. **Potential-based** (Ng et al., 1999): Traditionally guaranteeing policy invariance with ground-truth rewards where policy invariance cannot be ensured with predicted rewards
+3. **Cosine Similarity:** Capturing semantic relationships between states and predicted subgoals
+
+Table 3 demonstrates that cosine similarity achieves superior performance on both environments. The potential-based method shows good performance on walker but higher variance on hopper, while negative distance exhibits sensitivity to weight selection with instability on walker. Weight analysis reveals that positive weights generally yield more stable performance, with weight 1.0 being particularly effective for cosine similarity. This indicates that positive reinforcement toward subgoals outperforms penalizing deviation, and that semantic relationships provide more informative guidance than other reward shaping methods for policy learning.
+
+### 5.3 EXTRAPOLATION ERROR ANALYSIS IN SPOT
+
+To validate SPOT’s effectiveness at mitigating extrapolation error, we analyze how proximity to predicted subgoals influences extrapolation errors. We define extrapolation error as the absolute difference between predicted reward and ground truth reward. Since true ground-truth rewards are unavailable in real environments, we use human-labeled rewards from the dataset as proxy ground
+
+{7}------------------------------------------------
+
+Table 3: Performance (mean $\pm$ std) of reward shaping on hopper-medium-expert and walker2d-medium-replay, averaged over 3 seeds.
+
+| Env | Method | Weight ( $\lambda$ ) | | | | | |
+|-|-|-|-|-|-|-|-|
+| | | -1.0 | -0.5 | -0.1 | 0.1 | 0.5 | 1.0 |
+| hopper-m | negative distance | 43.09 $\pm$ 40.01 | 64.32 $\pm$ 44.12 | 75.12 $\pm$ 30.83 | 49.27 $\pm$ 41.61 | 55.01 $\pm$ 27.28 | 86.03 $\pm$ 9.77 |
+| | potential based | 51.01 $\pm$ 45.45 | 62.54 $\pm$ 41.23 | 96.03 $\pm$ 3.14 | 84.98 $\pm$ 11.87 | 45.80 $\pm$ 49.24 | 77.95 $\pm$ 36.02 |
+| | cosine similarity | 62.78 38.47 | 44.28 46.02 | 56.65 33.46 | 55.85 42.94 | 63.89 51.95 | 97.36 10.26 |
+| walker2d-m | negative distance | 19.38 $\pm$ 6.41 | 13.93 $\pm$ 1.18 | 49.80 $\pm$ 19.67 | 71.23 $\pm$ 2.38 | 0.09 $\pm$ 0.62 | 0.23 $\pm$ 0.06 |
+| | potential based | 75.47 $\pm$ 2.20 | 76.71 $\pm$ 1.53 | 76.15 $\pm$ 3.72 | 75.26 $\pm$ 0.98 | 74.45 $\pm$ 5.41 | 50.60 $\pm$ 17.71 |
+| | cosine similarity | 0.69 1.60 | 75.83 1.39 | 74.84 0.78 | 76.66 1.96 | 75.30 2.73 | 77.51 2.60 |
+
+
+
+Figure 2 consists of two line plots. Plot (a) shows 'Extrapolation Error' on the y-axis (ranging from 0.8 to 1.2) against 'Similarity' on the x-axis (ranging from 0.3 to 1.0). It compares 'PT (In-Distribution)' (red line with circles) and 'PT (OOD)' (blue line with circles). The red line starts at an error of ~0.95 and decreases to ~0.85 as similarity increases. The blue line starts at ~1.22 and decreases to ~0.85 as similarity increases. Plot (b) shows 'Extrapolation Error' on the y-axis (ranging from 0.4 to 1.2) against 'Similarity' on the x-axis (ranging from 0.3 to 1.0). It compares 'PT (OOD)' (blue line with circles) and 'SPOT (OOD)' (orange line with circles). The blue line starts at ~1.22 and decreases to ~0.85. The orange line starts at ~0.98 and decreases to ~0.45 as similarity increases.
+
+Figure 2: Extrapolation error analysis based on proximity to predicted subgoals. (a) Extrapolation Error vs Similarity for In-Distribution vs OOD. (b) Extrapolation Error vs Similarity for PT vs SPOT in OOD setting.
+
+(a) Extrapolation Error: In-Distribution vs OOD.
+
+(b) Extrapolation Error: PT vs. SPOT (OOD)
+
+Figure 2: Extrapolation error analysis based on proximity to predicted subgoals. where a higher similarity value indicates closer proximity. (a) Extrapolation error of the PT on in-distribution versus out-of-distribution (OOD) data. (b) A direct comparison of extrapolation error between PT and our method, SPOT, in OOD setting.
+
+truth. We measure distributional proximity using cosine similarity between the predicted subgoal state and the current state. In figure 2a, We evaluate the performance under two distributional settings: in-distribution setting only on the reward model training data, and out-of-distribution (OOD) setting on trajectories used during policy optimization that exclude from training data. The result confirms that out-of-distribution (OOD) scenarios exhibit substantially higher prediction errors compared to in-distribution data. States with high similarity to subgoals tend to exhibit reduced extrapolation errors. Figure 2b demonstrates that as cosine similarity approaches 1, the extrapolation error significantly reduces for both methods. Notably, SPOT consistently outperforms the Preference Transformer (PT) baseline, showing substantially lower extrapolation errors across all distance ranges. Subgoal-guided reward shaping approach effectively reduces this extrapolation gap particularly in OOD settings compared to PT, demonstrating its robustness in handling distribution shifts through structured intermediate goal prediction.
+
+### 5.4 SUBGOAL EXTRACTION CASE STUDY
+
+Figure 3 demonstrates the forward-looking nature of our subgoal extraction mechanism through a qualitative analysis in the hopper environment. We compare the original observations with their corresponding predicted subgoals during critical phases of a jumping. During the pre-jump phase (Figure 3a), the agent exhibits a preparatory stance, while the predicted subgoal (Figure 3b) shows an optimal jumping with extended limbs and forward momentum. Conversely, during the jumping phase (Figure 3c), when the agent is mid-air, the corresponding subgoal (Figure 3d) proactively displays a landing-ready posture with bent joints positioned for safe ground contact. Our case study clearly shows that critical moments captured via subgoals are well-aligned with human preferences. This temporal offset, where subgoals consistently lead actual execution by approximately one timestep forward, empirically validates the quality and effectiveness of our subgoal generation mechanism.
+
+{8}------------------------------------------------
+
+432
+433
+434
+435
+436
+437
+438
+439
+440
+441
+
+
+
+Figure 3: Qualitative analysis of subgoal extraction in the hopper environment. The figure shows four panels: (a) Pre-jump observation, (b) Predicted jumping, (c) Mid-air observation, and (d) Predicted landing. Each panel shows a 2D hopper robot on a checkered floor, with its legs in different positions corresponding to the described phase.
+
+(a) Pre-jump observation (b) Predicted jumping (c) Mid-air observation (d) Predicted landing
+
+442
+443
+444
+445
+
+Figure 3: Qualitative analysis of subgoal extraction in the hopper environment. The predicted subgoals demonstrate forward-looking behavior: (a-b) optimal jumping configuration predicted during preparatory phase, and (c-d) landing-ready posture predicted during aerial phase. This temporal anticipation validates the predictive nature of our subgoal generation mechanism.
+
+446
+447
+448
+449
+
+Table 4: Performance comparison between Preference Transformer and SPOT. The query number is different for each environment: hopper-medium-expert-v2 uses {100, 50, 30}, while walker2d-medium-replay-v2 uses {500, 100, 50}.
+
+450
+451
+452
+453
+454
+455
+456
+457
+458
+459
+460
+461
+462
+
+| Environment | Model | Number of Query | Score |
+|-|-|-|-|
+| hopper-medium-expert | Preference Transformer | 100 | $76.21 \pm 1.74$ |
+| | | 50 | $75.55 \pm 2.12$ |
+| | | 30 | $68.06 \pm 4.92$ |
+| | SPOT | 100 | $99.37 \pm 8.35$ |
+| | | 50 | $85.99 \pm 12.20$ |
+| | | 30 | $85.09 \pm 8.54$ |
+| walker2d-medium-replay | Preference Transformer | 500 | $73.64 \pm 2.12$ |
+| | | 100 | $73.43 \pm 7.60$ |
+| | | 50 | $71.98 \pm 4.93$ |
+| | SPOT | 500 | $77.51 \pm 2.60$ |
+| | | 100 | $75.87 \pm 2.03$ |
+| | | 50 | $75.39 \pm 3.32$ |
+
+463
+464
+465
+
+### 5.5 QUERY EFFICIENCY
+
+466
+467
+468
+469
+470
+471
+472
+473
+474
+475
+
+Another interesting benefit of SPOT is its query efficiency. We conducted comparative experiments across different query numbers and environments. The results in Table 4 demonstrate that SPOT achieves superior performance, generally in the hopper-medium-expert-v2 environment outperforming the preference Transformer. In the walker2d-medium-replay-v2 environment, both models showed consistent performance across varying query lengths, with our enhanced model maintaining stable scores around 75 even as queries decreased from 500 to 50. Even with a query length of 50, it maintains consistent performance, whereas the Preference Transformer shows a performance decline. This stability and outstanding performance validates our method that subgoal utilization through CVAE can enhance query efficiency by providing shaped rewards that effectively compensate for reduced preference queries.
+
+476
+477
+478
+
+## 6 CONCLUSION
+
+479
+480
+481
+482
+483
+484
+485
+
+**Summary** We present SPOT (Subgoal-based Policy Optimization through Attention Weight), a framework that mitigates extrapolation errors in offline preference-based reinforcement learning via preference-aligned subgoals. Our approach identifies critical decision points derived from attention weights as subgoals, uses these waypoints to shape rewards, thereby reducing extrapolation error. Not only does SPOT mitigate extrapolation error but it also outperforms conventional preference-based methods across diverse benchmarks, validating the efficacy of subgoals. Our findings establish a promising direction to advance reliability and practical applicability via integrating subgoals with offline PbRL.
+
+{9}------------------------------------------------
+
+146 **Limitation & Future work** While our approach is designed to complement an existing preference
+ 147 learning framework that provides state-level importance weights, we focus our validation on the
+ 148 offline setting. Given that offline learning scenarios present more challenging conditions due to
+ 149 their inherent instabilities and limited exploration capabilities, we specifically chose this setting to
+ 150 test our method’s fundamental effectiveness. Although our approach could be extended to online
+ 151 preference learning frameworks such as Hindsight Prior Learning (Verma & Susa, 2024), we leave
+ 152 the exploration of these extensions as future work. Furthermore, our work assumes relatively clean
+ 153 preference labels following standard conventions in offline PbRL literature. Investigating robust-
+ 154 ness to noisy preferences, where annotators provide inconsistent or conflicting labels, represents an
+ 155 important direction for future work, particularly as real-world deployment scenarios may involve
+ 156 imperfect human feedback.
+
+## REFERENCES
+
+- 149 Riad Akroun, Marc Schoenauer, and Michele Sebag. Preference-based policy learning. In Dimi-
+ 150 trios Gunopoulos, Thomas Hofmann, Donato Malerba, and Michalis Vazirgiannis (eds.), *Machine*
+ 151 *Learning and Knowledge Discovery in Databases*, pp. 12–27, Berlin, Heidelberg, 2011. Springer
+ 152 Berlin Heidelberg. ISBN 978-3-642-23780-5.
+- 153 Gaon An, Junhyeok Lee, Xingdong Zuo, Norio Kosaka, Kyung-Min Kim, and Hyun Oh Song.
+ 154 Direct preference-based policy optimization without reward modeling. In *Neural Information*
+ 155 *Processing Systems*, 2023.
+- 156 Fahiem Bacchus, Craig Boutilier, and Adam Grove. Rewarding behaviors. In *Proceedings of the*
+ 157 *National Conference on Artificial Intelligence*, pp. 1160–1167, 1996.
+- 158 James Bradbury, Roy Frostig, Peter Hawkins, Matthew James Johnson, Chris Leary, Dougal
+ 159 Maclaurin, George Necula, Adam Paszke, Jake VanderPlas, Skye Wanderman-Milne, and Qiao
+ 160 Zhang. JAX: composable transformations of Python+NumPy programs, 2018. URL .
+- 161 Ralph Allan Bradley and Milton E. Terry. Rank analysis of incomplete block designs: I. the method
+ 162 of paired comparisons. *Biometrika*, 39(3/4):324–345, 1952. ISSN 00063444, 14643510. URL
+ 163 .
+- 164 Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and
+ 165 Wojciech Zaremba. Openai gym, 2016. URL .
+- 166 Heewoong Choi, Sangwon Jung, Hongjoon Ahn, and Taesup Moon. Listwise reward estimation
+ 167 for offline preference-based reinforcement learning. In *Proceedings of the 41st International*
+ 168 *Conference on Machine Learning*, ICML’24. JMLR.org, 2025.
+- 169 Paul F Christiano, Jan Leike, Tom Brown, Miljan Martic, Shane Legg, and Dario
+ 170 Amodei. Deep reinforcement learning from human preferences. In I. Guyon, U. Von
+ 171 Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), *Ad-*
+ 172 *vances in Neural Information Processing Systems*, volume 30. Curran Associates, Inc.,
+ 173 2017a. URL [https://proceedings.neurips.cc/paper\\_files/paper/2017/](https://proceedings.neurips.cc/paper_files/paper/2017/file/d5e2c0adad503c91f91df240d0cd4e49-Paper.pdf)
+ 174 [file/d5e2c0adad503c91f91df240d0cd4e49-Paper.pdf](https://proceedings.neurips.cc/paper_files/paper/2017/file/d5e2c0adad503c91f91df240d0cd4e49-Paper.pdf).
+- 175 Paul F Christiano, Jan Leike, Tom Brown, Miljan Martic, Shane Legg, and Dario
+ 176 Amodei. Deep reinforcement learning from human preferences. In I. Guyon, U. Von
+ 177 Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett (eds.), *Ad-*
+ 178 *vances in Neural Information Processing Systems*, volume 30. Curran Associates, Inc.,
+ 179 2017b. URL [https://proceedings.neurips.cc/paper\\_files/paper/2017/](https://proceedings.neurips.cc/paper_files/paper/2017/file/d5e2c0adad503c91f91df240d0cd4e49-Paper.pdf)
+ 180 [file/d5e2c0adad503c91f91df240d0cd4e49-Paper.pdf](https://proceedings.neurips.cc/paper_files/paper/2017/file/d5e2c0adad503c91f91df240d0cd4e49-Paper.pdf).
+- 181 Joseph Early, Tom Bewley, Christine Evers, and Sarvapali Ramchurn. Non-markovian reward
+ 182 modelling from trajectory labels via interpretable multiple instance learning. In S. Koyejo,
+ 183 S. Mohamed, A. Agarwal, D. Belgrave, K. Cho, and A. Oh (eds.), *Advances in Neu-*
+ 184 *ral Information Processing Systems*, volume 35, pp. 27652–27663. Curran Associates, Inc.,
+ 185 2022. URL [https://proceedings.neurips.cc/paper\\_files/paper/2022/](https://proceedings.neurips.cc/paper_files/paper/2022/file/b157cfde6794e93b2353b9712bbd45a5-Paper-Conference.pdf)
+ 186 [file/b157cfde6794e93b2353b9712bbd45a5-Paper-Conference.pdf](https://proceedings.neurips.cc/paper_files/paper/2022/file/b157cfde6794e93b2353b9712bbd45a5-Paper-Conference.pdf).
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/5Y4wvlp923.txt b/papers/5Y4wvlp923.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ee57db2703b58785bfe92ce0abadfbe542a19e19
--- /dev/null
+++ b/papers/5Y4wvlp923.txt
@@ -0,0 +1,375 @@
+
+
+{0}------------------------------------------------
+
+# SEMANTIC DISENTANGLEMENT ERROR: A PLUGGABLE MECHANISM FOR BALANCED CONTRASTIVE TIME-SERIES REPRESENTATION
+
+###### Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Contrastive learning has become a cornerstone in unsupervised time-series representation learning. Methods like CoST rely on dual-view encoders to capture semantic components such as trend and seasonality. However, we observe that under certain distributional regimes, dominant components (e.g., trend) often suppress minor ones (e.g., seasonality), leading to biased representations and degraded downstream performance. In this work, we propose a simple yet effective method to explicitly quantify and mitigate semantic imbalance during contrastive training. We introduce the Semantic Disentanglement Error (SDE), a directional measure of component recoverability, and integrate it into an adaptive weighting strategy for view-specific contrastive objectives. Our approach can be plugged into existing frameworks like CoST without architectural changes. Experiments on benchmark datasets demonstrate consistent gains in forecasting accuracy and representational robustness, especially under semantic skew conditions.
+
+## 1 INTRODUCTION
+
+Self-supervised learning has transformed representation learning across domains such as vision, language, and speech. In time-series analysis, contrastive frameworks (Franceschi et al., 2019; Woo et al., 2022) have achieved strong performance by aligning augmented views of temporal segments. A prominent example is TS2Vec (Yue et al., 2021), which learns universal time-series embeddings through time-domain contrastive learning and invariance to augmentations.
+
+Despite their empirical success, these models often fail to balance semantic components of time-series data. For instance, weak but semantically important periodic signals are frequently overshadowed by dominant trend components. This imbalance degrades the utility of learned embeddings in tasks such as long-term forecasting, anomaly detection, and classification.
+
+In this work, we identify and analyze three limitations of current contrastive approaches:
+
+1. **No inductive bias for decomposition.** Current models treat the signal holistically, ignoring the natural separation between trend-like and periodic dynamics (Shumway & Stoffer, 2017).
+2. **Time-domain-only contrastive objectives.** The lack of frequency-domain alignment biases the embeddings toward high-amplitude components while suppressing small periodicities.
+3. **Isotropic embedding collapse.** Strong invariance pressure across augmentations homogenizes embeddings, erasing weak semantic cues.
+
+To probe these limitations, we perform controlled ablation experiments. First, we introduce spectral-domain regularization, inspired by frequency-aware representations (Wu et al., 2021; Woo et al., 2022), but find that regularization alone does not guide optimization effectively. Second, we validate that frequency-aware contrastive learning directly addresses the time-domain limitation, consistent with the findings of CoST. Finally, we demonstrate that asymmetric perceptual weighting alleviates embedding collapse by explicitly rebalancing losses across semantic subspaces.
+
+Our contributions are threefold:
+
+- **We diagnose the semantic imbalance problem** in TS2Vec and related contrastive methods, linking it to structural and objective-level design choices.
+
+{1}------------------------------------------------
+
+- We provide **systematic ablations** that disentangle the effects of spectral regularization, frequency-aware objectives, and asymmetry weighting.
+- We propose a **semantic rebalancing framework** that integrates frequency-domain and asymmetry-aware mechanisms, leading to improved representation of weak components.
+
+## 2 RELATED WORK
+
+### 2.1 SELF-SUPERVISED REPRESENTATION LEARNING IN NLP AND VISION
+
+The success of representation learning in sequential domains can be traced to word2vec (Mikolov et al., 2013), which showed that semantic relationships could be captured by training embeddings with predictive objectives. Subsequent developments in self-supervised learning extended these ideas to vision (Chen et al., 2020; He et al., 2019) and speech (Baevski et al., 2020), where contrastive and predictive frameworks dominate. These works demonstrate that carefully designed pre-text tasks and objectives can uncover latent semantic structures even without explicit supervision.
+
+### 2.2 CONTRASTIVE LEARNING FOR TIME-SERIES
+
+Inspired by NLP and vision, time-series research has adapted contrastive paradigms. Early works such as TNC (Tonekaboni et al., 2021) and CPC (van den Oord et al., 2018) explored predictive coding for sequential data. TS2Vec (Yue et al., 2021) advanced this line by introducing hierarchical contrastive objectives across temporal resolutions, achieving strong performance on forecasting and classification. However, TS2Vec focuses exclusively on time-domain alignment, lacking mechanisms to explicitly preserve weak periodic or frequency-specific components.
+
+### 2.3 FREQUENCY-AWARE TIME-SERIES MODELS
+
+Recent works emphasize the importance of frequency information in time-series representation. For instance, Autoformer (Wu et al., 2021) and FEDformer (Zhou et al., 2022) leverage frequency-domain decomposition for forecasting. CoST (Woo et al., 2022) introduces frequency-aware contrastive learning, explicitly aligning both temporal and spectral views. These findings suggest that frequency-domain objectives can mitigate the underrepresentation of weak periodic patterns—a limitation we also identify in TS2Vec.
+
+### 2.4 EMBEDDING COLLAPSE AND SEMANTIC BALANCE
+
+Contrastive methods often encourage invariance across augmentations (Chen et al., 2020; Grill et al., 2020), but this may induce isotropic embedding collapse (Wang & Isola, 2020), where weak signals are washed out. While recent solutions propose regularizers or asymmetric weighting (Zbontar et al., 2021; Bardes et al., 2021), their application to time-series remains limited. Our work bridges this gap by analyzing how isotropic collapse manifests in TS2Vec and by introducing asymmetric perceptual weighting to rebalance semantic components.
+
+## 3 METHODS
+
+### 3.1 PROBLEM SETUP
+
+Let a univariate or multivariate time series be denoted as:
+
+$$X = \{x_1, x_2, \dots, x_T\}, \quad x_t \in \mathbb{R}^d,$$
+
+where $T$ is the sequence length and $d$ is the dimensionality of each observation. The goal of representation learning for time series is to learn an encoder function
+
+$$v(\cdot; \theta) : \mathbb{R}^{T \times d} \rightarrow \mathbb{R}^k,$$
+
+that maps an input sequence to a fixed-length representation in a latent space $\mathbb{R}^k$ .
+
+{2}------------------------------------------------
+
+### 3.2 SEMANTIC SEPARABILITY ERROR (SDE)
+
+We introduce Semantic Separability Error (SDE) to evaluate whether a representation model preserves component-level semantics when multiple temporal factors are combined. Consider a time series signal $\mathbf{x} = \mathbf{a} + \mathbf{b}$ , where $\mathbf{a}$ and $\mathbf{b}$ denote distinct semantic components (e.g., trend and periodicity). Let $v(\cdot)$ denote the learned representation function.
+
+We define the separability of component $\mathbf{a}$ in the composite $\mathbf{a} + \mathbf{b}$ as:
+
+$$\text{SDE}_{\mathbf{a}, \mathbf{b}} = 1 - \cos(v(\mathbf{a} + \mathbf{b}) - v(\mathbf{b}), v(\mathbf{a}))$$
+
+A small $\text{SDE}_{\mathbf{a}, \mathbf{b}}$ indicates that the contribution of $\mathbf{a}$ is linearly recoverable from the composite embedding. By symmetry, we can also define $\text{SDE}_{\mathbf{b}, \mathbf{a}}$ . This metric is inspired by vector arithmetic in word embeddings (Baevski et al., 2020), where semantic differences are preserved as linear relations in embedding space.
+
+### 3.3 ASYMMETRY ANALYSIS
+
+In practice, we observe that $\text{SDE}_{\mathbf{a}, \mathbf{b}}$ and $\text{SDE}_{\mathbf{b}, \mathbf{a}}$ can differ substantially, implying that some components are more easily reconstructed than others. For instance,
+
+$$\text{SDE}_{\text{trend, period}} \ll \text{SDE}_{\text{period, trend}}$$
+
+suggests that trend information dominates, while periodic information is more weakly represented. To quantify this imbalance, we define the asymmetry factor:
+
+$$\Delta = \text{SDE}_{\text{period, trend}} - \text{SDE}_{\text{trend, period}}$$
+
+A large $\Delta$ indicates that periodic components are underrepresented relative to trend components.
+
+### 3.4 ASYMMETRIC WEIGHTING OF LOSS FUNCTIONS
+
+To mitigate semantic imbalance, we introduce an asymmetric weighting mechanism that dynamically adjusts the emphasis placed on different components during training. We build upon the CoST framework (Woo et al., 2022), which already disentangles seasonal and trend representations with separate contrastive objectives:
+
+$L_{\text{season}}$ : contrastive loss for seasonal components.
+
+$L_{\text{trend}}$ : contrastive loss for trend components.
+
+Our modified objective is:
+
+$$L = (1 + \gamma \cdot \Delta)L_{\text{season}} + (1 + \gamma' \cdot (-\Delta))L_{\text{trend}}$$
+
+where $\gamma, \gamma' > 0$ are scaling hyperparameters.
+
+If periodic components are suppressed ( $\Delta > 0$ ), the weight on $L_{\text{season}}$ increases, encouraging the model to strengthen seasonal representations.
+
+Conversely, if trend components are weakened ( $\Delta < 0$ ), the weight on $L_{\text{trend}}$ increases.
+
+This dynamic adjustment ensures that both semantic components are preserved, preventing dominance of one representation over the other.
+
+### 3.5 DISCUSSION
+
+This approach integrates two complementary ideas:
+
+- SDE provides a quantitative probe of semantic recoverability in time-series embeddings.
+- Asymmetric Weighting turns this diagnostic into an actionable optimization signal that rebalances representation learning on-the-fly.
+
+Together, these mechanisms extend contrastive time-series learning to better capture the natural decomposition of temporal dynamics.
+
+{3}------------------------------------------------
+
+### 3.6 ILLUSTRATIVE FRAMEWORK
+
+The overall process is shown in Figure 1
+
+
+
+The diagram illustrates the CoST encoder framework. A time series is decomposed into seasonal and trend components. The SFD Encoder (Seasonal Loss) and TFD Encoder (Trend Loss) are shown. The asymmetry factor $\Delta$ is calculated as $\Delta = \text{SDE}_{(B,A)} - \text{SDE}_{(A,B)}$ . The seasonal loss is weighted by $1+\gamma\Delta$ and the trend loss by $1-\gamma\Delta$ .
+
+Figure 1: Illustrative Framework diagram. A time series is decomposed by the CoST encoder into seasonal and trend embeddings. The SFD Encoder (Seasonal Loss) and TFD Encoder (Trend Loss) are shown. The asymmetry factor Δ is calculated as SDE\_{(B,A)} - SDE\_{(A,B)}. The seasonal loss is weighted by 1+γΔ and the trend loss by 1-γΔ.
+
+Figure 1: A time series is decomposed by the CoST encoder into seasonal and trend embeddings. After computing the respective contrastive losses, we evaluate Semantic Separability Error (SDE) between components to obtain the asymmetry factor $\Delta$ . This factor dynamically re-weights the seasonal and trend contrastive losses, ensuring balanced representation of both components.
+
+## 4 EXPERIMENTS
+
+### 4.1 EXPERIMENTAL SETUP
+
+**Datasets.** We evaluate on three widely adopted benchmarks for time series forecasting and representation learning:
+
+- **ETT (Electricity Transformer Temperature)** (Zhou et al., 2020), consisting of four subsets (ETT1h/2, ETTm1/2) with different resolutions, measuring transformer oil temperature and related load features.
+- **Electricity** (Lai et al., 2017), containing hourly electricity consumption of 321 customers, often used for testing models’ ability to capture strong calendar-driven periodicities.
+- **Weather** (Wu et al., 2021), consisting of 21 meteorological indicators (e.g., temperature, humidity, wind speed) collected every 10 minutes, characterized by both trend and diurnal periodicity.
+
+**Baselines.** We compare our approach against state-of-the-art self-supervised representation learning methods:
+
+- **TS2Vec** (Yue et al., 2021), which applies hierarchical contrastive learning in the time domain.
+- **TNC** (Tonekaboni et al., 2021), which contrasts samples from temporal neighborhoods.
+- **CoST** (Woo et al., 2022), a contrastive multi-view method leveraging both temporal and frequency perspectives.
+
+**Metrics.** Following prior work, we report **Mean Squared Error (MSE)** and **Mean Absolute Error (MAE)** for forecasting tasks. Additionally, we evaluate the **Semantic Decomposition Error (SDE)**, proposed in Sec. 3, to quantify semantic imbalance between trend and periodic dynamics.
+
+**Implementation.** All methods are implemented in PyTorch. Models are trained with Adam ( $\text{lr}=1\text{e-}3$ ) and batch size of 32, for 100 epochs. For CoST and our variant, we follow the official implementations. For fair comparison, all baselines share the same input sequence length and forecasting horizons {24, 48, 96, 192}.
+
+{4}------------------------------------------------
+
+### 4.2 PRELIMINARY SDE ANALYSIS ON TS2VEC
+
+We first validate the existence of semantic imbalance in TS2Vec. To this end, we construct synthetic signals by mixing trend and periodic components with varying ratios. Table 1 reports the corresponding SDE values. Mean SDE values computed on a held-out synthetic test set of 1000 sequences. Each sequence is $x = a + b$ with $a$ a low-frequency trend and $b$ a sinusoidal seasonal component; $r = \text{std}(a)/\text{std}(b)$ controls dominance. Positive $\Delta$ indicates seasonality is underrepresented; negative $\Delta$ indicates trend is underrepresented.
+
+Table 1: SDE changes with component amplitude ratio (TS2Vec encoder)
+
+| Amplitude ratio $r = \frac{\text{std}(A)}{\text{std}(B)}$ | $SDE_{\text{trend,period}}$ | $SDE_{\text{period,trend}}$ | $\Delta = SDE_{\text{period,trend}} - SDE_{\text{trend,period}}$ |
+|-|-|-|-|
+| 0.1 | 1.3281 | 0.0347 | -1.2934 |
+| 0.2 | 1.378 | 0.0385 | -1.3395 |
+| 0.5 | 1.3502 | 0.0556 | -1.2946 |
+| 0.8 | 1.0244 | 0.1146 | -0.9098 |
+| 1(balanced) | 0.4384 | 0.4108 | -0.0276 |
+| 2 | 0.054 | 0.6633 | 0.6093 |
+| 5 | 0.0133 | 0.8407 | 0.8274 |
+| 8 | 0.0046 | 1.0193 | 1.0147 |
+| 10 | 0.0011 | 1.1083 | 1.1072 |
+
+The results confirm that TS2Vec struggles to balance both semantics: when trend dominates, periodicity is underestimated, and vice versa.
+
+### 4.3 ATTEMPT: DIRECT SDE REGULARIZATION
+
+A key observation is that contrastive learning on the raw signal $x$ treats all dynamics as a monolith, potentially suppressing weaker semantics such as periodicity. To quantify semantic imbalance, we define the **Semantic Decomposition Error (SDE)**.
+
+#### Decomposition of Trend and Periodic Components
+
+Given a time series $x \in \mathbb{R}^{T \times d}$ , we decompose it into: $x = a + b$ , where $a$ is the trend component, and $b$ is the periodic component. We obtain these via standard signal processing:
+
+- Trend extraction: A low-pass filter (e.g., moving average or Butterworth filter) is applied: $a = \text{LPF}(x)$ .
+- Periodic extraction: Defined as the residual of the signal after removing the trend: $b = x - a$
+
+This approach is consistent with classical time series decomposition methods (Shumway & Stoffer, 2017).
+
+#### Representation Embeddings
+
+Each component is then embedded using the same encoder $f_\theta(\cdot)$ as the main network:
+
+$$v(a) = f_\theta(a), \quad v(b) = f_\theta(b), \quad v(a + b) = f_\theta(x).$$
+
+#### Semantic Decomposition Error
+
+For components $a$ (trend) and $b$ (periodic), we define:
+
+$$\text{SDE}_{a,b} = 1 - \cos(v(a + b) - v(b), v(a)).$$
+
+Here, a smaller SDE value indicates that $a$ is linearly reconstructible from the composite representation, i.e., its semantics are preserved.
+
+#### Regularization Objective
+
+We integrate SDE into the training objective:
+
+$$\mathcal{L}_{\text{total}} = \mathcal{L}_{\text{contrastive}} + \lambda \cdot (\text{SDE}_{a,b} + \text{SDE}_{b,a}),$$
+
+where $\lambda$ balances the contrastive loss and decomposition regularization.
+
+This formulation enforces that both $a$ and $b$ are recoverable from the joint embedding, thereby encouraging balanced representations. However, as shown in Table 2, this modification does not improve performance. We hypothesize that SDE, defined as a diagnostic metric, fails to provide constructive optimization gradients when directly used as a regularizer.
+
+{5}------------------------------------------------
+
+Table 2: Univariate forecasting results (MSE) of TS2Vec vs. TS2Vec+SDE regularization.
+
+| | ETTm1 | | | | Electricity | | | | Weather | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | 24 | 48 | 96 | 288 | 24 | 48 | 168 | 336 | 24 | 48 | 168 | 336 |
+| TS2Vec | 0.016 | 0.027 | 0.048 | 0.101 | 0.261 | 0.303 | 0.449 | 0.665 | 0.102 | 0.146 | 0.217 | 0.231 |
+| with SDE Reg. | 0.017 | 0.027 | 0.05 | 0.126 | 0.266 | 0.312 | 0.508 | 0.676 | 0.112 | 0.152 | 0.221 | 0.246 |
+
+### 4.4 MULTI-VIEW CONTRASTIVE LEARNING WITH ASYMMETRIC PERCEPTUAL WEIGHTING
+
+To address the weakening of secondary semantic components observed in ts2vec, we build upon CoST’s multi-view contrastive learning framework and introduce a learnable fusion layer with asymmetric perceptual weighting.
+
+#### 4.4.1 CoST MULTI-VIEW CONTRASTIVE LEARNING
+
+CoST decomposes an input time series $\mathbf{x} \in \mathbb{R}^{T \times d}$ into trend and seasonal components via separate encoders:
+
+$$V_T(\mathbf{x}) \in \mathbb{R}^{T \times d_T}, \quad V_S(\mathbf{x}) \in \mathbb{R}^{T \times d_S}.$$
+
+We pool these outputs along the temporal dimension to obtain global embeddings:
+
+$$v(\mathbf{a}) = \text{pool}(V_T(\mathbf{x})), \quad v(\mathbf{b}) = \text{pool}(V_S(\mathbf{x})),$$
+
+representing the trend and seasonal features, respectively. Multi-view contrastive learning encourages invariance within each view under data augmentations while maintaining discriminative information across sequences. The standard CoST objective is:
+
+$$\mathcal{L}_{\text{CoST}} = \mathcal{L}_{\text{trend}} + \mathcal{L}_{\text{season}},$$
+
+#### 4.4.2 MLP-BASED COMPOSITE EMBEDDING
+
+To explicitly model interactions between trend and seasonal components, we introduce a small MLP $g_\phi$ that maps the concatenated embeddings $[v(\mathbf{a})||v(\mathbf{b})]$ to a composite embedding:
+
+$$v(\mathbf{a} + \mathbf{b}) = g_\phi([v(\mathbf{a})||v(\mathbf{b})]) \in \mathbb{R}^{d_C}.$$
+
+This MLP is trained jointly with CoST to ensure that the composite embedding resides in the same latent space as its constituents and captures nonlinear dependencies between trend and seasonal features.
+
+#### 4.4.3 ASYMMETRIC PERCEPTUAL WEIGHTING
+
+We define the asymmetric factor:
+
+$$\Delta = \text{SDE}_{\mathbf{b}, \mathbf{a}} - \text{SDE}_{\mathbf{a}, \mathbf{b}}.$$
+
+A positive $\Delta$ indicates that the seasonal component is underrepresented relative to the trend component. This factor is used to dynamically reweight CoST’s contrastive losses:
+
+$$\mathcal{L} = (1 + \gamma \cdot \Delta) \mathcal{L}_{\text{season}} + (1 + \gamma' \cdot (-\Delta)) \mathcal{L}_{\text{trend}},$$
+
+where $\gamma, \gamma'$ are hyperparameters controlling the sensitivity to $\Delta$ . Gradients flow through both CoST branches and the MLP, enabling end-to-end adaptation.
+
+#### 4.4.4 EXPERIMENTAL RESULTS
+
+This integrated pipeline ensures that weakened semantic components are emphasized, reducing SDE and improving forecasting performance on datasets such as ETT, Electricity, and Weather. Table 3 reports the SDE metrics and forecasting performance on ETT, Electricity, and Weather datasets, comparing TS2Vec, baseline CoST, and our proposed CoST + APW method.
+
+These results highlight that multi-view contrastive learning alone already improves semantic balance by incorporating frequency-domain information. However, the addition of asymmetry-aware
+
+{6}------------------------------------------------
+
+Table 3: Forecasting results (MSE / MAE) of different methods.
+
+| Dataset | Horizon | CoST+APW (ours) | | CoST | | TS2Vec | | TNC | |
+|-|-|-|-|-|-|-|-|-|-|
+| | | MSE | MAE | MSE | MAE | MSE | MAE | MSE | MAE |
+| ETT1 | 24 | 0.04 | 0.139 | 0.04 | 0.142 | 0.039 | 0.151 | 0.057 | 0.190 |
+| | 48 | 0.07 | 0.189 | 0.06 | 0.186 | 0.062 | 0.189 | 0.094 | 0.239 |
+| | 168 | 0.101 | 0.239 | 0.107 | 0.242 | 0.132 | 0.291 | 0.171 | 0.329 |
+| | 336 | 0.147 | 0.279 | 0.152 | 0.278 | 0.173 | 0.316 | 0.192 | 0.357 |
+| | 720 | 0.152 | 0.339 | 0.148 | 0.334 | 0.179 | 0.345 | 0.235 | 0.408 |
+| ETT2 | 24 | 0.069 | 0.218 | 0.079 | 0.217 | 0.091 | 0.230 | 0.097 | 0.238 |
+| | 48 | 0.129 | 0.300 | 0.128 | 0.290 | 0.124 | 0.274 | 0.131 | 0.281 |
+| | 168 | 0.199 | 0.334 | 0.201 | 0.369 | 0.198 | 0.355 | 0.197 | 0.354 |
+| | 336 | 0.200 | 0.337 | 0.206 | 0.369 | 0.205 | 0.364 | 0.207 | 0.366 |
+| | 720 | 0.210 | 0.388 | 0.214 | 0.387 | 0.208 | 0.371 | 0.207 | 0.370 |
+| ETT1 | 24 | 0.012 | 0.086 | 0.015 | 0.088 | 0.016 | 0.093 | 0.019 | 0.103 |
+| | 48 | 0.023 | 0.123 | 0.025 | 0.124 | 0.028 | 0.126 | 0.036 | 0.142 |
+| | 96 | 0.037 | 0.162 | 0.038 | 0.152 | 0.045 | 0.162 | 0.054 | 0.178 |
+| | 288 | 0.056 | 0.213 | 0.067 | 0.214 | 0.095 | 0.235 | 0.098 | 0.244 |
+| | 672 | 0.132 | 0.250 | 0.154 | 0.267 | 0.142 | 0.290 | 0.136 | 0.290 |
+| Elec | 24 | 0.241 | 0.266 | 0.242 | 0.267 | 0.260 | 0.288 | 0.252 | 0.278 |
+| | 48 | 0.290 | 0.302 | 0.300 | 0.312 | 0.313 | 0.321 | 0.300 | 0.308 |
+| | 168 | 0.566 | 0.450 | 0.425 | 0.405 | 0.429 | 0.392 | 0.412 | 0.384 |
+| | 336 | 0.677 | 0.566 | 0.576 | 0.472 | 0.565 | 0.478 | 0.548 | 0.466 |
+| | 720 | 1.010 | 0.789 | 0.911 | 0.655 | 0.863 | 0.651 | 0.859 | 0.651 |
+| Weather | 24 | 0.099 | 0.252 | 0.102 | 0.260 | 0.096 | 0.215 | 0.102 | 0.221 |
+| | 48 | 0.143 | 0.270 | 0.142 | 0.262 | 0.140 | 0.264 | 0.139 | 0.264 |
+| | 168 | 0.200 | 0.306 | 0.213 | 0.356 | 0.207 | 0.335 | 0.198 | 0.328 |
+| | 336 | 0.266 | 0.360 | 0.256 | 0.356 | 0.231 | 0.360 | 0.215 | 0.347 |
+| | 720 | 0.299 | 0.360 | 0.278 | 0.370 | 0.233 | 0.365 | 0.219 | 0.353 |
+
+perceptual weighting further ensures that underrepresented components receive greater emphasis during optimization. This combination leads to consistently lower SDE values and superior forecasting accuracy compared with both TS2Vec and vanilla CoST baselines. In particular, the dynamic reweighting mechanism proves essential in preventing weaker periodic or trend components from being washed out, demonstrating that explicitly addressing asymmetry in semantic contributions is a critical step toward more faithful time series representation learning.
+
+## 5 CONCLUSION
+
+In this paper, we identified three fundamental limitations of current self-supervised time series representation learning — lack of inductive bias for decomposition, purely time-domain contrastive objectives, and isotropic embedding collapse. To address these issues, we proposed three complementary strategies: SDE-based regularization, multi-view contrastive learning, and asymmetry-aware perceptual weighting. Our experiments demonstrate that while naive regularization offers limited benefits, combining multi-view contrastive objectives with asymmetry-aware weighting effectively mitigates semantic imbalance, yielding consistently lower SDE values and improved forecasting accuracy across multiple benchmarks.
+
+Looking ahead, we see two promising directions. First, we plan to examine whether asymmetry-aware weighting remains effective when the decomposition is approximated using only low-pass filtering, without explicit frequency-domain encoders. If successful, this would suggest that simple time-domain preprocessing suffices to create asymmetric views, reducing computational complexity while preserving performance. Second, we aim to analyze the role of the fusion MLP in greater depth: does it primarily perform linear alignment of time- and frequency-domain embeddings, or does it capture nonlinear cross-component interactions that are otherwise inaccessible? By probing the learned fusion space, we hope to better understand how weak components are amplified and integrated, thereby guiding the design of more principled architectures.
+
+## REFERENCES
+
+- Alexei Baevski, Henry Zhou, Abdelrahman Mohamed, and Michael Auli. wav2vec 2.0: A framework for self-supervised learning of speech representations. *ArXiv*, abs/2006.11477, 2020.
+- Adrien Bardes, Jean Ponce, and Yann LeCun. Vicreg: Variance-invariance-covariance regularization for self-supervised learning. *ArXiv*, abs/2105.04906, 2021.
+
+{7}------------------------------------------------
+
+- 378 Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey E. Hinton. A simple framework
+379 for contrastive learning of visual representations. *ArXiv*, abs/2002.05709, 2020.
+- 380
+381 Jean-Yves Franceschi, Aymeric Dieuleveut, and Martin Jaggi. Unsupervised scalable representation
+382 learning for multivariate time series. *ArXiv*, abs/1901.10738, 2019.
+- 383
+384 Jean-Bastien Grill, Florian Strub, Florent Altch'e, Corentin Tallec, Pierre H. Richemond, Elena
+385 Buchatskaya, Carl Doersch, Bernardo Ávila Pires, Zhaohan Daniel Guo, Mohammad Gheshlaghi
+386 Azar, Bilal Piot, Koray Kavukcuoglu, Rémi Munos, and Michal Valko. Bootstrap your own latent:
+387 A new approach to self-supervised learning. *ArXiv*, abs/2006.07733, 2020.
+- 388
+389 Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross B. Girshick. Momentum contrast for
+390 unsupervised visual representation learning. *2020 IEEE/CVF Conference on Computer Vision
+391 and Pattern Recognition (CVPR)*, pp. 9726–9735, 2019.
+- 392
+393 Guokun Lai, Wei-Cheng Chang, Yiming Yang, and Hanxiao Liu. Modeling long- and short-term
+394 temporal patterns with deep neural networks. *The 41st International ACM SIGIR Conference on
+395 Research & Development in Information Retrieval*, 2017.
+- 396
+397 Tomas Mikolov, Kai Chen, Gregory S. Corrado, and Jeffrey Dean. Efficient estimation of word
+398 representations in vector space. In *International Conference on Learning Representations*, 2013.
+- 399
+400 Robert H. Shumway and David S. Stoffer. *Time series analysis and its applications : with R exam-*
+401 *ples*. Springer Cham, 2017.
+- 402
+403 Sana Tonekaboni, Danny Eytan, and Anna Goldenberg. Unsupervised representation learning for
+404 time series with temporal neighborhood coding. *ArXiv*, abs/2106.00750, 2021.
+- 405
+406 Aäron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predic-
+407 tive coding. *ArXiv*, abs/1807.03748, 2018.
+- 408
+409 Tongzhou Wang and Phillip Isola. Understanding contrastive representation learning through align-
+410 ment and uniformity on the hypersphere. *ArXiv*, abs/2005.10242, 2020.
+- 411
+412 Gerald Woo, Chenghao Liu, Doyen Sahoo, Akshat Kumar, and Steven Hoi. CoST: Contrastive
+413 learning of disentangled seasonal-trend representations for time series forecasting. In *Interna-*
+414 *tional Conference on Learning Representations*, 2022.
+- 415
+416 Haixu Wu, Jiehui Xu, Jianmin Wang, and Mingsheng Long. Autoformer: Decomposition trans-
+417 formers with auto-correlation for long-term series forecasting. In *Neural Information Processing
+418 Systems*, 2021.
+- 419
+420 Zhihan Yue, Yujing Wang, Juanyong Duan, Tianmeng Yang, Congrui Huang, Yu Tong, and Bixiong
+421 Xu. Ts2vec: Towards universal representation of time series. In *AAAI Conference on Artificial
+422 Intelligence*, 2021.
+- 423
+424 Jure Zbontar, Li Jing, Ishan Misra, Yann LeCun, and Stéphane Deny. Barlow twins: Self-supervised
+425 learning via redundancy reduction. *ArXiv*, abs/2103.03230, 2021.
+- 426
+427 Haoyi Zhou, Shanghang Zhang, Jieqi Peng, Shuai Zhang, Jianxin Li, Hui Xiong, and Wan
+428 Zhang. Informer: Beyond efficient transformer for long sequence time-series forecasting. *ArXiv*,
+429 abs/2012.07436, 2020.
+- 430
+431 Tian Zhou, Ziqing Ma, Qingsong Wen, Xue Wang, Liang Sun, and Rong Jin. Fedformer: Frequency
+432 enhanced decomposed transformer for long-term series forecasting. In *International Conference
+433 on Machine Learning*, 2022.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/5qd7V5TNGV.txt b/papers/5qd7V5TNGV.txt
new file mode 100644
index 0000000000000000000000000000000000000000..6ce30d3fea00835f49869c443ae3901b78b559b7
--- /dev/null
+++ b/papers/5qd7V5TNGV.txt
@@ -0,0 +1,367 @@
+
+
+{0}------------------------------------------------
+
+# CP4D: COMPOSITIONAL PHYSICS-AWARE 4D SCENE GENERATION
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+4D generation (*i.e.*, dynamic 3D generation) has recently emerged as a rapidly growing research frontier due to its powerful spatiotemporal modeling capabilities. However, despite notable advances, existing approaches typically fail to capture the underlying physical principles, producing results that are both physically inconsistent and visually implausible. To overcome this limitation, we present CP4D, a novel paradigm for photorealistic 4D scene synthesis with faithful adherence to complex physical dynamics. Drawing inspiration from the compositional nature of real-world scenes, where immutable static backgrounds coexist with dynamic, physically plausible foregrounds, CP4D reformulates 4D generation as the integration of a static 3D environment with physically grounded dynamic objects. On this basis, our framework follows a three-stage pipeline: **1)** Firstly, we leverage pre-trained expert models to generate high-fidelity 3D representations of the environment and foreground objects respectively. **2)** Subsequently, to produce physically plausible trajectories and realistic interactions for these objects, we propose a hybrid motion synthesis strategy that integrates priors from physical simulators with the common sense embedded in video diffusion models. **3)** Finally, we develop an automated composition mechanism that seamlessly fuses the static environment and dynamic objects into coherent, physically consistent 4D scenes. Extensive experiments demonstrate that CP4D can generate explorable and interactive 4D scenes with high visual fidelity, strong physical plausibility, and fine-grained controllability, significantly outperforming existing methods. The anonymous project page: .
+
+## 1 INTRODUCTION
+
+Empowered by recent progress in generative models (Ho et al., 2020; Song et al., 2020) and large-scale data available, 4D generation (*i.e.*, dynamic 3D generation) (Ren et al., 2023; Xie et al., 2024b; YU et al., 2025; Ma et al., 2025) has emerged as a prominent research focus. Through joint modeling of spatial structure and temporal dynamics, 4D generation enables the synthesis of realistic and coherent 4D scenes, holding great promise for a wide range of applications such as AR/VR (Li et al., 2024a), robotics (Liu et al., 2025a), and world models (Chen et al., 2025b).
+
+Existing approaches for 4D generation can be broadly divided into two categories. The first class of methods exploits priors distilled from pre-trained video or 3D generative models (Bahmani et al., 2024b;a; Jiang et al., 2023; Zeng et al., 2024), employing them as auxiliary supervisory signals to constrain the generation process and improve fidelity. In contrast, the second class follows a data-driven paradigm (Xie et al., 2024b; Ren et al., 2024; Liang et al., 2024; Bai et al., 2025), where cross-view videos are directly synthesized as intermediate proxies and subsequently transformed into full 4D content through classical reconstruction pipelines. While producing seemingly plausible results, these approaches typically lack an explicit characterization of the underlying physical principles. As a consequence, the generated content often suffers from physical inconsistencies and visual artifacts, leading to scenes that deviate from realistic dynamics.
+
+To mitigate this issue, inspired by the compositional nature of real-world scenes (Xu et al., 2024; Zhu et al., 2024), where static backgrounds co-exist with physically plausible dynamic foregrounds, we reformulate 4D scene generation as the integration of a static 3D environment with physically
+
+{1}------------------------------------------------
+
+
+
+Figure 1: Pipeline of CP4D. The diagram illustrates a three-stage process for 4D scene generation. Stage I: 3D Representation Synthesis, where a prompt 'An orange drops on the table of a kitchen.' is decomposed into 'Text to Image' (generating a kitchen background) and 'Image Editing' (generating an orange). These are then processed by '3D Scene Gen' and '3D Object Gen' to create 3D models. Stage II: Physically Grounded Motion Simulation, which uses 'Multi-view Images' and a 'Vision-Language Model (VLM)' to extract 'Physical Parameters'. These are input into a 'Physical Simulator' along with a 'Video Diffusion Prior' to generate motion trajectories. Stage III: Automated 4D Scene Composition, which uses 'Monocular Depth Estimation', a 'Depth-aware heuristic', and 'Optimization' to compose the foreground (orange) into the background (kitchen) with 'Estimated scale and location'.
+
+Figure 1: **Pipeline of CP4D.** Given a textual prompt, CP4D constructs a physically faithful 4D scene via a three-stage pipeline: 1) synthesizing 3D representations for both foreground objects and a background environments (Sec. 4.1), 2) simulating foreground motions with physical grounding to ensure realistic dynamics (Sec. 4.2), and 3) automatically composing the foregrounds and background into a coherent and visually plausible 4D scene (Sec. 4.3).
+
+grounded dynamic 3D objects. Building upon this formulation, there arise three key technical challenges: 1) How to construct plausible 3D representations for both foreground objects and foreground objects that conform to user-specified instructions? 2) How to model the motion dynamics of foreground objects that encompass physically plausible trajectories and realistic interactions? 3) How to seamlessly compose the generated dynamic foregrounds with the static background into a consistent 4D scene?
+
+To tackle these challenges, in this paper we introduce CP4D, a novel paradigm for photorealistic 4D scene generation with faithful adherence to complex physical dynamics. Specifically, as shown in Fig. 1, CP4D follows a three-stage pipeline: 1) Firstly, given a textual prompt, we first synthesize a background image using a text-to-image generative model, after which an image editing model, conditioned on this background, is employed to generate foregrounds that are visually compatible with it. Both the background and the foregrounds are then reconstructed into their respective 3D representations using pre-trained expert models. In contrast to the naive baseline that independently applies text-to-3D models to each component, our approach enforces stylistic coherence across background and foreground, thereby mitigating implausible artifacts such as realistic environments juxtaposed with cartoon-like objects. 2) Secondly, to endow foreground objects with physically plausible trajectories and realistic interactions, we introduce a hybrid motion synthesis strategy. In particular, we first leverage physical simulators to produce coarse object trajectories that comply with fundamental physical laws. These initial dynamics are subsequently refined using the commonsense knowledge embedded in video generative models, thereby enhancing inter-object interactions and yielding motion that is both more realistic and visually convincing. 3) Thirdly, to seamlessly fuse the dynamic foregrounds with the static background into a unified 4D scene, we develop an automated composition mechanism. By leveraging monocular depth estimation and a depth-aware heuristic rule, this mechanism first estimates the relative spatial attributes of foreground objects (e.g., positions and scales) within the background, which are subsequently calibrated through optimization to ensure coherent integration and visually compelling compositions.
+
+Notably, owing to its compositional design, CP4D not only enables the synthesis of 4D scenes that faithfully comply with physical laws, but also provides strong interactive controllability. In particular, users are afforded the flexibility to edit different scene elements, such as foreground objects, background environments, and motion trajectories, thus facilitating diverse 4D generation.
+
+{2}------------------------------------------------
+
+In summary, our key contributions can be concluded as follows:
+
+- We present CP4D, a novel compositional framework designed to generate photorealistic 4D scenes with accurate adherence to complex physical dynamics.
+- We propose a hybrid motion synthesis strategy that integrates physical priors from differentiable simulators with commonsense knowledge from video generative models, yielding physically plausible trajectories and realistic interactions.
+- We develop an automated composition mechanism that harmoniously fuses dynamic foregrounds with the static background, producing a coherent and visually compelling 4D scene.
+- Extensive experiments demonstrate that CP4D is capable of synthesizing explorable and interactive 4D scenes characterized by high visual fidelity, robust physical realism, and precise controllability, consistently outperforming prior methods.
+
+## 2 RELATED WORKS
+
+### 2.1 4D GENERATION
+
+Generating 4D assets from textual prompts has drawn growing attention owing to its wide-ranging applications in AR, VR (Wang et al., 2025), and spatial intelligence. Early approaches (Jiang et al., 2023; Zhu et al., 2025; Li et al., 2024b; Zeng et al., 2024; Gao et al., 2024) towards this goal predominantly relied on distilling knowledge from pre-trained generative models to guide the generation process. For instance, DreamGaussian4D (Ren et al., 2023) pioneered the use of SDS (Poole et al., 2022) in the 4D generation domain, demonstrating the capability to produce realistic 4D objects conditioned on text prompts. Consistent4D (Jiang et al., 2023) realized video-to-4D generation by integrating SDS with dynamic NeRF (Park et al., 2021), and further employed a video enhancer to improve the quality of the synthesized 4D assets. Recently, the availability of large-scale datasets (Deitke et al., 2023; Nan et al., 2024) has enabled methods that directly train feed-forward video diffusion models to synthesize multi-view videos (Xie et al., 2024b; Ren et al., 2024; YU et al., 2025; Bai et al., 2025; He et al., 2024; Namekata et al., 2024), which are subsequently reconstructed into 4D scenes using standard reconstruction techniques (Wu et al., 2024). However, despite their ability to produce seemingly plausible results, these approaches generally overlook the explicit characterization of underlying physical dynamics. Consequently, the generated content often exhibits physically inconsistent behaviors and visual artifacts. In contrast, we present CP4D, a physics-aware framework for text-driven 4D scene generation, delivering photorealistic quality, reliable physical consistency, and precise generation control.
+
+### 2.2 PHYSICS-BASED SIMULATION
+
+Given an initial 3D representation (*e.g.*, 3D gaussian splatting (Kerbl et al., 2023)), recent works (Xie et al., 2024a) have explored the use of physical solvers, such as the Material Point Method (MPM) (Hu et al., 2018; Jiang et al., 2017), to update the state of Gaussian primitives under external forces at different timestamps. To automate the specification of material parameters, multimodal large language models (MLLMs) have been employed to infer properties such as density, Young’s modulus, and Poisson’s ratio (Zhao et al., 2024; Mao et al., 2025). Complementary to this, other approaches (Huang et al., 2025; Liu et al., 2024a; Lin et al., 2025; Liu et al., 2025b) exploit implicit physical regularities in video diffusion models by incorporating Score Distillation Sampling (SDS) (Poole et al., 2022) to refine these preliminary estimates. While the above methods assume access to well-defined 3D representations, more recent works (Lin et al., 2024a;b; Chen et al., 2025a; Tan et al., 2024; Liu et al., 2024b) aim to generate physics-driven videos directly from a single image. These methods first generate a full 3D representation using image-to-3D models (either mesh-based (Chen et al., 2025a) or Gaussian-based (Lin et al., 2024a;b; Tan et al., 2024)) before applying physical simulations as described above. However, existing solutions remain limited: they typically handle only elastic or rigid bodies, lack support for realistic multi-material Gao et al. (2025) and multi-object interactions, and often employ either 2D backgrounds or 3D environments with fixed viewpoints, restricting the ability to render consistent novel views.
+
+{3}------------------------------------------------
+
+## 3 PRELIMINARIES: SCORE DISTILLATION SAMPLING
+
+Score Distillation Sampling (SDS) (Poole et al., 2022) is a widely used technique for optimizing a differentiable generator $g(\theta)$ under the guidance of a pre-trained diffusion model. Its core idea is to exploit the score function of the diffusion model to supply gradient that steer the generator’s outputs towards alignment with a target text prompt, without the need for explicit likelihood computation.
+
+Formally, let $\epsilon_\phi(\cdot, \mathbf{T}, \zeta)$ denote the denoiser of a pre-trained text-conditioned diffusion model parameterized by $\phi$ , with timestep $\zeta$ and text prompt $\mathbf{T}$ , the SDS gradient is given by:
+
+$$\nabla_\theta \mathcal{L}_{\text{SDS}} = \mathbb{E}_{\epsilon, \zeta} \left[ \omega(\zeta) (\epsilon_\phi(g(\theta), \mathbf{T}, \zeta) - \epsilon) \frac{\partial g(\theta)}{\partial \theta} \right], \quad (1)$$
+
+where $g(\theta)$ denotes the generator’s output (e.g., a rendered video), $\epsilon$ is Gaussian noise sampled at timestep $\zeta$ , $\omega(\zeta)$ is a weighting function, and $\theta$ are the learnable parameters of the generator.
+
+## 4 METHODOLOGY
+
+**Overview.** Given a textual prompt $\mathbf{T}$ , our objective is to synthesize a 4D scene that faithfully adheres to complex physical dynamics while supporting flexible viewpoint changes. To this end, we adopt a compositional formulation grounded in the nature of real-world scenes (i.e., static backgrounds coexisting with physically governed, dynamic foregrounds), and cast 4D generation as the integration of a static 3D environment with physically grounded dynamic objects.
+
+To achieve this goal, we introduce a three-stage pipeline. To begin with, we leverage pre-trained expert models to construct plausible 3D representations for both the background environment and the foreground objects (Sec. 4.1). Subsequently, we propose a hybrid motion synthesis strategy utilizing physical simulators and video generative models to produce foreground motions with physical consistency and realistic interactions (Sec. 4.2). Finally, we develop an automated composition mechanism that seamlessly integrates the generated background and foreground into a coherent 4D scene (Sec. 4.3).
+
+### 4.1 STAGE I: BACKGROUND–FOREGROUND 3D REPRESENTATION SYNTHESIS
+
+To achieve text-guided compositional physics-aware 4D scene generation (CP4D), constructing plausible 3D representations of both the background environment and the foreground objects constitutes an essential prerequisite, providing the foundation for subsequent motion modeling and scene composition. To this end, we first invoke a large language model (e.g., GPT-4o (Achiam et al., 2023)) to decompose the input textual prompt $\mathbf{T}$ into two sub-prompts (i.e., $\mathbf{T} = \{\mathbf{T}_b, \mathbf{T}_f\}$ ), each describing the background and foreground to be generated.
+
+Subsequently, to obtain the corresponding 3D representations of the background and foreground, one intuitive approach is to independently apply pretrained text-to-3D generative models. However, such a straightforward strategy typically yields implausible outcomes, e.g., generating a realistic background paired with cartoon-like foregrounds, which in turn undermines the coherence and overall quality of the synthesized 4D scene.
+
+To overcome this limitation, we adopt a simple yet effective strategy for 3D representation synthesis. Specifically, we first synthesize a background image $\mathbf{I}_b$ from the input prompt $\mathbf{T}_b$ using a text-to-image generative model $\mathbf{F}_{\text{t2i}}$ . Next, conditioned on $\mathbf{I}_b$ and $\mathbf{T}_f$ , we employ an image editing model $\mathbf{F}_{\text{edit}}$ to generate a composite image $\mathbf{I}_{b,f}$ that simultaneously contains both the background and foreground in a visually coherent manner. We then apply an image segmentation model $\mathbf{F}_{\text{seg}}$ to $\mathbf{I}_{b,f}$ to isolate the foreground region $\mathbf{M}_f$ ( $\mathbf{M}_f = 1$ corresponds to foreground pixels and $\mathbf{M}_f = 0$ to background pixels), yielding the foreground image $\mathbf{I}_f$ . Finally, with the harmonized background image $\mathbf{I}_b$ and foreground image $\mathbf{I}_f$ , we leverage pretrained image-to-3D generative models $\mathbf{F}_{\text{3d}}^b$ and $\mathbf{F}_{\text{3d}}^f$ to construct their respective 3D representations. The overall pipeline can be formally expressed as follows:
+
+$$\begin{aligned} \mathbf{G}_b &= \mathbf{F}_{\text{3d}}^b(\mathbf{I}_b), \quad \mathbf{G}_f = \mathbf{F}_{\text{3d}}^f(\mathbf{I}_f), \\ \mathbf{I}_b &= \mathbf{F}_{\text{t2i}}(\mathbf{T}_b), \quad \mathbf{I}_{b,f} = \mathbf{F}_{\text{edit}}(\mathbf{I}_b, \mathbf{T}_f), \quad \{\mathbf{I}_f, \mathbf{M}_f\} = \mathbf{F}_{\text{seg}}(\mathbf{I}_{b,f}), \end{aligned} \quad (2)$$
+
+where $\mathbf{G}_b$ and $\mathbf{G}_f$ denote the 3D representations of the background and foreground, instantiated using 3D gaussian splatting. For clarity, we use $\mathbf{G}_f$ as a unified notation to represent the foreground representation, which may correspond to either a single object or multiple different objects.
+
+{4}------------------------------------------------
+
+
+
+Figure 2: Three panels showing the optimization of object interactions. (a) Simulation result: Two spheres, one green and one yellow, are shown overlapping. (b) Rendering result: Two oranges are shown overlapping, with a label 'Unreal Collision' pointing to the overlap area. (c) Optimized result: Two oranges are shown separated, with no overlap.
+
+Figure 2: **(a)** Limited numerical precision in the physics solver leads to erroneous estimation of foreground geometry. **(b)** As a result, the solver reports collisions that are not visually manifested, producing spurious interactions. **(c)** Our method eliminates these inconsistencies, enabling interactions that are both visually coherent and physically faithful.
+
+### 4.2 STAGE II: PHYSICALLY GROUNDED MOTION SIMULATION
+
+Given the generated $\mathbf{G}_f$ , the second stage aims to endow the foreground objects with motions that are both physically consistent and visually realistic. To this end, we adopt a hybrid motion synthesis framework: physical simulators are first employed to generate trajectories constrained by fundamental physical laws, which are subsequently refined using the commonsense priors embedded in video generative models. This design ensures that the resulting motions remain faithful to physics while exhibiting naturalistic interactions.
+
+**Physical simulator-based motion synthesis.** To simulate the dynamics of $\mathbf{G}_f$ conditioned on the textual description $\mathbf{T}_f$ , we begin by leveraging vision-language models (VLMs) to infer essential physical attributes of the objects, including material properties (e.g., Young’s modulus $E$ , Poisson’s ratio $\mu$ , and density $\rho$ ) and external forces $\mathbf{Q}$ . These inferred parameters provide the initialization required for physically grounded motion simulation. More details are provided in Appendix B.
+
+We then employ heterogeneous physical solvers $\Phi$ to simulate object dynamics. Specifically, elastic or flexible objects are handled using an MPM solver $\Phi_{mpm}$ , rigid objects are modeled with a dedicated rigid-body solver $\Phi_{rigid}$ , while fluid objects are simulated with a Position-Base-Dynamic (PBD) solver $\Phi_{fluid}$ (More details are provided in Appendix C). Initialized with the estimated material parameters $\Theta = \{\rho, E, \mu\}$ and external forces $\mathbf{Q}$ , the solvers evolve the foreground into deformed 3D representations $\mathbf{G}_f^t$ over time $t$ , which can be expressed as:
+
+$$\mathbf{G}_f^t = \Phi(\mathbf{G}_f, \mathbf{Q}, \Theta, t). \quad (3)$$
+
+**Video generative model-based refinement.** Although Eq. 3 produces motions that are broadly consistent with physical principles, two critical limitations persist. **1)** As VLMs are not explicitly trained on physics-oriented datasets, the inferred material parameters, while generally reasonable, often lack the numerical accuracy required to reflect precise physical behavior. **2)** As shown in Fig. 2, physics solvers generally rely on grid-based approximations of $\mathbf{G}_f$ to model interactions such as collisions. However, the limited fidelity of these approximations often fails to capture the intricate geometry of the underlying 3D structures, leading to perceptually implausible outcomes, e.g., collisions may be registered between objects despite no apparent contact in the rendered scene.
+
+To mitigate these issues, we resort to commonsense knowledge embedded in video diffusion models. Specifically, to solve the first problem, we employ the SDS loss to optimize the estimated physical parameters $\Theta$ , which is denoted as follows:
+
+$$\nabla_{\Theta} \mathcal{L}_{\text{SDS}} = \mathbb{E}_{\epsilon, \zeta} \left[ \omega(\zeta) (\hat{\epsilon}_{\psi}(V; \mathbf{T}_f; \zeta) - \epsilon) \frac{\partial V}{\partial \Theta} \right], \quad (4)$$
+
+where $V$ denotes the rendered video based on $\mathbf{G}_f^t$ , $\hat{\epsilon}_{\psi}$ represents the predicted noise using pre-trained video diffusion model $\psi$ , $\omega(\zeta)$ is a weighting function over the diffusion timestep $\zeta$ .
+
+To alleviate the second issue, namely the inaccuracies introduced by coarse grid-based approximations during inter-object interactions, we similarly employ SDS-based optimization. Specifically, assuming $\mathbf{G}_f$ comprises $K$ individual objects, $\{\mathbf{G}_{f_i}\}_{i=1}^K$ , we assign to each object a learnable global displacement variable $\Delta\Gamma_i$ , which adjust their relative positions. These displacement variables are
+
+{5}------------------------------------------------
+
+
+
+Figure 3: Illustration of the depth-aware heuristic for initializing the scale S. The figure shows three stages: Left: A yellow sphere representing the foreground object G\_f at depth P^z with a bounding box (P^x, P^y, P^z). Middle: A diagram showing the projection of the sphere onto the x-y plane, constrained by the frustum bounds B^x\_min, B^x\_max, B^y\_min, and B^y\_max. The projected extent is a circle with radius (G\_f^z)\_max - (G\_f^z)\_min. Right: The final result showing the sphere G\_f correctly scaled and positioned within the frustum.
+
+Figure 3: Illustration of the depth-aware heuristic for initializing the scale $S$ . **Left:** the foreground $\mathbf{G}_f$ is independently generated and may exceed the camera frustum at depth $P^z$ . **Middle:** to ensure full visibility, its projected extent in the $x$ - $y$ plane is constrained by the frustum bounds $(B^x_{\min}, B^x_{\max}, B^y_{\min}, B^y_{\max})$ , yielding the maximum feasible scale $S$ . **Right:** applying this initialized $S$ guarantees that $\mathbf{G}_f$ remains entirely contained within the frustum of the reference view.
+
+optimized via SDS supervision to ensure that the rendered video adheres to the textual prompt $\mathbf{T}_f$ while exhibiting interaction patterns aligned with human perceptual priors, which is formulated as follows:
+
+$$\nabla_{\Delta\Gamma} \mathcal{L}_{\text{SDS}} = \mathbb{E}_{\zeta, \epsilon} \left[ \omega(\zeta) (\hat{\epsilon}_\psi(V_{\Delta\Gamma}; \mathbf{T}_f, \zeta) - \epsilon) \frac{\partial V_{\Delta\Gamma}}{\partial \Delta\Gamma} \right], \quad (5)$$
+
+where $V_{\Delta\Gamma}$ denotes the rendered video after applying displacements $\Delta\Gamma$ .
+
+### 4.3 STAGE III: AUTOMATED 4D SCENE COMPOSITION
+
+After obtaining physically grounded motions of the foreground object(s) $\mathbf{G}_f$ , our next goal is to fuse them with the background $\mathbf{G}_b$ into a coherent 4D scene. To this end, we introduce an automated scene composition mechanism that estimates the relative spatial attributes of $\mathbf{G}_f$ (e.g., its position and scale) with respect to $\mathbf{G}_b$ using monocular depth cues and heuristic priors, and further refines them through optimization to ensure both geometric consistency and visual plausibility. A detailed illustration is provided below.
+
+**Relative spatial attributes initialization.** Since $\mathbf{G}_b$ and $\mathbf{G}_f$ are generated independently by different pre-trained expert models, their 3D representations lie in distinct coordinate spaces, making direct integration infeasible. Therefore, to reasonably place $\mathbf{G}_f$ into $\mathbf{G}_b$ with correct size and location, we propose to transform $\mathbf{G}_f$ into an aligned representation $\mathbf{G}_f^*$ using the following equation:
+
+$$\mathbf{G}_f^* = S \times \mathbf{G}_f + P, \quad (6)$$
+
+where $S \in \mathbb{R}^+$ denotes the relative scale and $P = (P^x, P^y, P^z) \in \mathbb{R}^3$ the relative translation. For clarity, we simplify $\mathbf{G}_f$ as $\mathbf{G}_f = (\mathbf{G}_f^x, \mathbf{G}_f^y, \mathbf{G}_f^z) \in \mathbb{R}^{U \times 3}$ , considering only the transformation of its $U$ spatial coordinates.
+
+Subsequently, to estimate the translation parameter $P$ (i.e., the spatial location of $\mathbf{G}_f$ within $\mathbf{G}_b$ ), we employ a monocular depth estimator $\mathbf{F}_{\text{depth}}$ on the composite image $\mathbf{I}_{b,f}$ (as defined in Eq. 2) to recover a dense depth map of the scene. Guided by the foreground mask $\mathbf{M}_f$ , depth values associated with the target region are isolated, from which the centroid depth of the foreground object is derived. This depth estimate is further back-projected into 3D space, providing an initialization of the foreground position $P$ in the coordinate frame of $\mathbf{G}_b$ , which can be formulated as follows:
+
+$$(P^x, P^y, P^z) = \Phi(\mathbf{D}_{b,f}[(M_f = 1)_{\text{cen}}]), \quad \mathbf{D}_{b,f} = \mathbf{F}_{\text{depth}}(\mathbf{I}_{b,f}), \quad (7)$$
+
+where $\mathbf{D}_{b,f}$ denotes the depth map estimated from the composite image $\mathbf{I}_{b,f}$ , $(M_f = 1)_{\text{cen}}$ indicates the centroid pixel of the segmented foreground region, $\Phi(\cdot)$ represents the back-projection function that maps a 2D pixel into 3D space based on its depth value. Notably, since we unify the world coordinate system of the background with the camera coordinate system, the $z$ -coordinate of $P$ (i.e., $P^z$ ) is directly equal to the corresponding depth value $\mathbf{D}_{b,f}[(M_f = 1)_{\text{cen}}]$ .
+
+For scale estimation, i.e., determining the size of $\mathbf{G}_f$ within $\mathbf{G}_b$ , we employ a depth-aware heuristic. The key insight is that, under the reference viewpoint corresponding to $\mathbf{I}_{b,f}$ , the foreground object
+
+{6}------------------------------------------------
+
+should be entirely visible within the image plane. This implies that, **in 3D space, $\mathbf{G}_f$ must be fully contained within the camera frustum of the reference view**. Given the estimated depth $P^z$ , as shown in Fig. 3, the scale $S$ is constrained such that all points of $\mathbf{G}_f$ fall within the valid frustum slice at depth $P^z$ , i.e., their $x$ - and $y$ -coordinates remain bounded by the image-plane limits defined at that depth. Accordingly, we initialize $S$ as the maximum feasible scale that satisfies these geometric bounds, which is formulated as follows:
+
+$$S = \frac{\min(\min(P^x - B_{\min}^x, B_{\max}^x - P^x), \min(P^y - B_{\min}^y, B_{\max}^y - P^y))}{\max((\mathbf{G}_f^x)_{\max} - (\mathbf{G}_f^x)_{\min}, (\mathbf{G}_f^y)_{\max} - (\mathbf{G}_f^y)_{\min}) / 2}, \quad (8)$$
+
+where $B_{\min}^x, B_{\max}^x, B_{\min}^y, B_{\max}^y$ denote the horizontal and vertical boundaries of the camera frustum at depth $P^z$ , $(\mathbf{G}_f^x)_{\max}, (\mathbf{G}_f^x)_{\min}, (\mathbf{G}_f^y)_{\max}, (\mathbf{G}_f^y)_{\min}$ represent the maximum and minimum $x$ - and $y$ -coordinates of the original foreground representation $\mathbf{G}_f$ , respectively.
+
+**Optimization-based refinement.** After obtaining the initial estimates of $P$ and $S$ , we further refine them to improve perceptual fidelity. The objective is to ensure that the rendered reference view of the composed scene closely aligns with the composite image $\mathbf{I}_{b,f}$ . Accordingly, we optimize $P$ and $S$ by minimizing the discrepancy between the rendered image $\hat{\mathbf{I}}_{b,f}(P, S)$ and $\mathbf{I}_{b,f}$ , formulated as:
+
+$$(P, S) = \arg \min_{P, S} \|\hat{\mathbf{I}}_{b,f}(P, S) - \mathbf{I}_{b,f}\|_2^2. \quad (9)$$
+
+Notably, our experiments reveal that simultaneously optimizing $S$ and $P$ introduces substantial ambiguity, often leading to suboptimal local minima. To address this, we employ a sequential refinement strategy: first optimizing the scale $S$ , followed by refining the translation $P$ . This progressive scheme significantly reduces uncertainty and consistently yields more robust and reliable composition results.
+
+## 5 EXPERIMENTS
+
+### 5.1 EXPERIMENTAL SETUPS
+
+**Implementation details.** We curate a dataset of 17 examples for evaluation, where each instance consists of a foreground prompt $\mathbf{T}_f$ and a background prompt $\mathbf{T}_b$ . Qwen-Image (Wu et al., 2025) is employed to generate the background image $\mathbf{I}_b$ from $\mathbf{T}_b$ , and Qwen-Image-Edit is further applied to synthesize the composite image $\mathbf{I}_{b,f}$ . The foreground mask $\mathbf{M}_f$ is extracted from $\mathbf{I}_{b,f}$ using SAM (Kirillov et al., 2023), and its depth map is estimated with Depth Anything (Yang et al., 2024). Foreground 3D representations $\mathbf{G}_f$ are reconstructed with Trellis (Xiang et al., 2025), and the background 3D representation $\mathbf{G}_b$ is produced using Viewcrafter (Yu et al., 2024).
+
+**Baselines.** We compare CP4D against three categories of baselines: physics-driven simulation methods, conditional video generation models, and text-to-4D approaches. For physics-driven methods, we include PhysGen (Liu et al., 2024b), PhysGen3D (Chen et al., 2025a), and Omni-PhysGS (Lin et al., 2025). For conditional video generation, we evaluate open-source models such as CogVideoX (Yang et al., 2025) and Wan (Wan et al., 2025), as well as proprietary systems including Sora (OpenAI, 2024) and Runway (Runway, 2024). Finally, DreamGaussian4D (Ren et al., 2023) is selected as a representative text-to-4D baseline.
+
+**Metrics.** To assess the quality of generated videos, we adopt VBench (Huang et al., 2024) for evaluating motion smoothness, subject consistency, and image quality. In addition, WorldScore (Duan et al., 2025) is employed to measure photo consistency, 3D consistency, and motion smoothness. To further assess prompt adherence, following PhysGen3D (Chen et al., 2025a), we leverage GPT-4o to score generated videos across three dimensions: physical realism, photorealism, and semantic alignment with the input prompt. Please refer to more details in Appendix A.
+
+### 5.2 COMPARISONS WITH STATE-OF-THE-ART METHODS
+
+As illustrated in Fig. 4, we present two challenging cases for qualitative comparison. In the deformable object motion scenario (i.e., the left side of Fig. 4), Sora (OpenAI, 2024) demonstrates limited capability in accurately identifying the target object and modeling its physical dynamics, and further synthesizes spurious motion patterns involving entities absent from the input image. PhysGen3D (Chen et al., 2025a) reconstructs 3D meshes with low geometric fidelity and spatial arrangements that violate physical plausibility, substantially degrading visual realism. Wan (Wan et al., 2025) exhibits pronounced temporal instability due to color flickering, and fails to respond to
+
+{7}------------------------------------------------
+
+
+
+378
+379
+380
+381
+382
+383
+384
+385
+386
+387
+388
+389
+390
+391
+392
+393
+394
+395
+396
+397
+398
+399
+400
+401
+402
+403
+404
+405
+406
+407
+408
+409
+410
+411
+412
+413
+414
+415
+416
+417
+418
+419
+420
+421
+422
+423
+424
+425
+426
+427
+428
+429
+430
+431
+
+With the view from the balcony features a clear perspective of the railing and the distant cityscape, the blue T-shirt and white shirt hanging on the balcony sway in the wind.
+
+With a simple, modern room with minimalist furniture and decor, the blue bottle fell onto the ground and rebounds off the ground.
+
+Figure 4: Qualitative comparisons. The figure shows a grid of generated video frames for two prompts. The first prompt describes a blue T-shirt and white shirt on a balcony. The second prompt describes a blue bottle falling in a room. Rows are labeled Sora, PhysGen3D, Wan, and Ours. The Ours row shows more physically plausible and temporally consistent results compared to the baselines.
+
+Figure 4: **Qualitative comparisons.** The top row shows the given text prompt and the corresponding generated image. Our method generates temporally consistent and physically plausible videos, outperforming baseline approaches in both visual fidelity and physical realism.
+
+| Model | VBenCh | | | WorldScore | | |
+|-|-|-|-|-|-|-|
+| | Motion† | Consistency† | Imaging† | Photo Consist† | 3D Consist† | Motion Smooth† |
+| Runway Runway (2024) | 0.995 | 0.936 | 0.644 | 62.66 | 86.34 | 68.43 |
+| Sora (OpenAI, 2024) | 0.993 | 0.904 | 0.592 | 52.95 | 64.26 | 33.44 |
+| CogVideoX-12V-5B (Yang et al., 2025) | 0.993 | 0.932 | 0.603 | 70.06 | 81.90 | 73.66 |
+| Wan2.2-T12V-5B (Wan et al., 2025) | 0.991 | 0.934 | 0.599 | 72.66 | 77.50 | 47.04 |
+| PhysGen (Liu et al., 2024b) | 0.996 | 0.966 | 0.621 | 88.34 | 90.04 | 81.67 |
+| PhysGen3D (Chen et al., 2025a) | 0.997 | 0.963 | 0.599 | 93.07 | 92.99 | 90.95 |
+| OmniPhysGS (Lin et al., 2025) | 0.995 | 0.960 | 0.356 | 22.54 | 48.80 | 92.88 |
+| DreamGaussian4D (Ren et al., 2023) | 0.969 | 0.846 | 0.477 | 14.59 | 40.29 | 34.73 |
+| Ours | 0.998 | 0.972 | 0.641 | 97.42 | 95.55 | 93.52 |
+
+Table 1: **Quantitative comparisons.** **Bold:** Best. Underline: Second Best. Our proposed method consistently outperforms previous solutions on both VBenCh and WorldScore.
+
+the motion prompt, resulting in static garments throughout the sequence. In contrast, our method produces coherent, artifact-free motion grounded in the input image, with significantly improved physical fidelity and temporal consistency. In the rigid-body collision scenario (*i.e.*, the right side of Fig. 4), PhysGen3D is restricted to elastic material simulation, causing the bottle to collapse unrealistically upon impact. Sora and Wan (Wan et al., 2025) further undermine plausibility by replacing the bottle with a different object post-collision, thereby breaking object identity and disrupting motion continuity. Compared to these methods, our approach preserves object identity throughout the interaction and yields physically consistent collision outcomes. Kindly refer to more results in Appendix E and F.
+
+Quantitatively, as shown in Tab. 1, our method achieves superior motion coherence and temporal smoothness, consistently outperforming both video generative models and physics-driven methods across key dynamic metrics. Moreover, the generated videos exhibit high static visual quality, rivaling or even surpassing the strong closed-source baselines, particularly in terms of 3D consistency.
+
+{8}------------------------------------------------
+
+| Model | Physical realism† | Photorealism† | Semantic alignment† |
+|-|-|-|-|
+| Sora (OpenAI, 2024) | 0.547 | 0.729 | 0.665 |
+| Runway Runway (2024) | 0.670 | 0.753 | 0.732 |
+| Wan2.2-T12V-5B (Wan et al., 2025) | 0.576 | 0.626 | 0.635 |
+| PhysGen (Liu et al., 2024b) | 0.524 | 0.615 | 0.588 |
+| PhysGen3D (Chen et al., 2025a) | 0.624 | 0.624 | 0.626 |
+| OmniPhysGS (Lin et al., 2025) | 0.347 | 0.265 | 0.170 |
+| DreamGaussian4D (Ren et al., 2023) | 0.229 | 0.112 | 0.176 |
+| Ours | 0.694 | 0.759 | 0.747 |
+
+Table 2: **GPT-4o Evaluation Results.** Our proposed method can achieve the best results.
+
+
+
+Figure 5: Ablation study results showing a 3x4 grid of video frames. The rows are labeled 'Full model', 'w/o material opt.', and 'w/o position opt.'. The columns show a sequence of events where two spheres collide and then interact with a wall. The 'Full model' row shows stable, physically plausible motion. The 'w/o material opt.' row shows spheres that appear to pass through each other or the wall. The 'w/o position opt.' row shows spheres that do not interact with the wall at all.
+
+Figure 5: **Ablation study.** Results of ablation on optimizing VLM-estimated physical parameters and foreground object positions.
+
+
+
+Figure 6: Editing results showing a 3x4 grid of video frames. The rows are labeled 'Original Scene', 'Background Editing', and 'Object Editing'. The columns show a sequence of events on a soccer field. The 'Original Scene' row shows a standard soccer field. The 'Background Editing' row shows the same scene but with a different background (e.g., a different sky or trees). The 'Object Editing' row shows the same scene but with different objects (e.g., different colored balls or players).
+
+Figure 6: **Editing results.** Examples of background environment and foreground object editing in generated 4D scenes.
+
+Regarding physical plausibility, as demonstrated in Tab. 2, our method surpasses all competing approaches on the physics realism metric, while simultaneously maintaining strong alignment with the input text, thereby ensuring high semantic consistency.
+
+### 5.3 ABLATION STUDY
+
+As illustrated in Sec. 4.2, to address inaccuracies in VLM-estimated physical parameters and the limited precision of physics simulators, we employ SDS to separately optimize the material parameters predicted by VLMs and the relative positions of foreground objects. To verify the necessity of these designs, we provide ablation studies here. As shown in Fig. 5, omitting material optimization causes the VLM-predicted density and Young’s modulus to yield overly compliant simulations, leading to unstable or non-physical object motion. Without relative position optimization, the simulation of multi-object interactions produces spurious collisions in the absence of true spatial overlap. When both optimization modules are applied, our method yields more stable dynamics and visually plausible object interactions. More ablation studies are provided in the Appendix D.
+
+### 5.4 APPLICATIONS ON CONTROLLABLE EDITING
+
+The compositional design of our method endows it with the inherent ability to edit individual concepts, *e.g.*, varying background environments and foreground objects with distinct motions. As shown in Fig. 6, we can seamlessly replace them in a zero-shot manner while preserving scene coherence, physical plausibility, and temporal consistency, thereby enabling flexible and diverse 4D content generation.
+
+## 6 CONCLUSION
+
+In this work, we have presented CP4D, a novel framework for photorealistic 4D scene generation with faithful modeling of complex physical dynamics. Drawing inspiration from the compositional nature of real-world scenes, CP4D follows a three-stage pipeline: 1) constructing 3D representations of background environments and foreground objects from textual prompts using pre-trained expert models; 2) producing physically grounded trajectories and realistic interactions through a hybrid motion synthesis strategy; and (3) seamlessly integrating static environments with dynamic objects via an automated composition mechanism. Extensive experiments have demonstrated that our proposed method consistently outperforms state-of-the-art baselines.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- 486
+ 487
+ 488 Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Ale-
+ 489 man, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical
+ 490 report. *arXiv preprint arXiv:2303.08774*, 2023.
+ 491
+ 492 Sherwin Bahmani, Xian Liu, Wang Yifan, Ivan Skorokhodov, Victor Rong, Ziwei Liu, Xihui Liu,
+ 493 Jeong Joon Park, Sergey Tulyakov, Gordon Wetzstein, et al. Tc4d: Trajectory-conditioned text-
+ 494 to-4d generation. In *European Conference on Computer Vision*, pp. 53–72. Springer, 2024a.
+ 495
+ 496 Sherwin Bahmani, Ivan Skorokhodov, Victor Rong, Gordon Wetzstein, Leonidas Guibas, Peter
+ 497 Wonka, Sergey Tulyakov, Jeong Joon Park, Andrea Tagliasacchi, and David B Lindell. 4d-fy:
+ 498 Text-to-4d generation using hybrid score distillation sampling. In *Proceedings of the IEEE/CVF*
+ 499 *Conference on Computer Vision and Pattern Recognition*, pp. 7996–8006, 2024b.
+ 500
+ 501 Jianhong Bai, Menghan Xia, Xiao Fu, Xintao Wang, Lianrui Mu, Jinwen Cao, Zuozhu Liu, Haoji
+ 502 Hu, Xiang Bai, Pengfei Wan, et al. Recammaster: Camera-controlled generative rendering from
+ 503 a single video. *arXiv preprint arXiv:2503.11647*, 2025.
+ 504
+ 505 Hritik Bansal, Zongyu Lin, Tianyi Xie, Zeshun Zong, Michal Yarom, Yonatan Bitton, Chenfanfu
+ 506 Jiang, Yizhou Sun, Kai-Wei Chang, and Aditya Grover. Videophy: Evaluating physical common-
+ 507 sense for video generation. *arXiv preprint arXiv:2406.03520*, 2024.
+ 508
+ 509 Boyuan Chen, Hanxiao Jiang, Shaowei Liu, Saurabh Gupta, Yunzhu Li, Hao Zhao, and Shenlong
+ 510 Wang. Physgen3d: Crafting a miniature interactive world from a single image. In *Proceedings of*
+ 511 *the Computer Vision and Pattern Recognition Conference*, pp. 6178–6189, 2025a.
+ 512
+ 513 Junyi Chen, Haoyi Zhu, Xianglong He, Yifan Wang, Jianjun Zhou, Wenzheng Chang, Yang Zhou,
+ 514 Zizun Li, Zhojie Fu, Jiangmiao Pang, et al. Deepverse: 4d autoregressive video generation as a
+ 515 world model. *arXiv preprint arXiv:2506.01103*, 2025b.
+ 516
+ 517 Matt Deitke, Dustin Schwenk, Jordi Salvador, Luca Weihs, Oscar Michel, Eli VanderBilt, Ludwig
+ 518 Schmidt, Kiana Ehsani, Aniruddha Kembhavi, and Ali Farhadi. Objaverse: A universe of anno-
+ 519 tated 3d objects. In *Proceedings of the IEEE/CVF conference on computer vision and pattern*
+ 520 *recognition*, pp. 13142–13153, 2023.
+ 521
+ 522 Haoyi Duan, Hong-Xing Yu, Sirui Chen, Li Fei-Fei, and Jiajun Wu. Worldscore: A unified evalua-
+ 523 tion benchmark for world generation. *arXiv preprint arXiv:2504.00983*, 2025.
+ 524
+ 525 Quankai Gao, Qiangeng Xu, Zhe Cao, Ben Mildenhall, Wenchao Ma, Le Chen, Danhang Tang,
+ 526 and Ulrich Neumann. Gaussianflow: Splatting gaussian dynamics for 4d content creation. *arXiv*
+ 527 *preprint arXiv:2403.12365*, 2024.
+ 528
+ 529 Yue Gao, Hong-Xing Yu, Bo Zhu, and Jiajun Wu. Fluidnexus: 3d fluid reconstruction and prediction
+ 530 from a single video. In *Proceedings of the Computer Vision and Pattern Recognition Conference*,
+ 531 pp. 26091–26101, 2025.
+ 532
+ 533 Hao He, Yinghao Xu, Yuwei Guo, Gordon Wetzstein, Bo Dai, Hongsheng Li, and Ceyuan
+ 534 Yang. Cameractrl: Enabling camera control for text-to-video generation. *arXiv preprint*
+ 535 *arXiv:2404.02101*, 2024.
+ 536
+ 537 Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. *Advances in*
+ 538 *neural information processing systems*, 33:6840–6851, 2020.
+ 539
+ 540 Yuanming Hu, Yu Fang, Ziheng Ge, Ziyin Qu, Yixin Zhu, Andre Pradhana, and Chenfanfu Jiang. A
+ 541 moving least squares material point method with displacement discontinuity and two-way rigid
+ 542 body coupling. *ACM Transactions on Graphics (TOG)*, 37(4):1–14, 2018.
+ 543
+ 544 Tianyu Huang, Haoze Zhang, Yihan Zeng, Zhilu Zhang, Hui Li, Wangmeng Zuo, and Rynson WH
+ 545 Lau. Dreamphysics: Learning physics-based 3d dynamics with video diffusion priors. In *Pro-*
+ 546 *ceedings of the AAAI Conference on Artificial Intelligence*, pp. 3733–3741, 2025.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/65Ai8mLfjI.txt b/papers/65Ai8mLfjI.txt
new file mode 100644
index 0000000000000000000000000000000000000000..22c2ffb74f96d8ee00a2c1742b38c0b06b5acc35
--- /dev/null
+++ b/papers/65Ai8mLfjI.txt
@@ -0,0 +1,291 @@
+
+
+{0}------------------------------------------------
+
+# RETHINKING GLOBAL TEXT CONDITIONING IN DIFFUSION TRANSFORMERS
+
+Nikita Starodubcev1\* Daniil Pakhomov2 Zongze Wu2 Ilya Drobyshevskiy1
+Yuchen Liu2 Zhonghao Wang2 Yuqian Zhou2 Zhe Lin2 Dmitry Baranchuk1
+
+1Yandex Research, 2Adobe Research
+
+
+
+## ABSTRACT
+
+Diffusion transformers typically incorporate textual information via (i) attention layers and (ii) a modulation mechanism using a pooled text embedding. Nevertheless, recent approaches discard modulation-based text conditioning and rely exclusively on attention. In this paper, we address **whether modulation-based text conditioning is necessary and whether it can provide any performance advantage**. Our analysis shows that, in its conventional usage, the pooled embedding contributes little to overall performance, suggesting that attention alone is generally sufficient for faithfully propagating prompt information. However, we reveal that the pooled embedding can provide significant gains when used from a different perspective—serving as guidance and enabling controllable shifts toward more desirable properties. This approach is training-free, simple to implement, incurs negligible runtime overhead, and can be applied to various diffusion models, bringing improvements across diverse tasks, including text-to-image/video generation and image editing.
+
+## 1 INTRODUCTION
+
+Since the pioneering works on diffusion models (DMs) (Ho et al., 2020; Song et al., 2020), the UNet architecture (Ronneberger et al., 2015) has served as the dominant backbone for diffusion-based image generation. This trend extended to text-to-image models (Saharia et al., 2022; Nichol et al., 2021), which employ UNet-based architectures (Rombach et al., 2022) and incorporate the CLIP text encoder (Radford et al., 2021) to condition the model on text sequences through the attention mechanism (Vaswani et al., 2017). Later, models such as Podell et al. (2023) began to incorporate the pooled CLIP embedding via modulation mechanisms (Karras et al., 2017; 2019), in addition to the token-wise text embeddings. More recently, works including Labs et al. (2025); Labs (2024); Esser et al. (2024); Kong et al. (2024); Cai et al. (2025) have adopted transformer-based architectures (Peebles & Xie, 2023) while retaining modulation-based text conditioning. Recent models (Wan et al., 2025; Wu et al., 2025; Agarwal et al., 2025; Xie et al., 2024) discard global text conditioning, achieving comparable text alignment by relying solely on attention. This transition raises questions about the role and necessity of global text conditioning, which we aim to explore.
+
+We observe that, at first glance, modulation-based text conditioning appears non-contributory, and attention alone is sufficient to capture textual information. However, we argue that it is premature to discard global text conditioning and that it should instead be leveraged from a different perspective. Specifically, we draw inspiration from the interpretability of the modulation mechanism (Karras et al., 2019) and the ability of CLIP to control it (Garibi et al., 2025). We suggest that the pooled text embedding can act as a corrector, adjusting the diffusion trajectory toward better modes.
+
+In summary, our contributions are as follows: **(1)** We conduct an in-depth analysis of global text conditioning in contemporary DMs and find that it plays only a minor role relative to attention-based text conditioning. **(2)** We show that global text conditioning can yield significant improvements when viewed from the perspective of *modulation guidance*. Furthermore, we enhance its effectiveness by proposing dynamic strategies. **(3)** We introduce techniques for integrating the pooled embedding
+
+\*Work partially done during an internship at Adobe Research
+
+{1}------------------------------------------------
+
+into fully attention-based models, thereby improving their performance via modulation guidance. (4) From a practical standpoint, our approach is simple to implement, incurs negligible overhead, and delivers performance gains on state-of-the-art multi- and few-step DMs across text-to-image/video and image-editing tasks.
+
+## 2 RELATED WORK
+
+Several post-training approaches have been proposed to improve DM quality. The first group centers on *classifier-free guidance (CFG) modifications* (Ho & Salimans, 2022). Specifically, prior works improve CFG by optimizing scale factors (Fan et al., 2025), addressing off-manifold challenges (Chung et al., 2024), modifying the unconditional branch (Karras et al., 2024), mitigating oversaturation at high CFG scales (Sadat et al., 2024; 2025; Lin et al., 2024), and introducing dynamic CFG strategies (Kynkäänniemi et al., 2024; Sadat et al., 2023; Wang et al., 2024; Yehezkel et al., 2025). In contrast, our method complements CFG and, importantly, can also be applied to few-step DMs (Song et al., 2023; Sauer et al., 2024b; Yin et al., 2024a; Starodubcev et al., 2025) that do not use CFG.
+
+The second group focuses on *test-time optimization*. A dominant line of work (Chefer et al., 2023; Seo et al., 2025; Yiflach et al., 2025; Li et al., 2023; Rassin et al., 2023; Agarwal et al., 2023; Dahary et al., 2024; Marioriyad et al., 2025; Binyamin et al., 2025; Phung et al., 2024; Chen et al., 2024; Kwon et al., 2022) relies on handcrafted loss functions, typically guided by heuristics about how attention maps should behave, and optimizes these maps accordingly. Other methods focus on optimizing only the initial noise rather than the full denoising trajectory (Eyring et al., 2025; Ma et al., 2025a; Eyring et al., 2024; Guo et al., 2024), or on fine-tuning LoRAs to extract different concepts (Gandikota et al., 2024). In contrast, our approach avoids complex loss design and intensive model tuning while still improving performance.
+
+Finally, works most closely related to ours are *attention guidance methods*. These methods (Chen et al., 2025; Hong et al., 2023; Ahn et al., 2025; Nguyen et al., 2024) leverage positive and negative prompts, compute attention outputs for both, and perform controlled extrapolation in the attention space—pushing the model toward positive prompts and away from negative ones. Our approach also relies on guidance in feature space but applies it through a small MLP rather than through attention.
+
+## 3 MODULATION LAYERS
+
+In this section, we briefly recap the key components of modulation layers used in transformer DMs.
+
+State-of-the-art text-to-image DMs (Labs, 2024; Cai et al., 2025) typically represent images as sequences of continuous tokens, aligning them with text tokens in a unified representation. This combined sequence is processed through a series of transformer blocks (Peebles & Xie, 2023), which primarily consist of MLPs, normalization, and attention layers. To condition the model on a text prompt, two types of encoders are usually used: a T5 (Raffel et al., 2020) and a CLIP text encoder (Radford et al., 2021), which operate as follows:
+
+$$\mathbf{y}(p, t) = \text{MLP}(t, \text{CLIP}(p)), \quad \mathbf{s} = [\text{T5}(p), \mathbf{x}], \quad (1)$$
+
+Here, $\mathbf{y}$ denotes a global conditioning vector derived from the time step $t$ and the pooled embedding of the prompt $p$ , whereas $\mathbf{s}$ denotes the concatenated sequence of image tokens $\mathbf{x}$ and text tokens $\text{T5}(p)$ . The sequence $\mathbf{s}$ is then processed via cross-attention to incorporate text information, while the global conditioning vector $\mathbf{y}$ is shared across the entire model and constructs a modulation space that influences the modulation layers.
+
+$$\text{Mod}(\mathbf{s}, \mathbf{y}) = \alpha_s(\mathbf{y}) \cdot \mathbf{s} + \beta_s(\mathbf{y}), \quad (2)$$
+
+Here, $\alpha_s$ and $\beta_s$ are the coefficients of the modulation layer, representing scaling and shifting operations, respectively. Notably, modulation layers have proved effective in enabling semantic control and transformation in GANs (Karras et al., 2019; 2020; 2021). In DMs, they have been used to address image editing problems (Garibi et al., 2025; Dalva et al., 2024). While these layers have shown effectiveness in semantic control tasks, their role in improving image generation quality remains unexplored.
+
+{2}------------------------------------------------
+
+| Configuration | CLIP Score $\uparrow$ | PickScore $\uparrow$ | ImageReward $\uparrow$ |
+|-|-|-|-|
+| FLUX schnell | | | |
+| Initial, short | 30.1 | 21.6 | 6.2 |
+| w/o CLIP, short | 29.0 ( $-1.1$ ) | 21.3 ( $-0.3$ ) | 4.5 ( $-1.7$ ) |
+| w/o T5, short | 28.9 ( $-1.2$ ) | 21.0 ( $-0.6$ ) | 1.5 ( $-4.7$ ) |
+| Initial, long | 33.1 | 21.0 | 10.3 |
+| w/o CLIP, long | 32.8 ( $-0.3$ ) | 21.0 ( $-0.0$ ) | 10.4 ( $+0.1$ ) |
+| w/o T5, long | 30.7 ( $-2.4$ ) | 19.9 ( $-1.1$ ) | 2.4 ( $-7.9$ ) |
+| HiDream-Fast | | | |
+| Initial, short | 30.3 | 21.8 | 7.9 |
+| w/o CLIP, short | 30.3 ( $-0.0$ ) | 21.8 ( $-0.0$ ) | 8.1 ( $+0.1$ ) |
+| w/o Llama, short | 20.2 ( $-10.1$ ) | 18.2 ( $-3.6$ ) | -21.5 ( $-29.4$ ) |
+| Initial, long | 32.9 | 21.5 | 12.8 |
+| w/o CLIP, long | 32.9 ( $-0.0$ ) | 21.5 ( $-0.0$ ) | 13.0 ( $+0.2$ ) |
+| w/o Llama, long | 16.8 ( $-16.1$ ) | 16.0 ( $-4.5$ ) | -20.8 ( $-33.6$ ) |
+
+Table 1: Image quality results for short and long prompts. The CLIP embedding does not affect output quality on long prompts for **FLUX schnell** and has no effect for **HiDream-Fast**.
+
+
+
+Figure 1: (top) A line graph showing the deviation from the initial image (DreamSim) relative to the number of tokens in the prompt for the FLUX schnell model. The x-axis represents the number of tokens (0 to 50), and the y-axis represents the deviation (0.0 to 0.8). The blue line shows a sharp decrease in deviation as the number of tokens increases, starting at approximately 0.8 for 10 tokens and dropping to near 0.0 by 40 tokens. (bottom) Four small images illustrating the effect of CLIP on long prompts. The first two images show an elderly man with a beard, the third shows a panda, and the fourth shows a person in a room. The images are labeled 'w/o CLIP long', 'with CLIP long', 'w/o CLIP short', and 'with CLIP short' respectively. The 'with CLIP' images appear more detailed and closer to the initial description.
+
+Figure 1: (top) Difference between images (DreamSim) with and without CLIP as a function of prompt length. (bot) For long prompts, images without CLIP generally do not differ from the initial ones.
+
+## 4 ANALYSIS OF THE POOLED TEXT EMBEDDING ROLE
+
+In recent DMs, there is a trend to discard the pooled text embedding and rely solely on the timestep $t$ to produce $y$ , i.e., $\text{MLP}(t, \text{CLIP}(p)) \rightarrow \text{MLP}(t)$ . In this setup, the text is incorporated only through the text encoder T5. However, no strict justification for this design choice has been provided. Therefore, in this section, we investigate the impact of the pooled embedding on the generative performance of DMs.
+
+**Influence of the CLIP pooled embedding.** First, we analyze the influence of CLIP on text-to-image generation performance. To this end, we examine two contemporary models: FLUX schnell and HiDream-Fast. Specifically, we analyze the impact of CLIP by removing the pooled embedding, setting $\text{CLIP}(p) \rightarrow 0$ , and comparing it to the standard case with CLIP enabled. Our key observation is that **the pooled CLIP embedding is partially inactive in FLUX schnell and fully inactive in HiDream-Fast.**
+
+Specifically, we find that the influence of CLIP in **FLUX schnell** is inconsistent: it is negligible for long prompts but can be impactful for short ones. To confirm this, we construct two subsets of prompts (1K each) from the MJHQ dataset (Li et al., 2024): short (10 tokens) and long (77 tokens). We then evaluate the DM’s performance on each subset. In Table 1 (top), we report image quality metrics (CLIP Score, PickScore, and ImageReward) for each subset. We observe that for long prompts, CLIP has little effect, with only a minimal impact on quality. In contrast, for short prompts, its influence is more pronounced.
+
+Moreover, in Figure 1, we analyze the difference between images generated with and without CLIP as a function of prompt length (measured by the number of tokens). We find that for longer prompts, the deviation from the initial generation becomes negligible, and the images fully resemble the initial ones, as visually confirmed in Figure 1 (bottom).
+
+For **HiDream-Fast**, we observe slightly different behavior: the CLIP pooled embedding exhibits no effect for either short or long prompts, as numerically confirmed in Table 1 (bottom).
+
+**Influence of the pooled embedding on other models.** Additionally, we explore the reintegration of CLIP into a DM from which it was originally absent. To this end, we consider the COSMOS model (Agarwal et al., 2025) and incorporate the CLIP pooled embedding into it as described in Section 5. In this case, we observe the same behavior as with the HiDream-Fast model: CLIP has no influence. This result is numerically confirmed in Section 6. Finally, in Appendix A, we observe the same effect in the instruction-guided image editing task performed with the FLUX Kontext model. In Section 6, we show that this limitation can result in insufficient editing strength for complex cases.
+
+{3}------------------------------------------------
+
+## 5 MODULATION GUIDANCE
+
+Our observations raise questions about the necessity of using the pooled embedding in generative tasks. **However, although the pooled text embedding may seem uninformative in some cases, we propose reconsidering its role from a different perspective—one that can lead to improved generative performance in DMs.**
+
+**Guidance in modulation space.** We draw inspiration from the understanding that modulation layers can drive semantic changes in generated images (Karras et al., 2019). Moreover, the CLIP encoder is trained to construct a shared space between images and text, resulting in interpretable geometry. Thus, we suggest that CLIP enables interpretable modifications of the modulation space using natural language and guides the model toward modes with more desirable properties.
+
+We propose a training-free, plug-and-play technique to reactivate CLIP and strengthen its influence during generation, drawing inspiration from Garibi et al. (2025). Specifically, we amplify its effect by introducing guidance in the modulation space.
+
+$$\mathbf{y}(\mathbf{p}, t) \rightarrow \hat{\mathbf{y}}(\mathbf{p}, \mathbf{p}_+, \mathbf{p}_-, t) = \mathbf{y}(\mathbf{p}, t) + w \cdot (\mathbf{y}(\mathbf{p}_+, t) - \mathbf{y}(\mathbf{p}_-, t)). \quad (3)$$
+
+We note that $\hat{\mathbf{y}}$ affects only the modulation coefficients and is shared across all DM blocks, thereby incurring negligible computational overhead compared to basic generation. Moreover, this technique can be applied on top of CFG guidance or with distilled DMs that do not rely on CFG.
+
+To provide intuition behind the guidance, we first analyze it from the perspective of semantic changes. Prior work has focused on identifying interpretable directions in DMs, either through supervised (Gandikota et al., 2024) or unsupervised approaches (Gandikota et al., 2025). In contrast, we demonstrate that such interpretable directions are already embedded within the model and can be accessed by shifting in the modulation space. Specifically, in Figure 2, we consider two examples: $\mathbf{p}_+ = \text{Long hair}$ ; $\mathbf{p}_- = \text{Short hair}$ ; $\mathbf{p}_+ = \text{Modern car}$ and $\mathbf{p}_- = \text{Old car}$ . We observe that the pooled embedding can substantially influence the generated image, leading to both local (hair length) and global (car style) changes.
+
+
+
+Figure 2: A 2x3 grid of images showing the effect of modulation guidance. The top row shows a man's face with labels: '- Short hair', 'Original generation', and '+ Long hair'. The bottom row shows a car with labels: '- Old car', 'Original generation', and '+ Modern car'. The images demonstrate how shifting the modulation space can change local features (hair length) and global features (car style).
+
+Figure 2: The modulation guidance enables local (top) and global (bottom) changes and encourages its use to shift a DM toward modes with better properties.
+
+Our observations suggest that modulation guidance provides an additional degree of freedom in generation, beyond what CFG offers. Building on this, we propose using it to enhance generation quality across multiple dimensions. Specifically, we consider **general changes**: aesthetics, complexity, and **specific changes**: hands correction, object counting, color, position. For the latter, we focus on common criteria typically measured in T2I benchmarks (Ghosh et al., 2023). Notably, our technique requires only the selection of a suitable prompt for each category—no additional training or fine-tuning is necessary. In Appendix D, we present the prompts used for each targeted aspect.
+
+**Dynamic modulation guidance.** We find that a constant guidance scale $w$ is generally effective, but excessively high values can overweight the prompt and cause the model to neglect textual information (Appendix C). To address this, we draw inspiration from dynamic CFG (Sadat et al., 2023; Kynkäänniemi et al., 2024), which has shown promising results in DMs. Unlike dynamic CFG, we aim to adjust $w$ across layers rather than across time steps.
+
+We consider the simplest variant present in Figure 3(b). We discuss more strategies in Appendix B. First, we compare the dynamic version against constant modulation guidance in terms of the aesthetics-prompt fidelity trade-off. To this end, we apply both types of guidance with different scales $w$ on 1K prompts from the MJHQ dataset (Lian et al., 2023). We compute PickScore (Kirstain et al., 2023) for aesthetics quality and CLIP score (Hessel et al., 2021) for text correspondence. The results presented in Figure 3(a) confirm that dynamic guidance provides a better trade-off than constant
+
+{4}------------------------------------------------
+
+
+
+Figure 3: Analysis on dynamic modulation guidance. (a) A line graph titled 'Aesthetics quality / prompt fidelity trade-off' showing 'Aesthetics quality, PadScore ↑' on the y-axis (ranging from 21.58 to 21.75) and 'Text relevance, CLIP score ↑' on the x-axis (ranging from 30.2 to 30.9). Two lines are plotted: 'dynamic mod. guidance' (blue) and 'constant mod. guidance' (orange). The orange line starts at w=3.5 (approx. 30.2, 21.61), peaks at w=3 (approx. 30.4, 21.67), then drops to w=2 (approx. 30.6, 21.60), and finally to w=0 (approx. 30.9, 21.58). The blue line starts at w=0 (approx. 30.9, 21.58), rises to w=2 (approx. 30.9, 21.72), w=3 (approx. 30.8, 21.74), and ends at w=3.5 (approx. 30.7, 21.75). (b) A graph showing a step function for modulation weight 'w' over 'Layer' index. The y-axis is 'w' and the x-axis is 'Layer'. The function is 0 for layers 0 to i, and then jumps to a constant value w for layers i+1 onwards.
+
+Figure 3: **Analysis on dynamic modulation guidance.** (a) Dynamic guidance offers a better trade-off between aesthetic quality and prompt correspondence than constant modulation guidance. (b) We use a step function, controlled by $i$ , that skips the first few layers of the model as our form of dynamic guidance. Additional variants are explored in Appendix B.
+
+guidance. Our approach improves image quality without compromising prompt correspondence relative to $w = 0$ (the initial model without modulation guidance).
+
+In our experiments, we find that dynamic modulation guidance generalizes well across tasks, suggesting that it can be applied to new tasks without additional tuning. We also observe that more complex strategies (Appendix C) can yield better results in some cases, offering an additional degree of improvement.
+
+### What does modulation guidance actually do?
+
+We address the question of how the model is affected by the guidance in improving the generated content. To this end, we analyze the case of hands correction. Specifically, in Figure 4(a), we visualize the attention map corresponding to the word *hands* for a specific image. Interestingly, we observe that the model places greater focus on the relevant region, highlighting it more distinctly. In addition, in Figure 4(b, left), we plot the averaged attention map for all tokens in the corresponding prompt. We find that the model primarily shifts its attention toward more relevant tokens—such as *hands* and *child*.
+
+To confirm this intuition, we analyze a subset of prompts focused on hands correction and split all tokens into four groups: non-content tokens, the token *hands*, tokens related to hands, and other important tokens. The results in Figure 4(b, right) confirm that the model shifts its attention toward *hands* and hand-related tokens.
+
+**Integrating the pooled text embedding into CLIP-free models.** Finally, we extend modulation guidance to models without pooled text embeddings, showing that it can improve generation quality. To this end, we fine-tune existing text-to-image/video models Agarwal et al. (2025); Wan et al. (2025) by introducing the pooled embedding. Specifically, we train a small MLP on top of the pooled text embedding and add it to the timestep embedding, while keeping the rest of the network frozen. The model behaves identically to the original when the pooled embedding is set to 0. Importantly, we train on the model’s own synthetic data to ensure that improvements do not stem from dataset differences.
+
+
+
+Figure 4: After applying modulation guidance, the model focuses more on the desired features, such as hands (a, b). (a) Three heatmaps showing attention maps for the word 'hands' in a prompt. The first heatmap 'Ours, modulation guidance' shows a concentrated focus on the hands. The second 'Original generation' shows more dispersed attention. The third 'Difference' shows the change in attention. (b) Two bar charts. The left chart shows 'Mean attention per token' for tokens: 'The', 'child', 'has', 'hands', 'that', 'are', 'in', 'the', 'air'. The right chart shows 'Mean attention per token' for token groups: 'non-content', 'hands', 'related to hands', 'other important'. In both charts, the blue bars represent 'Ours, modulation guidance' and the orange bars represent 'Original generation'. In both cases, the blue bars are higher for 'hands' and 'related to hands' tokens.
+
+Figure 4: After applying modulation guidance, the model focuses more on the desired features, such as hands (a, b).
+
+{5}------------------------------------------------
+
+Table 2: Performance of text-to-image DMs with and without modulation guidance (gray) on Aesthetics and Complexity, evaluated with human preferences and automatic metrics. Human win rates are reported with respect to the original model; green indicates statistically significant improvement, red a decline. For automatic metrics, bold denotes improvement over the original model.
+
+| Model | Side-by-Side Win Rate, % | | | | Automatic Metrics, COCO 5k | | | |
+|-|-|-|-|-|-|-|-|-|
+| | Relevance $\uparrow$ | Aesthetics $\uparrow$ | Complexity $\uparrow$ | Defects $\uparrow$ | PickScore $\uparrow$ | CLIP $\uparrow$ | IR $\uparrow$ | HPSv3 $\uparrow$ |
+| FLUX schnell | | | | | 22.9 | 35.6 | 10.2 | 11.3 |
+| Aesthetics | 48 | 72 | 78 | 48 | 23.1 | 35.8 | 11.0 | 11.8 |
+| Complexity | 53 | 56 | 69 | 47 | 23.0 | 35.9 | 10.8 | 11.4 |
+| FLUX dev | | | | | 23.1 | 34.7 | 10.5 | 12.4 |
+| Aesthetics | 44 | 56 | 69 | 52 | 23.2 | 34.5 | 11.0 | 12.8 |
+| Complexity | 48 | 59 | 72 | 47 | 23.1 | 34.6 | 11.1 | 12.8 |
+| SD3.5 Large | | | | | 23.0 | 35.8 | 10.5 | 11.1 |
+| Aesthetics | 50 | 62 | 70 | 47 | 23.1 | 35.9 | 10.7 | 11.2 |
+| Complexity | 49 | 49 | 60 | 45 | 23.0 | 35.8 | 11.7 | 11.0 |
+| HiDream | | | | | 23.4 | 34.4 | 11.7 | 13.2 |
+| Aesthetics | 49 | 60 | 80 | 46 | 23.5 | 34.4 | 12.1 | 13.7 |
+| Complexity | 47 | 52 | 70 | 45 | 23.5 | 34.4 | 11.9 | 13.3 |
+| COSMOS | | | | | 23.0 | 35.0 | 11.4 | 12.3 |
+| + CLIP | 50 | 49 | 43 | 50 | 23.0 | 35.0 | 11.4 | 12.2 |
+| Aesthetics | 50 | 60 | 70 | 45 | 23.2 | 35.0 | 11.7 | 12.6 |
+| Complexity | 50 | 52 | 61 | 44 | 23.0 | 35.4 | 11.8 | 12.4 |
+
+We highlight two important aspects of the training process. First, we propagate the textual prompt solely through the pooled text embedding, using an unconditional prompt for T5. This design forces the model to perceive textual information through the pooled embedding. Second, we employ a distillation-based training regime. Specifically, we sample a clean image, add noise to it, and then generate two predictions: one from the original model (without the pooled embedding) and one from the modified model (with the pooled embedding). The objective is to minimize the MSE loss between these two predictions. This distillation approach is well-suited for few-step DMs, as it eliminates the need for complex adversarial or distribution-matching losses (Yin et al., 2024a).
+
+## 6 EXPERIMENTS
+
+### 6.1 TEXT-TO-IMAGE GENERATION
+
+**Configuration.** We validate our approach on state-of-the-art text-to-image DMs that include modulation-based text conditioning: FLUX schnell (Sauer et al., 2024a), FLUX (Labs, 2024), SD3.5 Large (Esser et al., 2024), and HiDream (Cai et al., 2025). In addition, we consider the CLIP-free COSMOS model (Agarwal et al., 2025) and fine-tune it for 4K iterations to introduce the pooled text embedding. We train the model on its own synthetic dataset of 500K samples, following the generation settings of Agarwal et al. (2025) and using prompts from Li et al. (2024).
+
+We evaluate performance using two types of metrics: human preference and automatic evaluation. Human preference is measured via side-by-side comparisons, where annotators assess image pairs on four criteria: text relevance, aesthetics, complexity, and defects (details in Appendix J). For general changes, we use 128 prompts from PartiPrompts (Yu et al., 2022), generating two images per prompt. For specific changes, we use 70 prompts from CompBench (Jia et al., 2025) for object counting and 200 LLM-generated prompts for hands correction. For automatic evaluation, we report CLIP score (Hessel et al., 2021), ImageReward (IR) (Xu et al., 2023), PickScore (PS) (Kirstain et al., 2023), and HPSv3 (Ma et al., 2025b), tested on 5K prompts from COCO2014 (Lin et al., 2014). We also use GenEval (Ghosh et al., 2023) to validate modulation guidance across multiple benchmark criteria.
+
+Our main baselines are the original models without modulation guidance. In addition, we consider the Normalized Attention Guidance approach (Chen et al., 2025) and LLM-enhanced prompt modifiers (Lian et al., 2023). Finally, we include the test-time optimization method Concept Sliders (Gandikota et al., 2024) for the hands correction task.
+
+{6}------------------------------------------------
+
+
+
+| | FLUX, schnell | FLUX | Hi-Dream | SD3.5 Large | COSMOS |
+|-|-|-|-|-|-|
+| Ours, quality | | | | | |
+| Original | | | | | |
+| a smiling banana wearing a bandana | | | | | |
+| Ours, complexity | | | | | |
+| Original | | | | | |
+| a cardboard spaceship | | | | | |
+
+A smiling banana wearing a blue bandana with a white pattern, set against a dark, textured background. A smiling banana wearing a brown bandana, set against a dark background. A smiling banana wearing a blue bandana, set against a background of a cafe interior. A smiling banana wearing a blue bandana, set against a background of a beach with palm trees. A smiling banana wearing a blue bandana, set against a background of a beach with palm trees. A simple cartoon banana with a smiling face and a blue bandana. A simple cartoon banana with a smiling face and a brown bandana. A simple cartoon banana with a smiling face and a blue bandana. A simple cartoon banana with a smiling face and a blue bandana. A simple cartoon banana with a smiling face and a blue bandana. A detailed cardboard spaceship with multiple engines and windows, set against a space background with a planet. A detailed cardboard spaceship with multiple engines and windows, set against a space background. A detailed cardboard spaceship with multiple engines and windows, set against a space background. A detailed cardboard spaceship with multiple engines and windows, set against a space background. A detailed cardboard spaceship with multiple engines and windows, set against a space background. A simple cardboard spaceship model. A simple cardboard spaceship model. A simple cardboard spaceship model. A simple cardboard spaceship model. A simple cardboard spaceship model.
+
+Figure 5: Qualitative results of modulation guidance for Aesthetics (top) and Complexity (bottom). The Aesthetics guidance notably improves image quality, while the Complexity guidance can enhance the complexity of both the main object and background details.
+
+**General changes.** In this case, we focus on two aspects for improvement: aesthetics and complexity. These aspects are crucial for text-to-image generation and are typically the targets of self-supervised fine-tuning techniques (Startsev et al., 2025) or RL-based approaches (Wallace et al., 2024), which are commonly adopted in DMs. However, we demonstrate that our simple technique achieves significant improvements without any fine-tuning. The only requirement is to select appropriate positive and negative prompts, along with a suitable dynamic guidance strategy. Our choices are summarized in Table 5 and discussed in Appendix D.
+
+Table 2 reports numerical results, showing clear human preference gains for both aspects. Aesthetics guidance significantly improves both aesthetics and complexity, while complexity guidance mainly enhances complexity. Automatic metrics show consistent ImageReward gains across all models and HPSv3 improvements in most cases, except for SD3.5 Large with complexity guidance. Importantly, we observe that introducing CLIP into COSMOS does not improve performance and even reduces complexity; gains appear only when combined with modulation guidance, confirming that CLIP alone is ineffective. We note slight drops in text relevance for FLUX dev and in defects for COSMOS, though these are minor. Qualitative examples are shown in Figure 5 and Appendix I.
+
+**Specific changes.** Next, we focus on improving object counting, hands correction, color, and position. The first two are particularly important, as they have been extensively studied in prior work (Binyamin et al., 2025; Gandikota et al., 2024). For object counting, we use the number of target objects as the positive direction, while for hands correction, we draw
+
+{7}------------------------------------------------
+
+Table 3: Quantitative results of the modulation guidance for specific changes. The modulation guidance yields improvements according to GenEval and human preference.
+
+| Model | | GenEval | | | SbS Win Rate, % | |
+|-|-|-|-|-|-|-|
+| | | Object Counting | Color | Position | Object Counting | Hands correction |
+| FLUX schnell | Original | 56 | 79 | 25 | 39 | 41 |
+| | Ours | 65 (+9) | 86 (+7) | 30 (+5) | 61 (+22) | 59 (+18) |
+
+
+
+Figure 6 displays qualitative results of the modulation guidance. The top section shows 'Object counting' results for five prompts: 'four balloons ...', 'eight microwaves ...', 'seven strawberries ...', 'seven pigs ...', and 'eight cows ...'. For each prompt, two rows of images are shown: 'Ours' (top row) and 'Original' (bottom row). The 'Ours' row consistently shows the correct number of objects, while the 'Original' row often shows a different number. The bottom section shows 'Hands correction' results for five prompts: 'four balloons ...', 'eight microwaves ...', 'seven strawberries ...', 'seven pigs ...', and 'eight cows ...'. For each prompt, two rows of images are shown: 'Ours' (top row) and 'Original' (bottom row). The 'Ours' row shows hands with the correct number of fingers, while the 'Original' row often shows hands with an incorrect number of fingers.
+
+Figure 6: Qualitative results of the modulation guidance for Object counting (top) and Hands correction (bottom).
+
+Figure 6: Qualitative results of the modulation guidance for Object counting (top) and Hands correction (bottom).
+
+inspiration from Gandikota et al. (2024) in designing positive and negative prompts. Further details are provided in Table 5.
+
+We present the results in Table 3 and Figure 6. Improvements are observed in several aspects of the GenEval benchmark, including object counting, color, and position. According to human evaluation, our approach improves the original model by 22% in object counting and 18% in hands correction. We report text relevance and defects as the evaluation criteria for object counting and hands correction, respectively.
+
+**Comparison with baselines.** Normalized Attention Guidance (Chen et al., 2025) targets general changes, so we compare it with our aesthetics guidance using SbS evaluation. Similarly, we compare Concept Sliders (Gandikota et al., 2024) with our hands correction guidance by evaluating defects. For LLM-enhanced prompts (Lian et al., 2023), we consider general changes, hands correction, and object counting. Results in Appendix E (Tables 8 and 9) show that our approach outperforms Normalized Attention Guidance by 34% and Concept Sliders by 16%, without additional computational overhead. Moreover, Table 8 shows that modulation guidance can further improve performance when combined with LLM-enhanced prompts.
+
+{8}------------------------------------------------
+
+Table 4: Quantative evaluation on VBench. The results show an improved dynamic degree compared to the original models and baseline approach (normalized attention guidance).
+
+| Model, video | | total score $\uparrow$ | motion smoothness $\uparrow$ | dynamic degree $\uparrow$ | aesthetic quality $\uparrow$ | overall consistency $\uparrow$ |
+|-|-|-|-|-|-|-|
+| Hunyuan, 13B | Original | 56.68 | 99.23 | 50.51 | 55.88 | 21.08 |
+| | Modulation guidance | 57.56 | 99.03 | 53.61 | 56.50 | 21.09 |
+| CausVid, 1.3B | Original | 62.72 | 98.76 | 75.25 | 57.85 | 19.01 |
+| | + CLIP | 62.82 | 98.63 | 76.38 | 57.77 | 18.49 |
+| | Norm. attent. guidance | 63.58 | 98.39 | 74.22 | 62.08 | 19.61 |
+| | Modulation guidance | 65.43 | 98.45 | 86.59 | 57.65 | 19.02 |
+
+
+
+Figure 7: Qualitative comparison between the original CausVid and CausVid with modulation guidance. The image shows two rows of five frames each. The top row, labeled 'Ours', shows a person riding a bicycle through a snowy field. The bottom row, labeled 'CausVid\_1.3B', shows a light blue bicycle. The caption below reads: 'A bicycle gliding through a snowy field.'
+
+Figure 7: Qualitative comparison between the original CausVid and CausVid with modulation guidance.
+
+
+
+Figure 8: Qualitative results for text-guided image editing tasks. The image shows two rows of three frames each. The top row shows a group of people, with the instruction 'Turn people into robots'. The bottom row shows a landscape with cars, with the instruction 'Replace the cars with boats'. The caption below reads: 'Figure 8: Qualitative results for text-guided image editing tasks. We observe that FLUX Kontext sometimes struggles with complex edits, while modulation guidance can mitigate this limitation.'
+
+Figure 8: Qualitative results for text-guided image editing tasks. We observe that FLUX Kontext sometimes struggles with complex edits, while modulation guidance can mitigate this limitation.
+
+### 6.2 TEXT-TO-VIDEO GENERATION
+
+**Configuration.** We apply modulation guidance to Hunyuan 13B (Kong et al., 2024) and CausVid 1.3B (Yin et al., 2024b). The latter does not include a CLIP model, so we fine-tune it for 1K iterations. To evaluate performance, we use VBench (Huang et al., 2024), which covers various aspects. In this experiment, we apply the same aesthetics guidance as in the text-to-image task. In addition, we compare our approach with Normalized Attention Guidance.
+
+**Results.** The results are presented in Table 4 and Figure 7. Importantly, we observe improvements in dynamic degree for both models, with particularly strong gains for CausVid. This is notable because CausVid is distilled from WAN (Wan et al., 2025), and video models typically lose dynamics after distillation. Furthermore, we find that incorporating CLIP provides no improvement. Additional visual comparisons are provided in Appendix I.
+
+### 6.3 INSTRUCTION-GUIDED IMAGE EDITING
+
+Finally, we address image editing using the FLUX Kontext model (Labs et al., 2025), which, as we find, can struggle with complex edits involving multiple objects. To overcome this, we apply modulation guidance, using the final prompt as the positive direction and a blank prompt as the negative. We validate our approach on the SEED-Data benchmark (Ge et al., 2024) and present the results and implementation details in Appendix F. Representative examples are shown in Figure 8.
+
+## 7 CONCLUSION
+
+In this paper, we revisit the role of the pooled text embedding, showing that, despite its weak influence, it can improve performance across tasks and models when used from a different perspective. We present ablation studies in Appendix C, where dynamic modulation guidance outperforms constant guidance, offering greater flexibility for practitioners. Limitations are discussed in Appendix H.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- Aishwarya Agarwal, Srikrishna Karanam, KJ Joseph, Apoorv Saxena, Koustava Goswami, and Balaji Vasan Srinivasan. A-star: Test-time attention segregation and retention for text-to-image synthesis. In *Proceedings of the IEEE/CVF International Conference on Computer Vision*, pp. 2283–2293, 2023.
+- Niket Agarwal, Arslan Ali, Maciej Bala, Yogesh Balaji, Erik Barker, Tiffany Cai, Prithvijit Chattopadhyay, Yongxin Chen, Yin Cui, Yifan Ding, et al. Cosmos world foundation model platform for physical ai. *arXiv preprint arXiv:2501.03575*, 2025.
+- Donghoon Ahn, Hyoungwon Cho, Jaewon Min, Wooseok Jang, Jungwoo Kim, SeonHwa Kim, Hyun Hee Park, Kyong Hwan Jin, and Seungryong Kim. Self-rectifying diffusion sampling with perturbed-attention guidance, 2025. URL .
+- Omri Avrahami, Or Patashnik, Ohad Fried, Egor Nemchinov, Kfir Aberman, Dani Lischinski, and Daniel Cohen-Or. Stable flow: Vital layers for training-free image editing. In *Proceedings of the Computer Vision and Pattern Recognition Conference*, pp. 7877–7888, 2025.
+- Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, Humen Zhong, Yuanzhi Zhu, Mingkun Yang, Zhaohai Li, Jianqiang Wan, Pengfei Wang, Wei Ding, Zheren Fu, Yiheng Xu, Jiabo Ye, Xi Zhang, Tianbao Xie, Zesen Cheng, Hang Zhang, Zhibo Yang, Haiyang Xu, and Junyang Lin. Qwen2.5-vl technical report. *arXiv preprint arXiv:2502.13923*, 2025.
+- Lital Binyamin, Yoad Tewel, Hilit Segev, Eran Hirsch, Royi Rassin, and Gal Chechik. Make it count: Text-to-image generation with an accurate number of objects. In *Proceedings of the Computer Vision and Pattern Recognition Conference*, pp. 13242–13251, 2025.
+- Qi Cai, Jingwen Chen, Yang Chen, Yehao Li, Fuchen Long, Yingwei Pan, Zhaofan Qiu, Yiheng Zhang, Fengbin Gao, Peihan Xu, et al. Hidream-i1: A high-efficient image generative foundation model with sparse diffusion transformer. *arXiv preprint arXiv:2505.22705*, 2025.
+- Hila Chefer, Yuval Alaluf, Yael Vinker, Lior Wolf, and Daniel Cohen-Or. Attend-and-excite: Attention-based semantic guidance for text-to-image diffusion models. *ACM transactions on Graphics (TOG)*, 42(4):1–10, 2023.
+- Dar-Yen Chen, Hmrishav Bandyopadhyay, Kai Zou, and Yi-Zhe Song. Normalized attention guidance: Universal negative guidance for diffusion models, 2025. URL .
+- Minghao Chen, Iro Laina, and Andrea Vedaldi. Training-free layout control with cross-attention guidance. In *Proceedings of the IEEE/CVF winter conference on applications of computer vision*, pp. 5343–5353, 2024.
+- Hyungjin Chung, Jeongsol Kim, Geon Yeong Park, Hyelin Nam, and Jong Chul Ye. Cfg++: Manifold-constrained classifier free guidance for diffusion models. *arXiv preprint arXiv:2406.08070*, 2024.
+- Omer Dahary, Or Patashnik, Kfir Aberman, and Daniel Cohen-Or. Be yourself: Bounded attention for multi-subject text-to-image generation, 2024. URL .
+- Yusuf Dalva, Kavana Venkatesh, and Pinar Yanardag. Fluxspace: Disentangled semantic editing in rectified flow transformers, 2024. URL .
+- Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas Müller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, et al. Scaling rectified flow transformers for high-resolution image synthesis. In *Forty-first international conference on machine learning*, 2024.
+- Luca Eyring, Shyamgopal Karthik, Karsten Roth, Alexey Dosovitskiy, and Zeynep Akata. Reno: Enhancing one-step text-to-image models through reward-based noise optimization. *Neural Information Processing Systems (NeurIPS)*, 2024.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/6RQsAQEUib.txt b/papers/6RQsAQEUib.txt
new file mode 100644
index 0000000000000000000000000000000000000000..8b3e803c9f5b3cb8b9c4d9f4d308fca938297b6f
--- /dev/null
+++ b/papers/6RQsAQEUib.txt
@@ -0,0 +1,320 @@
+
+
+{0}------------------------------------------------
+
+# GHPO: ADAPTIVE GUIDANCE FOR STABLE AND EFFICIENT LLM REINFORCEMENT LEARNING
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Reinforcement Learning with Verifiable Rewards (RLVR) has recently emerged as a powerful paradigm for facilitating the self-improvement of large language models (LLMs), particularly in the domain of complex reasoning tasks. However, prevailing on-policy RL methods often contend with significant training instability and inefficiency. This is primarily due to a capacity-difficulty mismatch, where the complexity of training data frequently outpaces the model’s current capabilities, leading to critically sparse reward signals and stalled learning progress. This challenge is particularly acute for smaller, more resource-efficient LLMs. To overcome this, we introduce the Guided Hybrid Policy Optimization (GHPO), a novel difficulty-aware reinforcement learning framework. GHPO dynamically calibrates task difficulty by employing adaptive prompt refinement to provide targeted guidance. This unique approach adaptively balances direct imitation learning for problems currently beyond the model’s reach with exploration-based reinforcement learning for more manageable tasks, effectively creating a smooth and optimized learning curriculum. Extensive experiments demonstrate that GHPO achieves an average performance gain of approximately 5% across six challenging mathematics benchmarks, consistently outperforming strong on-policy reinforcement learning and curriculum learning baselines. Further analysis confirms that our framework significantly enhances both training stability and final reasoning performance, thus offering a scalable and efficient solution for developing powerful and robust reasoning models. The source code is available at: .
+
+## 1 INTRODUCTION
+
+A new generation of large reasoning models, including OpenAI-o3 [OpenAI \(2025\)](#), DeepSeek-R1 [Guo et al. \(2025\)](#), and Kimi-1.5 [Team et al. \(2025\)](#), is achieving state-of-the-art results in complex reasoning. A key characteristic of these models is their proficiency in producing extended Chains-of-Thought (CoT) [Wei et al. \(2022\)](#) and engaging in what appears to be reflective reasoning. This phenomenon, termed “test-time scaling”, [Guo et al. \(2025\)](#) has proven highly effective for solving challenging mathematics and programming problems. At the heart of these achievements is a training methodology called ZERO-RL [Guo et al. \(2025\)](#). This paradigm employs Reinforcement Learning with Verifiable Rewards (RLVR)—a technique exemplified by DeepSeek-R1—to progressively enhance a base LLM’s capabilities through reinforcement on its self-generated outputs.
+
+Reinforcement learning (RL) based post-training has demonstrated superior generalization in enhancing reasoning capabilities compared to Supervised Fine-Tuning (SFT), which relies on imitation learning from high-quality, human-curated data or Chains of Thought (CoTs) distilled from more powerful models [Chu et al. \(2025\)](#). Nevertheless, current RL with Verifiable Rewards (RLVR) approaches, exemplified by Group Relative Policy Optimization (GRPO) [Shao et al. \(2024\)](#), confront substantial limitations. Being primarily on-policy, these methods exhibit a strong dependency on the current policy model’s performance, leading to two major challenges: 1) *Reward Sparsity from Capacity-Difficulty Mismatch*: A significant mismatch between the inherent difficulty of the training data and the model’s evolving capabilities often results in reward sparsity, where uniform and uninformative rewards impede the learning process [Yu et al. \(2025\)](#). 2) *Suboptimal Sample Efficiency*: On-policy algorithms frequently suffer from suboptimal sample efficiency. As training datasets incorporate increasingly challenging problems to drive benchmark performance, the policy
+
+{1}------------------------------------------------
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+068
+069
+070
+071
+072
+073
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+098
+099
+100
+101
+102
+103
+104
+105
+106
+107
+
+
+
+| Benchmark | Qwen2.5-Base-7B (%) | Qwen2.5-7B-GRPO (%) | Qwen2.5-7B-GHPO (%) |
+|-|-|-|-|
+| Math-500 | 69.4 | 75.2 | 78.6 |
+| AMC23 | 40.0 | 47.5 | 57.5 |
+| GPQA-Diamond | 21.7 | 30.8 | 39.4 |
+| Minerva Math | 19.5 | 31.2 | 34.6 |
+| OlympiadBench | 34.0 | 40.8 | 41.5 |
+| AVG | 32.4 | 39.8 | 44.2 |
+
+Bar chart showing Overall Performance of GHPO across several benchmarks on the Qwen2.5-7B base model. The chart compares three models: Qwen2.5-Base-7B (gray), Qwen2.5-7B-GRPO (light blue), and Qwen2.5-7B-GHPO (dark blue) across six benchmarks: Math-500, AMC23, GPQA-Diamond, Minerva Math, OlympiadBench, and AVG. The Y-axis represents Accuracy / Percentile (%).
+
+Figure 1: Overall Performance of GHPO across several benchmarks on the Qwen2.5-7B base model.
+
+model struggles to learn effectively. This limitation is particularly pronounced for compact, on-device models with constrained capacities.
+
+To address these limitations, several approaches have been proposed. Curriculum learning (CL) [Luo et al. \(2025\)](#), for instance, attempts to align task difficulty with the model’s evolving capabilities by gradually introducing more complex samples. However, this often requires manual, heuristic-based partition of the dataset, which is not scalable. Other methods, like DAPO [Yu et al. \(2025\)](#), use dynamic sampling to filter out prompts that the model finds either too easy (perfect accuracy) or too hard (zero accuracy). Despite its effectiveness, this approach can be inefficient as it discards a significant portion of the training data. Another line of work explores off-policy or hybrid RL approaches to mitigate the instability inherent in on-policy learning [Yan et al. \(2025\)](#). These methods allow the policy model to learn from a broader distribution of responses but often require an auxiliary, resource-intensive LLM, thereby increasing training costs and complexity.
+
+In this work, drawing inspiration from imitation learning techniques like SFT, we introduce a simple yet effective solution: guiding the model with partial ground truth solution traces. By conditioning the model on these traces, we steer its output distribution closer to the correct answer, which alleviates the reward sparsity problem for difficult samples. However, a naive application of this technique risks making the training data too easy, potentially reducing learning efficiency on problems the model could have solved independently. To address this, we propose the **Guided Hybrid Policy Optimization (GHPO)**, which ingeniously combines online Reinforcement Learning (RL) and imitation learning within a unified framework. It uses a dynamic mechanism to first assess sample difficulty, then employs adaptive prompt refinement to provide varying levels of guidance. For problems the model can likely handle, GHPO primarily uses standard on-policy RL, encouraging exploration and self-discovery. But for more challenging samples, it seamlessly shifts to a form of imitation learning by offering explicit solution traces. This hybrid approach automatically balances exploration with direct guidance, preserving training efficiency for manageable tasks while effectively guiding the model through difficult ones, ultimately boosting both training stability and sample efficiency.
+
+Our key contributions are:
+
+- We identify the critical role of capacity alignment and reward sparsity problem in RLVR and propose the GHPO framework to improve training stability and efficiency.
+- We introduce a novel framework to detect sample difficulty and adaptively switch between on-policy reinforcement learning and guided imitation learning by adaptive prompt refinement.
+- We conduct extensive experiments on six mathematics benchmarks, demonstrating that GHPO outperforms state-of-the-art RL methods. Our results show consistent performance gains across different model families, validating the effectiveness and robustness of our approach.
+
+{2}------------------------------------------------
+
+## 2 PRELIMINARIES
+
+### 2.1 REINFORCEMENT LEARNING WITH VERIFIABLE REWARDS (RLVR)
+
+We begin by formally defining the problem of fine-tuning a Large Language Model (LLM) for complex reasoning tasks using RLVR. In this paradigm, an LLM, represented as a policy $\pi_\theta$ with parameters $\theta$ , is trained to generate a sequence of tokens, or trajectory, $\tau = (o_1, o_2, \dots, o_T)$ in response to an input prompt $q$ . The process of generating this trajectory is modeled as a finite-horizon, token-level Markov Decision Process (MDP) [Bellman & Kalaba \(1957\)](#).
+
+The components of this MDP are defined as follows:
+
+- **State** ( $s_t$ ): At each generation step $t$ , the state is the concatenation of the initial prompt $q$ and the sequence of tokens generated thus far: $s_t = (q, o_1, o_2, \dots, o_{t-1})$ . The initial state is $s_0 = q$ .
+- **Action** ( $a_t$ ): The action is the selection of the next token $o_t$ from the model's vocabulary $\mathcal{V}$ .
+- **Policy** ( $\pi_\theta$ ): The policy is the LLM itself, which provides a probability distribution over the vocabulary for the next action (token) given the current state: $a_t = o_t \sim \pi_\theta(\cdot | s_t)$ .
+- **Reward** ( $R$ ): RLVR employs sparse, terminal reward assigned by a verifier. A reward is assigned only at the end of a complete trajectory. A verifier determines if the final answer extracted from $\tau$ is correct, assigning a binary reward: $R = \begin{cases} 1 & \text{if the answer is correct} \\ 0 & \text{otherwise} \end{cases}$
+
+The training objective is to learn the optimal policy parameters $\theta^*$ that maximize the expected terminal reward over the distribution of prompts $\mathcal{D}$ , which is given by: $\mathcal{J}(\theta) = \mathbb{E}_{q \sim \mathcal{D}, \tau \sim \pi_\theta(\cdot | q)}[R(\tau)]$ .
+
+This objective $\mathcal{J}(\theta)$ is typically optimized using policy gradient algorithms, such as REINFORCE [Sutton et al. \(1999\)](#) or more advanced variants designed to handle the high variance and low sample efficiency inherent in this sparse-reward setting.
+
+### 2.2 GROUP RELATIVE POLICY OPTIMIZATION (GRPO)
+
+Group Relative Policy Optimization (GRPO) [Shao et al. \(2024\)](#) is a state-of-the-art RLVR algorithm that has demonstrated remarkable success in enhancing the reasoning abilities of LLMs, particularly for complex tasks like mathematics and programming [Guo et al. \(2025\)](#). Its core innovation is a novel method for advantage estimation that relies on intra-group comparison rather than absolute reward values. For a given prompt $q$ , GRPO begins by sampling a group of $G$ distinct responses $\{o_i\}_{i=1}^G$ from policy model $\pi_{\theta_{old}}$ . The advantage of each trajectory, $\hat{A}_{i,t}$ , is then calculated by normalizing its reward $R_i$ against the statistics of the entire group: $\hat{A}_{i,t} = \frac{R_i - \mu_R}{\sigma_R + \epsilon}$ , where $\mu_R = \frac{1}{G} \sum_{j=1}^G R_j$ and $\sigma_R = \sqrt{\frac{1}{G} \sum_{j=1}^G (R_j - \mu_R)^2}$ are the mean and standard deviation of rewards in the group, and $\epsilon$ is a small constant for numerical stability. A key aspect of this method is that this response-level advantage is shared across all token-generation steps within the same response $o_i$ . The policy is then updated to increase the log-probability of tokens that belong to high-advantage trajectories.
+
+### 2.3 THE CHALLENGE OF REWARD SPARSITY IN GRPO
+
+Despite its successes, GRPO is susceptible to training inefficiencies and instability, a challenge often encountered in practical reproductions. We identify a primary cause for this fragility: a fundamental misalignment between the difficulty of training data and the capability of the policy model. This misalignment manifests as severe *reward sparsity*, which poses a significant obstacle to effective reinforcement learning.
+
+This issue arises when a query $q$ is too difficult for the current policy $\pi_\theta$ . In such cases, the model is likely to generate a group of $G$ responses where all trajectories are incorrect, yielding a reward vector of all zeros (i.e., $R_i = 0$ for all $i \in \{1, \dots, G\}$ ). When all rewards in the group are zero, both the mean and standard deviation are also zero. Consequently, the advantage calculation from $\hat{A}_{i,t} = \frac{R_i - \mu_R}{\sigma_R + \epsilon}$ yields $\hat{A}_{i,t} = 0$ for all trajectories associated with that query.
+
+{3}------------------------------------------------
+
+The challenge of reward sparsity is particularly acute for capacity-constrained models, such as those designed for on-device deployment. To quantify this capacity-difficulty mismatch, we evaluated the performance of the Qwen2.5-7B-Instruct [Qwen et al. \(2025\)](#) model on the NuminaMath-1.5 [LI et al. \(2024\)](#) dataset, which comprises approximately 900,000 competition-level mathematics problems. Our analysis revealed that even the Qwen2.5-7B-Instruct model, a more capable version of its foundation model, failed to solve 52% of the problems. This significant finding indicates that a substantial portion of this dataset is far beyond the intrinsic reasoning capacity of the corresponding Qwen2.5-7B-Base model [Qwen et al. \(2025\)](#), let alone smaller LLMs with even more limited capabilities. This starkly illustrates the severity of the reward sparsity problem for on-device models. During reinforcement learning, over half of the dataset would be likely to yield zero-reward trajectories, providing no useful gradient signal and severely impeding the model’s ability to learn.
+
+## 3 THE PROPOSED FRAMEWORK
+
+### 3.1 FROM STATIC GUIDANCE TO A DYNAMIC FRAMEWORK
+
+As established, our core strategy is to integrate guidance directly into the reinforcement learning loop, conditioning the policy on partial ground-truth traces to overcome the reward sparsity detailed in Section 2.3. This approach is motivated by Assumption 1, which posits that such guidance increases the likelihood of success on difficult problems, thereby providing a valid learning signal where one would otherwise be absent. It’s worth noting that ground truth guidance, in the form of solution traces, is often available for most mathematics data. However, during the RLVR training process, this valuable solution trace information is typically overlooked.
+
+**Assumption 1** *Let $\mathcal{D}_{in}$ and $\mathcal{D}_{OOD}$ be the in-domain and out-of-distribution problem distributions, respectively. Let $\pi_{\theta_0}$ be a base policy. The OOD performance of any policy $\pi$ is measured by its expected reward $\mathcal{R}(\pi) := \mathbb{E}_{b \sim \mathcal{D}_{OOD}, \tau \sim \pi(\cdot|b)}[R(\tau)]$ on problem $b$ .*
+
+*Consider a problem $q \sim \mathcal{D}_{in}$ for which the base policy fails, i.e., its expected reward on this problem is non-positive ( $\mathbb{E}_{\tau \sim \pi_{\theta_0}(\cdot|q)}[R(\tau)] \leq 0$ ). Let $h$ be a partial ground-truth solution trace for $q$ .*
+
+*Let two policies be fine-tuned from $\pi_{\theta_0}$ by maximizing an objective $\mathcal{J}_{GRPO}$ :*
+
+- $\pi_{\theta_{q,h}}$ , using the trace: $\theta_{q,h} = \arg \max_{\theta} \mathcal{J}_{GRPO}(\theta; \{(q, h)\})$*
+- $\pi_{\theta_q}$ , without the trace: $\theta_q = \arg \max_{\theta} \mathcal{J}_{GRPO}(\theta; \{q\})$*
+
+*We assume that using the ground-truth trace for a failing problem improves OOD generalization:*
+
+$$\mathbb{E}_{b \sim \mathcal{D}_{OOD}, \tau \sim \pi_{\theta_{q,h}}(\cdot|b)}[R(\tau)] \geq \mathbb{E}_{b \sim \mathcal{D}_{OOD}, \tau \sim \pi_{\theta_q}(\cdot|b)}[R(\tau)]$$
+
+And we demonstrate the effectiveness of this Assumption 1 through comprehensive experiment detailed in Section 4. By leveraging this property, we can obtain valid learning signals even on difficult problems that would otherwise yield zero rewards and vanishing gradients. However, a naive or static application of this principle—for instance, pre-labeling a fixed set of problems as “difficult” and always applying guidance to them—is suboptimal and suffers from two critical limitations:
+
+- Manual Curation and Scalability:** A static approach involves a laborious, offline process to determine when guidance is necessary for problems. This method is not only impractical at scale but also subjective and may not align perfectly with the model’s actual knowledge gaps.
+- Evolving Model Capability:** A problem that is intractable for the policy at the beginning of training may become easy after several updates. A static guidance strategy cannot adapt to the model’s evolving capabilities. It risks “over-guiding” the model on problems it could have solved through exploration, thereby stifling the learning of reasoning paths and reducing sample efficiency.
+
+### 3.2 GUIDED HYBRID POLICY OPTIMIZATION (GHPO)
+
+In this work, we propose **Guided Hybrid Policy Optimization (GHPO)**, an automated framework designed to enhance reinforcement learning efficiency. As illustrated in Figure 2, GHPO dynamically
+
+{4}------------------------------------------------
+
+
+
+Figure 2: An illustration of the proposed GHPO framework. The diagram shows a flow from a 'Query' to a 'Policy Model' (with a flame icon). The Policy Model outputs a group of responses {o1, ..., oG}. These are processed by a 'Reference Model' (with a cross icon) and a 'Reward Model' (with a cross icon) to produce rewards {r1, r2, ..., rG}. These rewards are then analyzed by 'Group Rewards Analysis' to produce 'Non-sparse Rewards' (indicated by a green checkmark). These rewards are used for 'Group Computation' to produce a group of answers {A1, A2, ..., AG}. A 'Sparse Rewards' path (indicated by a red cross) from the rewards leads to 'Hint Extraction' (with a lightbulb icon). This Hint Extraction is combined with the 'Query' to produce a 'New Query' (indicated by a plus sign).
+
+Figure 2: An illustration of the proposed GHPO framework.
+
+assesses sample difficulty *on-the-fly* and adaptively switches between standard on-policy reinforcement learning and guided learning. This innovative approach ensures that guidance is provided only when truly necessary, preserving valuable exploration for problems within the model’s current capabilities while providing adaptive refinement for more challenging scenarios.
+
+GHPO is comprised of two core modules:
+
+- **Automated Difficulty Detection:** This module assesses the inherent difficulty of the current problem, determining the subsequent learning process.
+- **Adaptive Prompt Refinement:** Based on the detected difficulty, this module adaptively refines the prompt by incorporating different levels of ground truth guidance.
+
+For a given query $q$ and ground truth answer $a$ , GHPO first samples a group of $G$ individual responses, denoted as $\{o_i\}_{i=1}^G$ . These responses are then evaluated by a reward model to obtain their corresponding binary rewards, $\{r_i\}_{i=1}^G$ . Unlike GRPO, these group rewards are not directly used for advantage estimation. Instead, the difficulty detection module analyzes the sparsity of these group-level rewards. Based on this analysis, the corresponding prompt is refined according to a pre-specified strategy. Mathematically, GHPO optimizes the policy using the following objective:
+
+$$\mathcal{J}_{\text{GHPO}}(\theta) = \mathbb{E}_{(q,a) \sim \mathcal{D}, \{o_i\}_{i=1}^G \sim \pi_{\theta, \text{old}}(\cdot|q)} \left[ \frac{1}{G} \sum_{i=1}^G \frac{1}{|o_i|} \sum_{t=1}^{|o_i|} \left( \min \left( r_{i,t}(\theta) \hat{A}_{i,t}, \text{clip} \left( r_{i,t}(\theta), 1 - \epsilon, 1 + \epsilon \right) \hat{A}_{i,t} \right) - \beta D_{\text{KL}}(\pi_{\theta} || \pi_{\text{ref}}) \right) \right] \quad (1)$$
+
+$$\text{s.t. } r_{i,t}(\theta) = \frac{\pi_{\theta}(o_{i,t} | q^*, o_{i, 0 \\ q + \omega \cdot h_{f,q}, & \text{otherwise.} \end{cases} \quad (2)$$
+
+where $f$ assesses whether the prediction is equivalent to the ground truth, $h_{f,q}$ is the full sequence of ground-truth solution for query $q$ , and $\omega$ is the hint ratio adjusted by stages. By seamlessly integrating these two modules, our framework can efficiently switch between on-policy reinforcement learning and guided imitation learning, significantly enhancing training efficiency. We will detail these two modules further in the next section. An illustration of the prompt template in GHPO and a hint extraction example are provided in the Appendix B.1 and B.2, respectively.
+
+### 3.3 AUTOMATED DIFFICULTY DETECTION
+
+As highlighted in Assumption 1, incorporating offline ground-truth hints provides valuable learning signals even for the most challenging problems. However, a static, pre-defined strategy for identifying which problems need guidance is simply not scalable due to the limitations mentioned in Section 3.2. This method is not only impractical for large datasets but also inherently subjective, potentially missing the actual knowledge gaps of the model.
+
+To address this, we propose a *difficulty detection module* that automatically identifies problem difficulty without manual intervention. Unlike other model-based approaches that demand high-cost computations from large language models for guidance, our method leverages the accuracy reward
+
+{5}------------------------------------------------
+
+inherent in the learning process: For each query $q$ in a batch, we assess its difficulty relative to the current policy model’s capabilities ( $\pi_\theta$ ) by analyzing the group rewards $\{r_i\}_{i=1}^G$ from $G$ individual responses for the same query, as formally defined in Equation (2). If all $G$ individual rewards are zero, the current policy model failed to generate a correct reasoning path despite $G$ sampling attempts from its output distribution. These sparse rewards yield no useful gradient for policy improvement. Such a query $q$ is thus identified as *difficult* for $\pi_\theta$ , signaling the need for adaptive guidance.
+
+### 3.4 ADAPTIVE PROMPT REFINEMENT WITH MULTI-STAGE GUIDANCE
+
+The difficulty detection module identifies challenging queries where, as indicated by Assumption 1, incorporating ground-truth solution hints can provide valid learning signals. This guidance is applied by introducing a specific proportion of the ground-truth solution, quantified by the hint ratio parameter $\omega$ . However, determining an optimal constant $\omega$ is challenging and often suboptimal, particularly for reasoning tasks with varying problem distributions, as more difficult problems inherently require a larger proportion of hints. To address this and ensure consistent learning for policy improvement, we propose an *Adaptive Prompt Refinement strategy with Multi-stage Guidance*, which dynamically adjusts the hint ratio $\omega$ , with details provided in the Appendix B.3.
+
+### 3.5 COLD-START STRATEGY
+
+During the initial optimization stage, the policy model frequently struggles with adhering to specific formatting instructions, such as enclosing answers within a designated box. This often leads to a mismatch between predictions and ground-truth answers, resulting in low accuracy rewards. In such cases, the automated difficulty detection module might inaccurately classify the majority of queries as difficult, thereby introducing bias and unnecessarily consuming computational resources.
+
+To address these issues, we propose an optional *cold-start strategy*. For the first $N$ optimization steps (specifically, we set $N = 20$ in our experiments), we temporarily disable the difficulty detection mechanism and instead apply the original GRPO training process. This approach not only conserves computational resources at the outset but also allows the model to develop fundamental formatting capabilities, preventing the introduction of early bias before adaptive guidance is implemented.
+
+## 4 EXPERIMENT
+
+### 4.1 TRAINING DETAILS
+
+This study evaluates the proposed GHPO algorithm using verifiable mathematical tasks. While our method is designed for general applicability, its efficacy is demonstrated here within this domain. We constructed two training datasets of varying difficulty from the MATH Hendrycks et al. (2021b) and NuminaMath-1.5 Li et al. (2024) datasets: **Math3to5** and **NuminaMath-S**. To comprehensively evaluate GHPO, we selected two foundational large language models (LLMs), Qwen2.5-Base-7B Qwen et al. (2025) and Qwen2.5-Math-7B Yang et al. (2024), and implemented several RLVR methods, including GRPO, GRPO with curriculum learning (CL), and the proposed GHPO. Details on the dataset construction and the compared methods are provided in the Appendix C.1 and C.2.
+
+We conducted experiments using the openrl Face (2025) codebase and the TRL von Werra et al. (2020) framework. GHPO training was performed on 8 powerful GPUs, each equipped with 80GB of memory and high memory bandwidth. We evaluated performance on standard mathematical reasoning benchmarks, including: **MATH\_500** Hendrycks et al. (2021a), **OlympiadBench** He et al. (2024), **Minerva Math** Lewkowycz et al. (2022), **GPQA-Diamond** Rein et al. (2023). Additionally, we assessed performance on competition-level benchmarks such as **AMC2023** and **AIME2024** Patel et al. (2024). Implementation and evaluation details are summarized in the Appendix C.3 and C.4.
+
+### 4.2 OVERALL PERFORMANCE
+
+Our experimental evaluation demonstrates the significant effectiveness and superiority of the proposed Guided Hybrid Policy Optimization (GHPO) method compared to conventional approaches. We present our findings across datasets of varying difficulty and with different baseline models.
+
+{6}------------------------------------------------
+
+Table 1: Performance comparison of models trained on the Math dataset.
+
+| Model | AIME24 | Math-500 | OlympiadBench | AMC23 | Minerva Math | GPQA-Diamond | AVG |
+|-|-|-|-|-|-|-|-|
+| Qwen2.5-Base-7B | 0.098 | 0.694 | 0.340 | 0.400 | 0.195 | 0.217 | 0.324 |
+| Qwen2.5-Math-7B | 0.193 | 0.708 | 0.371 | 0.625 | 0.139 | 0.222 | 0.376 |
+| Qwen2.5-7B-GRPO | 0.131 | 0.752 | 0.408 | 0.475 | 0.312 | 0.308 | 0.398 |
+| Qwen2.5-7B-GHPO | 0.133 | 0.786 | 0.415 | 0.575 | 0.346 | 0.394 | 0.442 |
+
+Table 2: Performance comparison of models trained on the Mixed dataset.
+
+| Model | AIME24 | Math-500 | OlympiadBench | AMC23 | Minerva Math | GPQA-Diamond | AVG |
+|-|-|-|-|-|-|-|-|
+| Qwen2.5-Base-7B | 0.098 | 0.694 | 0.340 | 0.400 | 0.195 | 0.217 | 0.324 |
+| Qwen2.5-Math-7B | 0.193 | 0.708 | 0.371 | 0.625 | 0.139 | 0.222 | 0.376 |
+| Qwen2.5-7B-GRPO | 0.122 | 0.774 | 0.396 | 0.525 | 0.283 | 0.353 | 0.409 |
+| Qwen2.5-7B-GRPO-CL | 0.112 | 0.774 | 0.395 | 0.550 | 0.335 | 0.323 | 0.415 |
+| Qwen2.5-7B-GRPO-CL-H(0.5) | 0.152 | 0.774 | 0.389 | 0.550 | 0.331 | 0.338 | 0.422 |
+| Qwen2.5-7B-GHPO (Ours) | 0.163 | 0.776 | 0.389 | 0.575 | 0.342 | 0.404 | 0.442 |
+| Qwen2.5-Math-7B-GRPO | 0.2698 | 0.81 | 0.4481 | 0.625 | 0.3456 | 0.3384 | 0.4728 |
+| Qwen2.5-Math-7B-GHPO (Ours) | 0.3198 | 0.822 | 0.4525 | 0.7 | 0.3824 | 0.3687 | 0.5076 |
+
+- Performance on Medium-Difficulty Tasks:** We first conducted preliminary experiments to evaluate GHPO’s performance on the `math3to5` training dataset. As detailed in Table 1, our proposed GHPO achieves an average accuracy improvement of **4.4%** over GRPO. This enhancement is primarily attributed to GHPO’s ability to mitigate reward sparsity. The model trained using GHPO-based reinforcement learning consistently exhibits superior reasoning capabilities, achieving higher accuracy across all six evaluated benchmarks. Notably, for AMC2023 and GPQA-Diamond, GHPO yields more than **8%** improvement in accuracy compared to GRPO.
+- Performance on Challenging Tasks:** To further assess GHPO’s robustness, we trained the Qwen2.5-7B base model using the more challenging NuminaMath-S dataset. In addition to the original GRPO, we introduced a curriculum learning baseline (Qwen2.5-7B-GRPO-CL), which manually partitions the training dataset by difficulty. As presented in Table 2, the Qwen2.5-7B-GHPO model consistently achieves superior performance over both Qwen2.5-7B-GRPO and Qwen2.5-7B-GRPO-CL. Specifically, GHPO demonstrates accuracy improvements across five of the six benchmarks when compared to both standard GRPO and GRPO with curriculum learning. This strongly indicates that reward sparsity significantly impedes effective learning, particularly for problems that lie beyond the model’s current capabilities. For instance, in the highly challenging AIME2024 problems, where reward sparsity is pronounced due to the model’s frequent inability to generate correct reasoning responses, our GHPO method achieves a substantial accuracy improvement ( $0.122 \rightarrow 0.163$ ) over the original GRPO, despite using the identical training dataset.
+- Impact on curriculum learning with Fixed Hints:** While curriculum learning partially addresses the mismatch between model capability and problem difficulty, leading to an average accuracy improvement, it consistently falls short of our GHPO method. For a comprehensive comparison, we also investigated a scenario incorporating fixed hints. The Qwen2.5-7B-GHPO-CL-H0.5 model, which integrates a fixed 50% proportion of ground-truth solution traces into difficult problems combined with curriculum learning, shows an improvement over standard curriculum learning ( $0.415 \rightarrow 0.422$ ) as shown in Table 2. However, its effectiveness remains lower than that of our proposed GHPO method ( $0.442$ ).
+
+### 4.3 GENERALIZATION TO OTHER MODELS
+
+To further demonstrate the generalizability and robustness of our approach, we evaluated GHPO’s effectiveness using a more capable base model: the Qwen2.5-Math-7B. This model, specifically designed and pre-trained for mathematical reasoning, offers a stronger foundation than the general-purpose Qwen2.5-Base-7B used in previous experiments.
+
+As illustrated in Table 2, our proposed GHPO consistently produces a more powerful reasoning model, resulting in Qwen2.5-Math-7B-GHPO, when compared to the original GRPO method applied to the
+
+{7}------------------------------------------------
+
+same base model, Qwen2.5-Math-7B-GRPO. This sustained performance improvement with a more capable backbone affirms GHPO’s benefits across different foundational model strengths and suggests its applicability beyond general-purpose LLMs, extending to specialized domains. This indicates that GHPO’s adaptive guidance mechanism effectively complements even advanced pre-training, enabling more efficient and effective fine-tuning for complex reasoning tasks.
+
+### 4.4 TRAINING DYNAMICS
+
+Understanding the behavior of our proposed GHPO framework during training is crucial to appreciating its advantages. Figure 3 illustrates the persistent challenge of reward sparsity: it shows the proportion of problems within a mini-batch that required the addition of hints to mitigate this issue. We observed that, during the initial training steps, a significant majority of problems proved too challenging for the current LLM to generate correct reasoning responses. This initial difficulty highlights the nascent capabilities of the model. Furthermore, this trend did not diminish rapidly; approximately 60% of problems continued to exceed the model’s current capabilities even in subsequent training stages, underscoring the pervasive nature of the reward sparsity problem throughout the reinforcement learning (RL) process.
+
+
+
+Figure 3: A line graph showing the proportion of detected difficult problems over training global steps. The y-axis is 'Proportion of Detected Difficult Problems' ranging from 0.0 to 1.0. The x-axis is 'Training Global Steps' ranging from 0 to 160. The graph shows a highly volatile purple line fluctuating between approximately 0.2 and 0.9, indicating persistent difficulty in the reward sparsity problem.
+
+Figure 3: The proportion of problems detected to be difficult within a mini-batch.
+
+To gain a deeper understanding of the distinct operational behaviors of GRPO and GHPO during training, we meticulously examined four representative metrics: format reward, accuracy reward, mean response length, and gradient norm. These dynamics are comprehensively depicted in Figure 4:
+
+
+
+Figure 4: Four line graphs comparing GRPO (orange) and GHPO (green) training dynamics. (a) Format reward: Both reach near-maximal performance quickly. (b) Accuracy reward: GHPO shows a clear advantage. (c) Mean response length: GHPO generates longer responses. (d) Gradient norm: GHPO has smaller, more stable gradient norms.
+
+Figure 4: The metric curves of format reward, accuracy reward, mean response length, and gradient norm of GRPO and GHPO, which show the comparison of their RL training dynamics and serve as essential monitoring indicators.
+
+- **Format Reward:** Both algorithms achieved comparable, near-maximal performance in terms of format reward early in training and sustained this high level throughout. This indicates that both methods are equally effective at enforcing desired structural constraints in the generated responses, such as adhering to specific answer formats.
+- **Accuracy Reward:** Conversely, GHPO consistently exhibited a clear and substantial advantage in accuracy reward across all training stages. This direct superiority reflects GHPO’s enhanced effectiveness in improving task-specific correctness, primarily attributable to its adaptive guidance mechanism which targets model knowledge gaps.
+- **Mean Response Length:** Both methods demonstrated a steady increase in mean response length over time, which typically reflects the model’s evolving ability to generate longer and potentially more sophisticated reasoning paths as training progresses. Notably, in later stages, GHPO generated significantly longer responses than GRPO. This observation suggests GHPO’s enhanced capacity to construct more detailed and elaborate reasoning processes, possibly due to its exposure to partial ground-truth solutions that guide the expansion of logical steps.
+- **Gradient Norm:** Finally, the gradient norm curves reveal that GHPO consistently maintained significantly smaller gradient magnitudes compared to GRPO. This is a critical indicator of a smoother and more stable optimization process for GHPO. Large gradient norms can signify
+
+{8}------------------------------------------------
+
+instability or oscillations in training, whereas GHPO’s smaller norms suggest more controlled and efficient policy updates.
+
+Collectively, these comprehensive observations demonstrate that GHPO not only yields superior task performance and promotes more detailed reasoning but also fosters a more stable and controlled optimization trajectory for policy updates throughout the training process.
+
+## 5 RELATED WORK
+
+Recent advances have demonstrated the remarkable success of reinforcement learning (RL) in enhancing the reasoning abilities of large language models (LLMs). A significant recent development is DeepSeek-R1 [Guo et al. \(2025\)](#), which introduced a pure reinforcement learning paradigm referred to as *zero RL training*. This approach utilizes a simple yet effective rule-based reward model for direct training from a base LLM. Building upon this foundation, subsequent efforts have progressively advanced this *zero RL training* methodology through reproduction, refinement, and further development. For instance, SimpleRL-Zoo [Zeng et al.](#) conducted a comprehensive empirical study to investigate zero RL training across diverse base models and sizes, aiming to elucidate its behavioral patterns and provide insights for future improvements.
+
+Several variants have advanced *zero RL training* by refining core mechanisms or introducing novel designs to enhance performance and stability. DAPO [Yu et al. \(2025\)](#) analyzed the core mechanism behind zero RL training from the perspective of the policy optimization objective and introduced four key techniques to improve training efficiency, stability, and long CoT generation. Similarly, Dr. GRPO [Liu et al. \(2025\)](#) presented an unbiased optimization approach by removing length and standard deviation penalty terms from the original GRPO, enhancing token efficiency without sacrificing reasoning performance. As empirically demonstrated in [Zeng et al.](#), different base models exhibit distinct performance levels and behavioral patterns during RL training, since RL amplifies pre-existing sampling behaviors towards positive paths rather than fundamentally introducing novel capacities. To extend reasoning beyond intrinsic model limits, LUFFY [Yan et al. \(2025\)](#) balances imitation and exploration by augmenting on-policy zero RL training with off-policy reasoning demonstrations, incorporated as combined rollouts during training. In contrast to these value-model-free methods, VAPO [Yue et al. \(2025\)](#) introduced the first value-model-based RL training framework built upon PPO, integrating seven innovative techniques to enhance training stability and overall performance.
+
+While these advancements have significantly propelled RL-based LLM training, a persistent challenge is the reward sparsity problem, especially in complex reasoning tasks where correct solutions are rare. To address this, various approaches have been proposed. Curriculum learning [Luo et al. \(2025\)](#), for instance, attempts to align task difficulty with the model’s evolving capabilities by gradually introducing more complex samples. Other methods, such as DAPO [Yu et al. \(2025\)](#), utilize dynamic sampling to filter out prompts that the model finds either too easy or too hard. While effective in some contexts, this filtering approach can be inefficient, leading to the discarding of a significant portion of the valuable training data. Our proposed GHPO method directly confronts the reward sparsity issue by making full use of all training data through its adaptive difficulty detection and prompt refinement mechanisms, offering a more data-efficient and robust solution.
+
+## 6 CONCLUSION
+
+In this paper, we tackled the significant challenges of training instability and inefficiency in Reinforcement Learning with Verifiable Rewards (RLVR) for Large Language Models (LLMs). These issues primarily stem from a capacity-difficulty mismatch, which leads to sparse reward signals. To overcome this, we propose Guided Hybrid Policy Optimization (GHPO), a novel difficulty-aware RL framework. GHPO dynamically calibrates task difficulty through adaptive prompt refinement, balancing imitation learning for challenging problems with exploration-based RL for more manageable ones. Our extensive experiments show GHPO’s significant superiority, achieving an average performance gain of approximately 5% across six challenging mathematics benchmarks. Furthermore, GHPO effectively enhances training stability. This framework offers a robust, scalable, and data-efficient solution for developing powerful reasoning LLMs by intelligently adapting the learning process to the model’s evolving capabilities, leading to more stable and effective RL fine-tuning.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- Richard Bellman and Robert Kalaba. Dynamic programming and statistical communication theory. *Proceedings of the National Academy of Sciences of the United States of America*, 43(8):749–751, 1957. ISSN 00278424, 10916490. URL .
+- Tianzhe Chu, Yuexiang Zhai, Jihan Yang, Shengbang Tong, Saining Xie, Dale Schuurmans, Quoc V. Le, Sergey Levine, and Yi Ma. Sft memorizes, rl generalizes: A comparative study of foundation model post-training, 2025. URL .
+- Hugging Face. Open r1: A fully open reproduction of deepseek-r1, January 2025. URL .
+- Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. *arXiv preprint arXiv:2501.12948*, 2025.
+- Nathan Habib, Clémentine Fourrier, Hynek Kydlíček, Thomas Wolf, and Lewis Tunstall. Lighteval: A lightweight framework for llm evaluation, 2023. URL .
+- Chaoqun He, Renjie Luo, Yuzhuo Bai, Shengding Hu, Zhen Leng Thai, Junhao Shen, Jinyi Hu, Xu Han, Yujie Huang, Yuxiang Zhang, Jie Liu, Lei Qi, Zhiyuan Liu, and Maosong Sun. Olympiad-bench: A challenging benchmark for promoting agi with olympiad-level bilingual multimodal scientific problems, 2024. URL .
+- Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the math dataset, 2021a. URL .
+- Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the math dataset. *NeurIPS*, 2021b.
+- Aitor Lewkowycz, Anders Andreassen, David Dohan, Ethan Dyer, Henryk Michalewski, Vinay Ramasesh, Ambrose Slone, Cem Anil, Imanol Schlag, Theo Gutman-Solo, Yuhuai Wu, Behnam Neyshabur, Guy Gur-Ari, and Vedant Misra. Solving quantitative reasoning problems with language models, 2022. URL .
+- Jia LI, Edward Beeching, Lewis Tunstall, Ben Lipkin, Roman Soletskiy, Shengyi Costa Huang, Kashif Rasul, Longhui Yu, Albert Jiang, Zijun Shen, Zihan Qin, Bin Dong, Li Zhou, Yann Fleureau, Guillaume Lampe, and Stanislas Polu. Numinamath. [] ([https://github.com/project-numina/aimo-progress-prize/blob/main/report/numina\\_dataset.pdf](https://github.com/project-numina/aimo-progress-prize/blob/main/report/numina_dataset.pdf)), 2024.
+- Zichen Liu, Changyu Chen, Wenjun Li, Penghui Qi, Tianyu Pang, Chao Du, Wee Sun Lee, and Min Lin. Understanding r1-zero-like training: A critical perspective. *arXiv preprint arXiv:2503.20783*, 2025.
+- Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. *arXiv preprint arXiv:1711.05101*, 2017.
+- Michael Luo, Sijun Tan, Justin Wong, Xiaoxiang Shi, William Y. Tang, Manan Roongta, Colin Cai, Jeffrey Luo, Li Erran Li, Raluca Ada Popa, and Ion Stoica. Deepscaler: Surpassing o1-preview with a 1.5b model by scaling rl, 2025. Notion Blog.
+- OpenAI. OpenAI o3 and o4-mini system card. , 2025.
+- Bhrij Patel, Souradip Chakraborty, Wesley A. Suttle, Mengdi Wang, Amrit Singh Bedi, and Dinesh Manocha. Aime: Ai system optimization via multiple llm evaluators, 2024. URL .
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/6Y9NP1qhoM.txt b/papers/6Y9NP1qhoM.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ca179e2e4364de93ebc713f00e077edd2f9d99ec
--- /dev/null
+++ b/papers/6Y9NP1qhoM.txt
@@ -0,0 +1,348 @@
+
+
+{0}------------------------------------------------
+
+# GOAL-AWARE IDENTIFICATION AND RECTIFICATION OF MISINFORMATION IN MULTI-AGENT SYSTEMS
+
+Zherui Li1 Yan Mi1 Zhenhong Zhou2 Houcheng Jiang3 Guibin Zhang4
+Kun Wang2\* Junfeng Fang4\*
+
+1Beijing University of Posts and Telecommunications 2Nanyang Technological University
+
+3University of Science and Technology of China 4National University of Singapore
+
+## ABSTRACT
+
+Large Language Model-based Multi-Agent Systems (MASs) have demonstrated strong advantages in addressing complex real-world tasks. However, due to the introduction of additional attack surfaces, MASs are particularly vulnerable to misinformation injection. To facilitate a deeper understanding of misinformation propagation dynamics within these systems, we introduce MISINFOTASK, a novel dataset featuring complex, realistic tasks designed to evaluate MAS robustness against such threats. Building upon this, we propose ARGUS, a two-stage, training-free defense framework leveraging goal-aware reasoning for precise misinformation rectification within information flows. Our experiments demonstrate that in challenging misinformation scenarios, ARGUS exhibits significant efficacy across various injection attacks, achieving an average reduction in misinformation toxicity of approximately 28.17% and improving task success rates under attack by approximately 10.33%. Our code and dataset are available at: .
+
+## 1 INTRODUCTION
+
+Large Language Model (LLM)-based agents (Xi et al., 2023; Wang et al., 2024), integrating the decision-making capabilities of core LLMs with memory (Zhang et al., 2024d), tool calling (Qu et al., 2025), prompt engineering strategies (Sahoo et al., 2025), and appropriate information control flows (Li, 2024), have demonstrated considerable potential in tackling real-world problems. Multi-Agent Systems (MASs) further amplify this capability by harnessing the collective intelligence of multiple agents (Guo et al., 2024; Wang et al., 2025a), exhibiting significant advantages in addressing challenging tasks (Wu et al., 2023; Hong et al., 2024). However, the progression of MAS towards widespread adoption has concurrently exposed their inherent vulnerabilities (Yu et al., 2025; Wang et al., 2025a). Their complex topologies and interactive communication links introduce new attack surfaces (Yu et al., 2024), making these systems highly susceptible to internal information biases and external manipulation. Internal risks primarily manifest as spontaneous hallucinations (Huang et al., 2025a). External risks present greater complexity; beyond overtly malicious content, a more insidious and pervasive threat has emerged: misinformation injection (Lee & Tiwari, 2024; Liu et al., 2024a), which poses a great impediment to the development of trustworthy MASs.
+
+Among external threats, misinformation denotes statements that appear semantically benign on the surface yet are factually incorrect (Chen & Shu, 2023; 2024); this distinguishes it from malicious information characterized by its overtly malicious intent. As illustrated in Figure 1, the latter’s characteristic enables it to readily circumvent conventional detection mechanisms, endowing it with a high degree of covertness different from overtly malicious content (Chen & Shu, 2024). More critically, its potential for harm is substantial. During the collaborative execution of complex tasks by MAS, even seemingly trivial instances of malicious or misinformation can be amplified, ultimately leading to the collapse of the entire task chain (Pastor-Galindo et al., 2024). Currently, such covert and harmful information can be injected into MAS through critical components such as agent prompts (Lee & Tiwari, 2024; Greshake et al., 2023), memory (Zou et al., 2024; Chen et al., 2024), and tools (Zhan et al., 2024), thereby creating opportunities for its propagation.
+
+\*Corresponding author: wang.kun@ntu.edu.sg, fangjf1997@gmail.com.
+
+{1}------------------------------------------------
+
+To identify and counter information injection attacks in MAS, prior works have explored various approaches, including adversarial defense through attack-defense confrontation (Zeng et al., 2024; Lin et al., 2025), consensus-based mechanisms leveraging collective consistency assessments (Chern et al., 2024), and structural defense focusing on MAS topological graph structures (Wang et al., 2025b). Despite their significant contributions to resisting information injection in MAS, most of these methods (I) have not focused their defensive strategies on covert yet dangerous misinformation, and (II) have selected evaluation tasks of insufficient complexity, failing to adequately reflect MAS capabilities in handling real-world complex tasks. Consequently, this highlights an urgent need to develop a more application-oriented, agent-centric misinformation injection evaluation and to design robust, adaptive, and efficient defense frameworks.
+
+To conduct an in-depth investigation into the propagation patterns of misinformation in MAS, we introduce **MISINFOTASK**, a re-teaming dataset specifically designed for MAS misinformation injection testing. For each task sample, we provide potential misinformation injection scenarios accompanied by supporting or refuting argument sets. Furthermore, to mitigate the challenge posed by the highly covert nature of misinformation, we propose **ARGUS** (Adaptive Reasoning and Goal-aware Unified Shield), an adaptive and unified defense framework engineered to defend against a diverse range of information injection attacks. ARGUS operates through two core phases: Adaptive Localization and Goal-aware Persuasive Rectification. ARGUS analyzes the MAS from a spatial perspective, conducting a holistic assessment of communication channels by considering their topological importance and content-level semantic relevance to potential misinformation targets. During the Persuasive Rectification phase, ARGUS operates along the temporal dimension of MAS, leveraging agents’ inherent Chain-of-Thought (Wei et al., 2023) reasoning capabilities to detect and rectify potential misinformation within information flows.
+
+We systematically evaluate the robustness of MAS against misinformation using various attack methods on MISINFOTASK, and assess the defensive performance of ARGUS across different core LLMs and interaction rounds. Experimental results indicate that generic MAS architectures exhibit significant vulnerability to misinformation injection; they can easily be induced to task failure by carefully crafted misinformation, resulting in an average reduction of 20.04% in task success rates. In response to this challenge, our ARGUS framework demonstrates robust defensive capabilities, reducing misinformation toxicity by approximately 38.24% across various core LLMs and improving the task success rate of attacked MAS by approximately 10.33%. We believe this research can inspire the MAS community to advance towards more trustworthy Multi-Agent Systems.
+
+## 2 PRELIMINARY
+
+### 2.1 MULTI-AGENT SYSTEM AS GRAPH
+
+Inspired by prior work that models MAS as topological graphs to analyze them through the perspective of graph theory and information propagation (Wu et al., 2023; Liu et al., 2024b; Zhuge et al., 2024), we adopt a similar graph-based representation. We define an MAS as a directed graph $G = (\mathcal{A}, \mathcal{E})$ . Here, $\mathcal{A} = \{a_i\}_{i=1}^N$ represents the set of all $N$ agents, which serve as the nodes in the graph. The set of edges $\mathcal{E} = \{e_{ij} \mid a_i, a_j \in \mathcal{A}, i \neq j\}$ denotes the communication channels between agents, where an edge $e_{ij}$ signifies a directed communication channel from agent $a_i$ to agent $a_j$ .
+
+### 2.2 INFORMATION FLOW IN MAS
+
+**Intra-agent Level.** Each agent $a_i \in \mathcal{A}$ is conceptualized as an ensemble comprising a central LLM $\mathcal{M}_i$ , a memory module $\text{Mem}_i$ , a set of available tools $\mathcal{T}_i$ , and its prompt engineering strategy $\mathcal{P}_i$
+
+
+
+Figure 1: Overview of the ARGUS framework. The left panel contrasts 'Malicious Information' (Semantic: Harmful, Offensive) and 'Misinformation' (Semantic: Harmless, Misleading) injection scenarios. The right panel visualizes the ARGUS defense pipeline, showing 'Multi-Round Training-Free' goal-aware reasoning and 'Adaptive Localization' to achieve 'Task Success'.
+
+Figure 1: Overview of the ARGUS framework guarding against misinformation. The left panel contrasts the attributes of malicious information versus misinformation. The right panel visualizes the defense pipeline.
+
+{2}------------------------------------------------
+
+(Xi et al., 2023; Wang et al., 2024). In its fundamental operation, $a_i$ utilizes $\mathcal{M}_i$ to process an input prompt, potentially augmented with information from $\text{Mem}_i$ , to generate an output, such as calling a tool from $\mathcal{T}_i$ . Advanced agent architectures, like Chain-of-Thought (CoT) (Wei et al., 2023) and ReAct (Yao et al., 2023), enhance the internal decision-making processes by incorporating step-by-step reasoning and environment interaction capabilities (Zhang et al., 2025a; 2024c).
+
+**Inter-agent Level.** Inter-agent interactions within the MAS are governed by the topological graph $G = (\mathcal{A}, \mathcal{E})$ detailed in Section 2.1, with information propagating along communication channels (Zhuge et al., 2024; Zhang et al., 2025b). At each time step $t$ , an agent $a_i \in \mathcal{A}$ may autonomously decide to transmit a message $m_{e_{ij}}(t)$ to an adjacent agent $a_j \in N_{out}(a_i)$ . Here, $N_{out}(a_i)$ denotes the set of agents reachable from $a_i$ via an edge, and $e_{ij}$ represents the specific communication channel from $a_i$ to $a_j$ . Such messages $m_{e_{ij}}(t)$ are received by $a_j$ as external input $u_j(t)$ , influencing its subsequent observations $o_j(t)$ and belief state $s_j(t)$ within its decision-making process.
+
+### 2.3 MISINFORMATION IN THE SYSTEM
+
+Misinformation is generally understood as information that is erroneous or factually incorrect (Pastor-Galindo et al., 2024). Within the context of this paper, we specifically define misinformation as content that contradicts the factual knowledge implicitly stored in the parameters of an LLM, particularly one that has undergone alignment. Unlike overtly malicious or jailbreak content typically addressed in safety research, the core objective of misinformation investigated in this work is to subtly misguide the MAS (Chen & Shu, 2024). This misguidance can cause the system to deviate from its operational trajectory, ultimately leading to behaviors that are orthogonal to human expectations, thereby inducing erroneous decision-making and potentially culminating in task failure.
+
+## 3 EVALUATING MISINFORMATION INJECTION
+
+### 3.1 MISINFOTASK DATASET
+
+Extensive research has explored information injection attacks (Ju et al., 2024; Liu et al., 2025; He et al., 2025) and defenses (Mao et al., 2025; Zhong et al., 2025; Wang et al., 2025b) in MAS, many of which have demonstrated notable success. However, our review of the existing literature reveals that the majority of studies on MAS information injection predominantly focus on overtly malicious or jailbreak inputs. While a subset of research does address the propagation of misinformation (Ju et al., 2024; Wang et al., 2025b), the datasets employed in these experimental evaluations often lack specific relevance to this particular challenge. Specifically, we identify two critical gaps: (1) there is a scarcity of datasets expressly designed for studying misinformation injection and defenses within MAS; and (2) existing research frequently utilizes datasets composed of simplistic question-answering tasks with straightforward procedures.
+
+To fill the gap in the domain of misinformation injection and defense, we introduce MISINFOTASK, a multi-topic, task-driven dataset designed for red teaming misinformation in MAS. MISINFOTASK comprises 108 realistic tasks suitable for MAS to solve, and provides potential misinformation injection points and reference solution workflows. Crucially, to facilitate adversarial red teaming research, we have developed 4-8 plausible yet fallacious arguments corresponding to potential misinformation for each task, along with their respective ground truths.
+
+**Dataset Construction.** To ensure the quality of our synthesized data, we employed a rigorous construction methodology. We first authored a small set of high-quality seed examples. These examples were then used to guide the sampling process with the detailed prompt provided in Appendix G. The resulting data was subsequently manually filtered and curated based on the following criteria:
+
+- Ensure the generated data entries align with concrete, real-world task scenarios.
+- Guarantee the misinformation constitutes a factual error highly pertinent to the defined task.
+- Ensure comprehensive coverage of the following categories: Conceptual Reasoning, Factual Verification, Procedural Application, Formal Language Interpretation, and Logic Analysis.
+
+### 3.2 SETUP
+
+In this section, we introduce our MAS platform, baseline attack methods, and evaluation metrics.
+
+{3}------------------------------------------------
+
+**MAS Platform.** We construct an MAS to serve as the experimental testbed. Specifically, a planning agent acts as the initial interface for user queries and undertakes responsibilities such as task decomposition and work allocation (Li et al., 2023; Wu et al., 2023). Subsequently, information flows into the main MAS topological graph, and the task is completed through multiple rounds of interaction among multiple agents. All agents will autonomously select their communication partners and determine the content of their messages. Finally, a conclusion agent analyzes dialogues and actions within the MAS to synthesize a final result and provide an explanation for the user, acting as the system’s output interface.
+
+**Baseline Attacks.** We employ three baseline information injection methods: Prompt Injection (PI) (Greshake et al., 2023; Lee & Tiwari, 2024), RAG Poisoning (RP) (Zou et al., 2024), and Tool Injection (TI) (Zhan et al., 2024; Ruan et al., 2024). For Prompt Injection and Tool Injection, we designate one agent within the MAS to synthesize a final result and provide an explanation for the user, acting as the system’s output interface. Misinformation arguments are then injected into its system prompt or tool module. For RAG Poisoning, the arguments are injected directly into the MAS’s shared public vector database, which serves as a common knowledge source for agents.
+
+**Evaluation Metrics.** To assess the impact of misinformation, we define two core metrics: *Misinformation Toxicity (MT)* and *Task Success Rate (TSR)*. These metrics aim to quantify the extent of misinformation assimilation and its effect on overall task performance, respectively. The specific evaluation methods are as follows:
+
+$$MT = \frac{1}{N} \sum_{k=1}^N \text{Score}(O_k, g_{mis}^k), \quad TSR = \frac{1}{N} \sum_{k=1}^N \mathbb{I}(\text{Score}(O_k, g_{task}^k) \geq \theta_m), \quad (1)$$
+
+where $N$ represents the total number of evaluated task instances. For the $k$ -th task instance, $O_k$ is the final output generated by the conclusion agent, $g_{mis}^k$ denotes the misinformation’s intent-driven goal, and $g_{task}^k$ signifies the reference solution for the task. The $\text{Score}(\cdot, \cdot)$ function, evaluated by an LLM judge, measures the semantic consistency between two inputs, yielding a score within the range of $[0, 10]$ . The term $\theta_m$ is a predefined threshold. Finally, $\mathbb{I}(\cdot)$ is the indicator function, returning 1 if the specified condition is met and 0 otherwise.
+
+### 3.3 MISINFORMATION ROBUSTNESS IN MAS
+
+**Threat Model.** We define the assumed attacker broadly as any entity seeking to disrupt the functionality of MAS. The attacker compromises a single agent within the MAS, gaining the ability to individually manipulate its prompt, tool, or RAG memory. These three manipulation vectors correspond respectively to the three attack methodologies detailed in Section 3.2.
+
+Utilizing MISINFOTASK dataset, we conduct red team testing on the MAS employing the three injection methods detailed in Section 3.2, with the aim of assessing the MAS’s robustness against externally introduced misinformation. Our experimental procedure involves the planning agent determining the MAS’s topological structure before task execution. Misinformation is subsequently injected at the initial round of the operational sequence. Details are provided in Appendix B.
+
+As shown in Figure 2, the injection of misinformation severely compromises the belief states in the MAS. Across all tested injection methods, the MT metric for the MAS rises from a baseline of 1.28 in the vanilla configuration to approximately 4.71. Concurrently, the TSR declines significantly from an initial value of 87.47% to 67.70%. These results demonstrate the vulnerability of generic MAS architectures to misinformation.
+
+
+
+Figure 2: A scatter plot showing the relationship between Misinformation Toxicity (MT) on the x-axis and Task Success Rate (TSR) on the y-axis. The x-axis ranges from 0 to 6.0, and the y-axis ranges from 0.5 to 1.0. A dashed vertical line at MT ≈ 1.28 and a dashed horizontal line at TSR ≈ 0.8747 represent the baseline. A red box labeled 'MT ↑' and a green box labeled 'TSR ↓' indicate the direction of change. Four clusters of data points are shown: 'Vanilla (w/o Attack)' (green circles, top-left), 'Tool Injection' (orange circles), 'RAG Poisoning' (blue circles), and 'Prompt Injection' (red circles). Arrows point from the baseline towards these clusters, indicating a decrease in TSR and an increase in MT for all attack methods. The legend shows icons for each method: Vanilla (w/o Attack) has a shield icon, Tool Injection has a gear icon, RAG Poisoning has a database icon, and Prompt Injection has a speech bubble icon.
+
+Figure 2: Changes in MAS’s MT and TSR metrics, under 3 misinformation injection methods. For each method and each core LLM evaluated, data points represent the outcomes from three independent experimental trials.
+
+{4}------------------------------------------------
+
+
+
+Figure 3: Overall pipeline of ARGUS framework. The diagram is divided into three main sections. (i) MisInfoTask Dataset: Shows 'User Input' (Develop a strategic plan to integrate renewable energy sources into the national grid...), 'Misinformation Goal' (wind energy systems require significantly more land use compared to all other renewable sources, which takes them largely inaccessible from large-scale grid integration), 'Misinformation Arguments' (a popular environmental blog states that wind farms take up vast amounts of land compared to solar panels...), and 'Ground Truth' (studies demonstrate that wind farms typically occupy less continuous land compared to solar farms when considering power output). (ii) Baseline Attacks: Illustrates 'Prompt Injection' (Initial prompt, Refusal argument), 'RAG Poisoning' (Knowledge 1 to Knowledge N, Misinformation injected), and 'Tool Injection' (Simulation tool, Tool-calling prompt, Mislaid tool, Refusal argument). (iii) Central ARGUS defense workflow: Shows a graph of agents with a 'Mislaid Agent', a 'Message' box with 'Sentence 1' to 'Sentence N', 'Persuasive correction based on Cor', and 'CoT Detection' (Infer Misinfo goal of g\_mis1, ..., g\_misN). Below this are three boxes: 'Topology Importance' (Score\_topo(e) = G2(e) / N\_norm), 'Channel frequency' (Score\_freq(e) = count(m\_r(e))), and 'Information relevance' (Score\_inf = max(Re(m, V\_mis))).
+
+Figure 3: Overall pipeline of ARGUS framework. (i) The ARGUS dataset presented on the left; (ii) baseline misinformation injection methods showcased on the right; (iii) the central ARGUS defense workflow, which integrates its Adaptive Localization and multi-round rectification stages.
+
+## 4 ARGUS FRAMEWORK
+
+To mitigate the vulnerability of MAS to misinformation, we introduce ARGUS, a modular and training-free framework designed to offer a unified shield against diverse misinformation threats. The core principle of ARGUS involves a two-stage approach: (1) the adaptive mechanism for identifying critical misinformation propagation channels in the MAS (Section 4.1); (2) the deployment of a corrective agent $a_{cor}$ and its goal-aware persuasive rectification (Section 4.2). Figure 3 illustrates the overall pipeline of ARGUS framework.
+
+### 4.1 CRITICAL FLOW LOCALIZATION IN GRAPHS
+
+We formally define the misinformation channel localization problem as follows: Given the complete dialogue logs of the MAS from round $r$ , the objective is to identify a subset of edges $\mathcal{E}_r \subseteq \mathcal{E}$ such that for every $e_{ij} \in \mathcal{E}_r$ , the message $m_{e_{ij}}$ transmitted over this edge belongs to $M'$ , where $M'$ is the set of all messages contaminated by misinformation.
+
+#### 4.1.1 INITIAL LOCALIZATION
+
+Before the initial round of the MAS (i.e., at $r=1$ ), we utilize the topological structure of the graph $G=(\mathcal{A}, \mathcal{E})$ to determine the initial deployment strategy for the corrective agent $a_{cor}$ . In the absence of dynamic interaction logs at this stage, our objective is to identify edges that are central to information flow. To this end, we compute a normalized Edge Betweenness Centrality score for each edge $e \in \mathcal{E}$ as its topological importance $Score_{topo}(e)$ :
+
+$$Score_{topo}(e) = \frac{1}{N_{norm}} \sum_{a_i \in \mathcal{A}} \sum_{a_j \in \mathcal{A}, i \neq j} \frac{\sigma_{ij}(e)}{\sigma_{ij}}, \quad (2)$$
+
+where $\sigma_{ij}$ denotes the total number of shortest paths between $a_i$ and $a_j$ , $\sigma_{ij}(e)$ is the count of such shortest paths that pass through edge $e$ , and $N_{norm}$ is a normalization factor.
+
+In selecting the initial edge set $\mathcal{E}_1$ for deploying the corrective agent $a_{cor}$ , we aim to balance the topological importance of individual directed edges with the comprehensive coverage of their source nodes. For each source node $a_i \in \mathcal{A}$ , we identified its highest-scoring outgoing edge $e_i^*$ :
+
+$$e_i^* = \arg \max_{e_i \in \mathcal{E}} \{Score_{topo}(e_i)\}, \quad (3)$$
+
+with selected edges collectively forming the set $\mathcal{E}_{best} = \{e_i^* \mid a_i \in \mathcal{A}\}$ . To select $k$ edges for initial monitoring and corrective action deployment at round $r=1$ , the initial monitored edge set $\mathcal{E}_1$ is constructed as follows. First, we determine $k_1 = \min(k, |\mathcal{E}_{best}|)$ , where $\mathcal{E}_{best}$ is the set of highest-scoring outgoing edges previously identified for each agent. Then we set $k_2 = k - k_1$ . The set $\mathcal{E}_1$ is
+
+{5}------------------------------------------------
+
+then formed by the union of two subsets:
+
+$$\mathcal{E}_1 = \text{Top}_{k_1}(\mathcal{E}_{best}, \text{Score}_{topo}) \cup \text{Top}_{k_2}(\mathcal{E} \setminus \mathcal{E}_{best}, \text{Score}_{topo}), \quad (4)$$
+
+where $\text{Top}_k(\mathcal{E}, \text{Score})$ selects top- $k$ highest-ranked elements from set $\mathcal{E}$ , with ranking set $\mathcal{E}$ in descending order according to the $\text{Score}$ function. This approach is designed to ensure that $a_{cor}$ can monitor critical edges while overseeing a broad range of agents. The complete set of topological scores $\text{Score}_{topo}(e_{ij}), e_{ij} \in \mathcal{E}$ is preserved for utilization in subsequent Adaptive Re-Localization.
+
+#### 4.1.2 ADAPTIVE RE-LOCALIZATION
+
+For subsequent rounds of the MAS (i.e., for $r > 1$ ), the deployment positions of the corrective agent $a_{cor}$ are dynamically adapted. In this phase, the adaptive localization aims to identify top- $k$ channels where the transmitted messages exhibit the highest semantic similarity to the inferred intent-driven goal of the misinformation.
+
+Specifically, during round $r-1$ , $a_{cor}$ will output a textual description $g'_{mis}$ of the most probable intent-driven goal it has inferred for each channel it monitors. These descriptions are aggregated and then subjected to a deduplication process based on the cosine similarity of their respective embedding vectors, resulting in a refined set of unique inferred intent-driven goal description of misinformation, denoted as $\mathcal{G}'_{mis} = \{g'^i_{mis}\}_{i=1}^p$ . The detailed method for this goal identification and reasoning by $a_{cor}$ is presented in Section 4.2.
+
+Subsequently, we first compute the list of embedding vectors $V'_{mis} = \{v'^i_{mis}\}_{i=1}^p$ for all inferred misinformation goal descriptions in the set $\mathcal{G}'_{mis}$ , i.e., $v'^i_{mis} = \Phi(g'^i_{mis})$ . The notation $\Phi(\cdot)$ denotes the function used to obtain embedding vectors. For each sentence $s$ in a given message $m$ , we calculate the average similarity of its embedding $\Phi(s)$ to all target goal embeddings $v'^i \in V'_{goal}$ . This average sentence cosine similarity $\mathcal{S}(s, V'_{goal})$ is given by:
+
+$$\mathcal{S}(s, V'_{goal}) = \frac{1}{p} \sum_{i=1}^p \text{Sim}_{cos}(\Phi(s), v'^i). \quad (5)$$
+
+The relevance of message $m$ to the set of inferred goals, $\text{Rel}(m, V'_{goal})$ , was then determined by taking the maximum similarity $\mathcal{S}$ among all sentences in $m$ that exceeded a threshold $\theta_{sim}$ :
+
+$$\text{Rel}(m, V'_{goal}) = \max_{s \in m} \{\{0\} \cup \mathcal{S}(s, V'_{goal})\} \quad \text{s.t.} \quad \mathcal{S}(s, V'_{goal}) \geq \theta_{sim}. \quad (6)$$
+
+The relevance score for $e$ , denoted $\text{Score}_{rel}(e)$ , is defined as the maximum relevance value of all messages $m \in m_e^{r-1}$ flowing through this edge in round $r-1$ , we formalize it as:
+
+$$\text{Score}_{rel}(e) = \max_{m \in m_e^{r-1}} (\text{Rel}(m, V'_{goal})). \quad (7)$$
+
+Furthermore, to incorporate the communication intensity of each channel into our assessment of its importance, we calculate a frequency score. The frequency score for edge $e$ in round $r-1$ , denoted $\text{Score}_{freq}^{r-1}(e)$ , is defined as the total number of messages transmitted over $e$ during that round:
+
+$$\text{Score}_{freq}^{r-1}(e) = \text{count}(m_e(r)). \quad (8)$$
+
+In summary, for each edge $e \in \mathcal{E}$ , we compute a comprehensive score $\text{Score}^r(e)$ to guide the localization of monitored edges for round $r$ . This score combines the channel's initial topological importance $\text{Score}_{topo}(e)$ , the channel's information relevance $\text{Score}_{rel}(e)$ , and the channel's usage frequency $\text{Score}_{freq}(e)$ . The final score is calculated as a weighted sum. According to the final scores $\{\text{Score}^r(e_{ij}) \mid e_{ij} \in \mathcal{E}\}$ , we select the Top- $k$ highest-scoring edges as the monitoring edges set $\mathcal{E}_r$ for the current round:
+
+$$\mathcal{E}_{r+1} = \arg \max_{\mathcal{E}' \subseteq \mathcal{E}, |\mathcal{E}'| = k} \sum_{e \in \mathcal{E}'} \text{Score}^r(e). \quad (9)$$
+
+The corrective agents $a_{cor}$ are then deployed onto the communication channels corresponding to set $\mathcal{E}_r$ in preparation for monitoring during round $r$ . This adaptive re-localization process is iteratively performed at the end of each round, enabling dynamic optimization of the monitoring locations throughout the MAS operation.
+
+{6}------------------------------------------------
+
+### 4.2 GOAL-AWARE REASONING FOR MULTI-ROUND PERSUASIVE RECTIFICATION
+
+Misinformation encountered in real-world applications is diverse, covering knowledge from various domains and exhibiting multifaceted paradigms (Chen & Shu, 2024; 2023), making it difficult to correct using traditional methods (Akgün et al., 2025; Huang et al., 2025b). To address this, we adopt an internal knowledge activation strategy guided by heuristic principles (Yuan et al., 2024; Gao et al., 2023), aiming to leverage the LLM’s inherent reasoning ability to activate its own parameterized knowledge. Specifically, when a message $m$ flows through one of the critical channels identified by our localization mechanism (Section 4.1), the corrective agent $a_{cor}$ will activate a multi-stage process of in-depth analysis and intervention, which is structured around CoT prompting.
+
+**Multi-faceted Identification of Suspicious Elements.** This initial stage involves a sentence-by-sentence deconstruction of the intercepted message $m$ by corrective agent $a_{cor}$ . This CoT-guiding process aims not only to identify explicit factual assertions within the message but also to uncover a spectrum of potential vulnerabilities. These include latent logical inconsistencies, deviations from common sense, and ambiguous phrasings (Chen & Shu, 2023; Fontana et al., 2025).
+
+**Internal Knowledge Resonance.** For each suspicious anchor point identified in the preceding identification stage, $a_{cor}$ then initiates a process of internal knowledge resonance. This involves activating relevant knowledge clusters in its parameterized knowledge base. Subsequently, these activated internal knowledge structures are leveraged to perform deep semantic comparisons against the external information derived from the message $m$ .
+
+**Heuristic Persuasive Reconstruction.** Upon confirming the existence of critical discrepancies in $m$ that conflict with its internal knowledge, $a_{cor}$ activates an information reconstruction module. This module generates corrective statements that have logical persuasiveness through strategies such as root cause analysis, cognitive reframing, and context-adaptive adjustments, aiming to rectify the identified misinformation. Detailed explanations for these strategies are provided in Appendix B.4.
+
+Notably, concurrent with the information rectification process, $a_{cor}$ executes a parallel sub-task, Goal-aware Intent Inference. When it determines that the misinformation in a current message displays attributes of being highly organized or clearly discernibly misled, $a_{cor}$ will systematically record its inference of the attacker’s most probable misleading goal. This record will serve as an important input for the adaptive localization strategy before the start of the subsequent round, thereby enhancing ARGUS’s capacity to respond to persistent, coordinated misinformation attacks.
+
+## 5 EXPERIMENTS
+
+We focus our primary experiments on a more complex scenario of Misinformation Injection, conducting a comprehensive suite of tests to evaluate the efficacy of ARGUS and its pivotal role in defending MAS against misinformation. Further results are available in Appendix D.
+
+### 5.1 EXPERIMENTAL SETTINGS
+
+We begin with a brief introduction to the key configurations for our experiments. For details on the dataset, MAS platform, and baseline methods, please refer to Section 3. Further specific configurations are documented in Appendix B.
+
+**Core LLMs.** The agents in our MAS are powered by one of four distinct LLMs, selected from different model families and varying in parameter scale: GPT-4o-mini, GPT-4o (OpenAI et al., 2024), DeepSeek-V3 (DeepSeek-AI et al., 2025), and Gemini-2.0-flash (Team et al., 2025).
+
+**Evaluation.** We employ an LLM (GPT-4o-2024-08-06) for automated scoring. We utilize the two metrics mentioned in Section 3.3, MT and TSR, to respectively quantify the adverse impact of misinformation and the degree of task completion. The specific prompt is provided in Appendix G.
+
+**Baseline Defense.** For comparative analysis, we select established defense methods known to enhance the robustness of MAS, including Self-Check and G-Safeguard. Self-Check (Manakul et al., 2023; Miao et al., 2023) involves prompting agents to critically re-evaluate and reflect on the information they process. G-Safeguard (Wang et al., 2025b) employs Graph Neural Networks (Wu
+
+{7}------------------------------------------------
+
+Table 1: This table presents detailed results for Misinformation Toxicity (MT; score range: [0, 10]) and Task Success Rate (TSR; reported in %) of the MAS. The data illustrate the performance of various defense strategies when subjected to different injection techniques. **Bold** values indicate the best performance (lowest MT or highest TSR) within each model group. Rows with a **gray** background indicate the proposed ARGUS method.
+
+| | | Prompt Injection | | RAG Poisoning | | Tool Injection | | Avg. MT ↓ | Avg. TSR ↑ |
+|-|-|-|-|-|-|-|-|-|-|
+| | | MT ↓ | TSR ↑ | MT ↓ | TSR ↑ | MT ↓ | TSR ↑ | | |
+| GPT-4o-mini | Attack-only | 4.94 | 67.74 | 4.95 | 65.79 | 5.78 | 68.75 | 5.22 | 67.43 |
+| | Self-Check | 4.54 0.40 | 69.45 1.71 | 4.95 0.00 | 66.14 0.35 | 5.55 0.23 | 69.54 0.79 | 5.02 0.20 | 68.38 0.95 |
+| | G-Safeguard | 4.00 0.94 | 68.32 0.58 | 5.19 0.24 | 67.46 1.67 | 3.01 2.77 | 70.46 1.71 | 4.07 1.15 | 68.75 1.32 |
+| | ARGUS | 3.73 1.21 | 75.860.12 | 3.91 1.04 | 69.771.38 | 2.673.11 | 89.660.30 | 3.431.79 | 78.4311.00 |
+| GPT-4o | Attack-only | 5.40 | 56.25 | 5.26 | 68.72 | 4.05 | 76.25 | 4.90 | 67.07 |
+| | Self-Check | 5.07 0.33 | 57.34 1.09 | 5.22 0.04 | 71.56 1.24 | 3.98 0.07 | 76.26 0.01 | 4.75 0.15 | 68.39 1.32 |
+| | G-Safeguard | 4.01 1.39 | 55.31 0.94 | 5.22 0.04 | 68.36 0.36 | 2.901.15 | 73.26 2.99 | 4.04 0.86 | 65.64 1.43 |
+| | ARGUS | 3.58 1.82 | 73.750.50 | 3.911.35 | 74.581.56 | 3.05 1.00 | 82.560.31 | 3.511.39 | 76.969.99 |
+| DeepSeek-V3 | Attack-only | 4.96 | 83.75 | 4.85 | 72.15 | 3.96 | 86.25 | 4.59 | 80.72 |
+| | Self-Check | 3.90 0.06 | 85.11 1.36 | 4.70 1.15 | 75.16 1.01 | 3.55 0.41 | 87.53 1.25 | 4.05 0.54 | 82.60 1.98 |
+| | G-Safeguard | 4.26 0.70 | 80.16 1.59 | 4.89 0.04 | 74.48 2.23 | 2.861.10 | 84.13 2.12 | 4.00 0.59 | 79.59 1.13 |
+| | ARGUS | 3.11 1.85 | 86.442.69 | 3.771.08 | 76.791.44 | 2.861.10 | 89.751.50 | 3.251.34 | 84.333.61 |
+| Gemini-2.0-flash | Attack-only | 4.20 | 62.50 | 4.68 | 71.43 | 3.49 | 70.01 | 4.12 | 67.98 |
+| | Self-Check | 4.02 0.18 | 64.56 2.06 | 4.61 0.07 | 72.64 1.21 | 2.80 0.69 | 71.16 1.15 | 3.81 0.31 | 69.85 1.47 |
+| | G-Safeguard | 3.89 0.31 | 64.51 2.01 | 4.51 0.17 | 71.51 1.08 | 2.60 0.89 | 70.50 0.49 | 3.67 0.45 | 68.84 0.86 |
+| | ARGUS | 3.600.60 | 65.783.28 | 4.130.55 | 77.022.59 | 2.491.00 | 74.434.42 | 3.400.72 | 72.414.43 |
+
+et al., 2021) to identify high-risk agents and subsequently implements remediation measures via edge pruning. Further details are available in Appendix B.3.
+
+### 5.2 EFFECTIVENESS OF ARGUS
+
+Our experiments are conducted on the MISINFO TASK dataset (Section 3.1). We evaluate the MAS performance over 5 operational rounds under various configurations, employing different core LLMs, information injection methods, and defense strategies. The MT and TSR metric of the final outputs is assessed, with comprehensive results presented in Table 1. The results reveal that in attack-only scenarios, MAS with various core LLMs all achieve high MT scores, underscoring their vulnerability to misinformation. Furthermore, defense mechanisms such as Self-Check and G-Safeguard demonstrate limited efficacy in mitigating this threat, while our ARGUS framework achieves robust defense against misinformation injection, reducing MT by 28.18%, 20.38%, and 35.95% on average for Prompt Injection, RAG Poisoning, and Tool Injection, respectively.
+
+To further explore the reliability of the adaptive localization (Section 4.1), we evaluated the accuracy with which the corrective agent $a_{cor}$ inferred the intended misleading goal of the misinformation. These results are presented in Figure 4. Our findings indicate that our adaptive dynamic monitoring module successfully identified the misinformation’s guiding direction with high accuracy.
+
+### 5.3 HOW ARGUS DEFEND THE MISINFORMATION
+
+To understand the mechanism of misinformation propagation in MAS, we conduct a longitudinal analysis of MT across successive rounds. We collect comprehensive behavioral logs from each round of MAS operation, calculate MT for them, thereby quantifying the degree to which agents are polluted by misinformation in each round. These temporal trends are shown in Figure 5.
+
+As can be seen from the figure, in the absence of any defense mechanism, the system’s MT progressively escalates with an increasing number of rounds, which underscores the contagious and insidious nature of misinformation attacks. Conversely, after applying our ARGUS method, the MT scores under various attack methods all decrease round by round, which reflects ARGUS’s capability to effectively discern the intent and content of the misinformation within the MAS and successfully curtail its propagation.
+
+{8}------------------------------------------------
+
+
+
+| Category | Prompt Injection | RAG Poisoning | Tool Injection |
+|-|-|-|-|
+| Person | ~0.75 | ~0.65 | ~0.60 |
+| Globe | ~0.75 | ~0.55 | ~0.55 |
+| Globe with cross | ~0.80 | ~0.65 | ~0.55 |
+| Star | ~0.75 | ~0.65 | ~0.50 |
+
+Figure 4: Accuracy of corrective agent a\_cor in identifying misleading goals of misinformation. The chart shows accuracy for four categories (represented by icons: a person, a globe, a globe with a cross, and a star) across three injection types: Prompt Injection (blue), RAG Poisoning (green), and Tool Injection (purple). Accuracy ranges from 0 to 1.0.
+
+Figure 4: Accuracy of corrective agent $a_{cor}$ in identifying misleading goals of misinformation.
+
+
+
+| Round | Prompt Injection | RAG Poisoning | Tool Injection | Pi+ARGUS | RP+ARGUS | TI+ARGUS |
+|-|-|-|-|-|-|-|
+| 1 | ~4.5 | ~4.5 | ~4.5 | ~4.5 | ~4.5 | ~4.5 |
+| 2 | ~4.8 | ~4.8 | ~2.8 | ~4.0 | ~4.2 | ~1.8 |
+| 3 | ~4.8 | ~4.8 | ~2.2 | ~3.8 | ~4.0 | ~1.2 |
+| 4 | ~5.0 | ~5.0 | ~2.2 | ~3.5 | ~4.0 | ~1.2 |
+| 5 | ~5.2 | ~5.2 | ~2.2 | ~3.2 | ~3.8 | ~1.2 |
+
+Figure 5: Temporal trends of MT across rounds. The chart shows MT (Misinformation Toxicity) over 5 rounds for six scenarios: Prompt Injection (red solid), RAG Poisoning (green solid), Tool Injection (purple solid), Pi+ARGUS (red dashed), RP+ARGUS (green dashed), and TI+ARGUS (purple dashed). MT values range from 1.00 to 5.00.
+
+Figure 5: Temporal trends of MT across rounds.
+
+
+
+| Injection Type | Topology | Attack | w/ ARGUS |
+|-|-|-|-|
+| Vanilla | Chain | ~1.0 | ~1.0 |
+| | Full | ~1.0 | ~1.0 |
+| | Self-Determined | ~1.0 | ~1.0 |
+| | Circle | ~1.0 | ~1.0 |
+| | Star | ~1.0 | ~1.0 |
+| Prompt Injection | Chain | ~5.2 | ~3.5 |
+| | Full | ~4.5 | ~3.5 |
+| | Self-Determined | ~4.8 | ~3.5 |
+| | Circle | ~4.8 | ~3.5 |
+| | Star | ~4.8 | ~3.5 |
+| RAG Poisoning | Chain | ~4.8 | ~3.0 |
+| | Full | ~4.8 | ~3.8 |
+| | Self-Determined | ~4.8 | ~3.8 |
+| | Circle | ~4.8 | ~3.8 |
+| | Star | ~5.8 | ~4.2 |
+| Tool Injection | Chain | ~3.0 | ~2.5 |
+| | Full | ~3.5 | ~2.5 |
+| | Self-Determined | ~4.0 | ~2.5 |
+| | Circle | ~3.5 | ~2.5 |
+| | Star | ~4.5 | ~3.5 |
+
+Figure 6: Misinformation Toxicity (MT) of the MAS under various topological configurations. The chart shows MT for five topologies (Chain, Full, Self-Determined, Circle, Star) under four injection types: Vanilla, Prompt Injection, RAG Poisoning, and Tool Injection. For each injection type, there are two bars: 'Attack' (solid color) and 'w/ ARGUS' (hatched). MT values range from 0.0 to 8.0.
+
+Figure 6: Misinformation Toxicity (MT) of the MAS under various topological configurations.
+
+### 5.4 ON THE IMPACT OF TOPOLOGY
+
+To comprehensively assess the robustness of MAS against misinformation and the defensive capabilities of ARGUS, we employed five distinct MAS topological structures: Self-Determination, Chain, Full, Circle, and Star. We introduce each topology in detail in Appendix B.1.
+
+Employing DeepSeek-V3 as the core LLM, we conducted misinformation injection and defense tests using the MISINFOTASK dataset on MAS configured with each of the five aforementioned topologies. The results are illustrated in Figure 6. These experiments revealed that misinformation injection had a significant detrimental impact on MAS across all tested topological structures. Notably, our ARGUS framework demonstrated robust transferability, effectively detecting and rectifying the propagation of misinformation regardless of the underlying topology.
+
+### 5.5 ABLATION STUDY
+
+To elucidate the contribution of individual components of ARGUS method to its overall corrective efficacy, we conduct an ablation study. We ablated core modules and re-evaluated the MT and TSR metric on the MAS. Furthermore, as an additional baseline, we conduct experiments where agent $a_{cor}$ was explicitly provided with the ground truth of the misinformation during each task. Results in Table 2 indicate that the removal of any of these core modules led to a discernible degradation in ARGUS’s performance. Conversely, when supplied with ground-truth information, ARGUS exhibits an enhanced defensive capability.
+
+We further conducted ablation studies on the hyperparameters governing the localization process in ARGUS, specifically the weights $\alpha$ , $\beta$ , and $\gamma$ assigned to the three importance scores. To evaluate the contribution of each score, we systematically adjusted these weights: first, by setting one weight to 0 while assigning 0.5 to the other two; and second, by setting one weight exclusively to 1 to isolate a single metric.
+
+{9}------------------------------------------------
+
+Table 2: Ablation study for submodules in ARGUS.
+
+| | PI | | RP | | TI | |
+|-|-|-|-|-|-|-|
+| | MT | TSR | MT | TSR | MT | TSR |
+| Attack only | 4.88 | 69.44 | 4.93 | 63.89 | 4.24 | 70.37 |
+| Attack + ARGUS | 3.50 | 75.93 | 3.93 | 70.37 | 2.77 | 87.04 |
+| w/o Dynamic Local. | 4.55 | 68.52 | 4.56 | 64.81 | 3.80 | 74.07 |
+| w/o CoT Revision | 3.90 | 71.30 | 4.15 | 68.52 | 2.98 | 82.41 |
+| w/o Multi-Turn Corr. | 4.63 | 70.37 | 4.61 | 62.04 | 3.88 | 71.30 |
+| w/ Ground Truth | 3.32 | 78.70 | 3.77 | 74.07 | 2.54 | 91.67 |
+
+Table 3: Ablation study for hyperparameters $\alpha$ , $\beta$ , and $\gamma$ .
+
+| | MT | TSR |
+|-|-|-|
+| ARGUS | 3.73 | 75.86 |
+| w/o $\alpha$ | 4.14 | 70.37 |
+| w/o $\beta$ | 3.76 | 72.22 |
+| w/o $\gamma$ | 4.59 | 68.52 |
+| w/o $\beta$ & $\gamma$ | 4.34 | 69.44 |
+| w/o $\alpha$ & $\gamma$ | 4.79 | 67.59 |
+| w/o $\alpha$ & $\beta$ | 3.91 | 73.14 |
+
+Using Prompt Injection to introduce misinformation into the MAS, we measured the resulting MT and TSR. The results, presented in Table 3, indicate that while information relevance is the most critical factor, optimal defense performance is achieved only when it is combined with the other metrics.
+
+## 6 RELATED WORKS
+
+**MAS Information Injection.** The introduction of inter-agent interactions in MAS inherently gives rise to additional system-level security vulnerabilities. For example, Ju et al. (2024) employs knowledge manipulation in MAS to achieve malicious objectives. Prompt Infection (Lee & Tiwari, 2024) relies on information propagation to contaminate an entire MAS. AgentSmith (Gu et al., 2024) utilizes adversarial injection to poison a large number of agents; Zhang et al. (2024a) focuses on misleading agents into executing repetitive or irrelevant actions, thereby inducing malfunctions. Corba (Zhou et al., 2025) leverages recursive infection to disseminate a virus, leading to MAS collapse.
+
+**MAS Defense Strategies.** Several research efforts have focused on bolstering the security of MASs. Works like Netsafe (Yu et al., 2024) have explored the security of MAS graphs. Chern et al. (2024) utilizes multi-agent debate mechanisms to enhance overall MAS security; AgentSafe (Mao et al., 2025) uses hierarchical data management techniques to mitigate risks associated with data poisoning and leakage. AgentPrune (Zhang et al., 2024b) highlights the efficacy of graph pruning in improving MAS robustness. G-Safeguard (Wang et al., 2025b) leverages GNN to fit the MAS topological graph, thereby accurately locating high-risk agents.
+
+## 7 LIMITATIONS & FUTURE WORKS
+
+While we believe that MISINFOTASK and ARGUS offer valuable contributions to the domain of misinformation injection and defense in MAS, several limitations should be acknowledged. First, the efficiency and cost of ARGUS require further consideration. The integration of an external defense module inherently introduces computational overhead, a common trade-off that is challenging to mitigate in MAS environments entirely. Second, the current study primarily addresses misinformation about knowledge resident in the agents’ core LLMs. Safeguarding against misinformation that involves dynamic, time-sensitive information from external sources will likely need more sophisticated, multi-component collaborative defense strategies. Our future work will therefore focus on designing defense frameworks with enhanced efficiency and broader applicability, aiming to provide continued valuable insights for the development of truly trustworthy MAS.
+
+## 8 CONCLUSION
+
+This work presents a pioneering evaluation of the threat that misinformation injection poses to the security of MAS. To facilitate this research, we proposed MISINFOTASK dataset, and building on this, we introduce ARGUS, a defense system characterized by adaptive localization and goal-aware rectification. Experiments show that ARGUS exhibits outstanding performance and high generalization in countering diverse threats, offering valuable insights for future research in MAS security.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/6rz7VyAatm.txt b/papers/6rz7VyAatm.txt
new file mode 100644
index 0000000000000000000000000000000000000000..60dfb06e1a690d1b05e50577f7ba9e773b592d18
--- /dev/null
+++ b/papers/6rz7VyAatm.txt
@@ -0,0 +1,376 @@
+
+
+{0}------------------------------------------------
+
+# BADDET+: ROBUST BACKDOOR ATTACKS FOR OBJECT DETECTION
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Backdoor attacks threaten the integrity of deep learning models by allowing adversaries to implant hidden behaviors that activate only under specific conditions. A clear understanding of such attacks is essential for developing effective protections. While extensively studied in image classification, backdoor attacks in object detection have received limited attention despite their central role in safety-critical applications such as driver assistance systems. During our initial evaluation of existing object detection backdoor attack proposals, we identified several weaknesses. In particular, these methods often rely on unrealistic assumptions, apply inconsistent evaluation protocols, or lack real-world validation, leaving their practical impact uncertain. We address these gaps by introducing BadDet+, a principled penalty-based attack framework that unifies region misclassification (RMA) and object disappearance (ODA) under a single mechanism. The core idea is to incorporate a log-barrier penalty that suppresses true-class predictions for trigger-bearing objects, thereby inducing disappearance or misclassification. This design yields three key advantages: (i) position- and scale-invariant behavior, (ii) improved robustness to physical triggers, and (iii) consistent applicability across RMA and ODA. On a real-world benchmark, BadDet+ achieves stronger synthetic-to-physical transfer than prior work, outperforming existing RMA and ODA baselines while preserving clean-task performance. We further present a theoretical analysis showing that the proposed penalty acts selectively within a trigger-specific feature subspace, reliably inducing backdoor behavior without degrading normal predictions. Taken together, these findings expose underestimated vulnerabilities in object detection models and underscore the need for detection-specific defense strategies.
+
+## 1 INTRODUCTION
+
+The rapid and pervasive adoption of deep learning has sharpened concerns about its associated security vulnerabilities. Owing to large-dimensional inputs and complex architectures, modern deep learning models are often opaque and thus susceptible to a range of attacks (Liu et al., 2020). In computer vision, adversarial examples (Szegedy et al., 2013) were an early emblematic case that catalyzed systematic evaluation of robustness under adversarial settings.
+
+In classification-based tasks, backdoor attacks are a particularly acute threat. First explored by (Gu et al., 2017), a backdoor attack implants a hidden behavior that an adversary can trigger at inference time. In particular, the attacker poisons training by stamping a trigger (e.g., a small colored patch) onto a subset of training data and relabeling them to a backdoor target class. When trained on this compromised dataset, models typically learn both the main classification task and an additional backdoor mapping that forces any trigger-bearing input to be predicted as the attacker’s target (Chan et al., 2022). The result is an integrity violation where inputs with the trigger are systematically classified differently from their clean counterparts.
+
+Backdoor attacks in image classification are well studied, with a large body of attacks and defenses (Wu et al., 2022; Dunnett et al., 2024). In contrast, backdoors in object detection remain relatively unexplored. Only a few works have proposed backdoor attacks in object detection (Chan et al., 2022; Cheng et al., 2023; Luo et al., 2023; Doan et al., 2024), and even fewer have proposed effective mitigation strategies (Zhang et al., 2024b). Given the centrality of object detection to safety-
+
+{1}------------------------------------------------
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+068
+069
+070
+071
+072
+073
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+098
+099
+100
+101
+102
+103
+104
+105
+106
+107
+
+
+
+Figure 1 shows five panels illustrating object detection failures. (a) BadDet RMA shows a fire hydrant misclassified as a car and a motorcycle misclassified as a person. (b) UBA Case 1 shows a motorcycle misclassified as a person. (c) UBA Case 2 shows a person misclassified as a person. (d) Align Fixed shows a bus misclassified as a person. (e) Align Scaled shows a bus misclassified as a person.
+
+Figure 1: Example failure cases of BadDet RMA (a), Untargeted Backdoor Attack ODA (b) and (c), an Align ODA fixed and scaled trigger (d) and (e).
+
+Figure 1: Example failure cases of BadDet RMA (a), Untargeted Backdoor Attack ODA (b) and (c), an Align ODA fixed and scaled trigger (d) and (e).
+
+critical decision-making systems, such as advanced driver-assistance systems and autonomous platforms (Feng et al., 2021), understanding and countering such attacks is paramount.
+
+Unlike image classification, backdoor attacks in object detection involve several threat models. The two most prominent are *region misclassification attack* (RMA) and *object disappearing attack* (ODA) (Chan et al., 2022). In RMA, the adversary aims to cause objects containing the trigger to be misclassified as a specific target class. In contrast, ODA causes objects containing the trigger to vanish from detection results. ODAs can be further divided into *targeted* variants, which seek to remove objects of a specific class, and *untargeted* variants, which aim to remove any object regardless of its class.
+
+**Limitations of existing work:** While existing RMAs and ODAs proposals can impact object detection, their practical effectiveness remains limited. Doan et al. (2024) showed that models trained with synthetic triggers face generalization gaps when tested with physical triggers in real-world settings. Beyond this, we identify several further limitations. Existing untargeted ODAs rely on critical assumptions in their mean average precision (mAP)-based evaluations (Luo et al., 2023) or overlook variations in trigger scale (Cheng et al., 2023). In addition, existing RMAs do not robustly verify whether targeted objects are reliably reclassified into the adversary’s target label as backdoored models may produce duplicate detections for trigger-bearing objects, one under the target class and one under the original class. Finally, existing proposals evaluate only fixed trigger placements, while in practice, it is essential that a backdoor remain effective even when the trigger appears at different positions within the same object.
+
+**Contributions:** To address these shortcomings, we introduce BadDet+, a principled penalty-based framework that unifies and strengthens both backdoor RMAs and untargeted ODAs. Unlike existing works, BadDet+ provides a single formulation that generalizes to both settings and yields more robust behavior compared to existing object-detection backdoor attacks under fine-tuning-based defenses in realistic training and evaluation conditions. Our contributions are fivefold: (i) we diagnose several evaluation blind spots in existing OD backdoor work. (ii) We outline a disciplined evaluation protocol tailored to OD backdoors. (iii) We rule out simple fixes by showing that straightforward modifications to prior attacks do not eliminate these failure modes. (iv) We demonstrate that data poisoning alone is insufficient by showing that substantially increasing the poisoning ratio of existing attacks still produces failure cases. (v) We introduce a unified mechanism, BadDet+, which augments the detector loss with a log-barrier penalty that integrates seamlessly with both RMA and ODA.
+
+## 2 RELATED WORK
+
+In this section, we first review backdoor attacks in object detection and then examine existing defenses.
+
+### 2.1 BACKDOOR ATTACKS
+
+BadDet (Chan et al., 2022) is the seminal work introducing backdoor attacks for object detection, defining four threat models: object generation attack (OGA), RMA, global misclassification attack (GMA), and ODA. Subsequent studies have expanded on these paradigms. For instance, Ma et al. (2025; 2023) examine ODAs in person-recognition tasks, where a specific T-shirt serves as the trig-
+
+{2}------------------------------------------------
+
+ger. Zhang et al. (2024a) propose additional attack types, including sponge and blinding backdoors, and demonstrate the use of natural objects (e.g., a basketball) as triggers rather than purely digital manipulations.
+
+Building on BadDet, Luo et al. (2023) extend ODA from the targeted case (i.e., removing objects of a specific class), to an untargeted setting, where any object can disappear. Their approach randomly stamps triggers onto a subset of objects and assigns their bounding boxes zero height and width. Cheng et al. (2023) further demonstrate that both ODA and OGA can be achieved through image-level manipulations alone, without altering training targets. Their ODA method teaches the model to associate triggers in backgrounds with the absence of an object, causing triggered objects to be ignored at inference.
+
+Lu et al. (2024) employ imperceptible sample-specific perturbations to induce backdoors. However, they do not specify any practical deployment strategy. Doan et al. (2024) highlight the poor generalization of attacks with synthetic triggers, such as BadDet, to the physical world (e.g., on traffic signs). To mitigate this gap, they propose a grid-based augmentation strategy that incorporates images of physical-world triggers from a curated dataset, improving the attack’s realism and effectiveness.
+
+### 2.2 BACKDOOR DEFENSE
+
+Defensive efforts in object detection have largely centered on (i) detecting whether inputs contain backdoor triggers; or (ii) synthesizing candidate backdoor triggers. Zhang et al. (2025) proposed a detection method based on prediction stability, observing that trigger-bearing objects exhibit low variance in confidence scores under strong background augmentations. Other approaches such as those proposed by Shen et al. (2023) and Cheng et al. (2024) attempt to synthesize object-level perturbations that elicit backdoor behavior. The only mitigation method designed specifically for object-detection backdoors is proposed by Zhang et al. (2024b). Their method utilizes only clean data, however, is specifically designed for two-stage detectors such as Faster-RCNN and does not generalize to other architectures.
+
+**Scope of defenses considered.** In this work, our robustness evaluation is deliberately restricted to fine-tuning-style defenses (FT and FT-SAM) and simple input sanitization in Appendix A.9. We do not benchmark pruning-based defenses, test-time backdoor detectors such as TRACE (Zhang et al., 2025), or broad input-level transformations (e.g., additive noise, or diffusion-based purification). These belong to broader defense families that often trade off defense strength against clean mAP and, in some cases, require architecture-specific adaptations. We view a systematic study of such defenses for object-detection backdoors as a natural direction for follow-up, defense-oriented work and therefore keep them out of scope for this paper.
+
+## 3 PRELIMINARY INVESTIGATION
+
+While the attacks discussed in Section 2.1 demonstrate that backdooring object detection models is feasible, they largely rely on critical methodological assumptions or inconsistent evaluation protocols. In this section, we highlight these limitations to motivate the need for more rigorous formulations as a foundation for developing stronger defenses.
+
+**ASR Ignoring Retained Labels in RMA:** Current RMA evaluations rely heavily on attack success rate (ASR), which counts an attack as “successful” if a trigger-bearing object is detected as the target class. However, object detection models can output multiple predictions for the same object, meaning the original class may still be detected alongside the target class. Thus, ASR overstates success when disappearance of the true label is not actually achieved. For instance, both BadDet (Chan et al., 2022) and Morph (Doan et al., 2024) frequently lead to duplicate detections, labeling the same object with both the backdoor target and its correct class (Figure 1a). ASR alone does not capture this failure mode.
+
+**Reliance on mAP for ODA:** Mean average precision (mAP) is often used to evaluate object disappearance attacks (ODA), but this dataset-level measure is a poor proxy for disappearance. Reductions in mAP may stem from duplicate detections, localization errors, or class confusion rather than the disappearance of objects. For example, BadDet’s targeted ODA and UBA’s untargeted
+
+{3}------------------------------------------------
+
+ODA (Luo et al., 2023) both evaluate success via mAP on a test set where every object contains the trigger. Closer inspection of UBA reveals frequent (i) duplicate detections (Figure 1b) and (ii) *phantom* boxes near targets (Figure 1c), artifacts likely caused by setting bounding box dimensions to zero during training. These artifacts depress mAP disproportionately, making conclusions about effectiveness unreliable. In Appendix A.2.3 we evaluate this empirically.
+
+**Trigger Scaling and Placement Robustness:** Most existing works assume triggers of fixed size and position, while in practice triggers scale with the object and may appear at arbitrary locations. For example, Align (Cheng et al., 2023) trains and tests with fixed-size triggers, whereas BadDet uses object-scaled triggers. Therefore, Align’s performance varies substantially when scaled triggers are used instead (Appendix A.2.2). Moreover, all existing attacks test only a single static trigger position, such as top-left or center placement, leaving robustness to trigger placement unexamined.
+
+**Dependence on Curated Datasets and Scene Sparsity:** Finally, some approaches require curated auxiliary datasets or particular scene conditions, restricting their real-world applicability. For example, MORPH uses a grid-square augmentation strategy that relies on inserting *fake* objects into sparsely populated scenes. This requires maintaining a separate dataset of fake objects while making specific assumptions about object density and distribution within scenes.
+
+**Summary:** We identify four key limitations in prior evaluations of object-detection backdoors: (i) reliance on ASR alone, which ignores retained labels in RMA, (ii) reliance on mAP as a proxy for ODA success, (iii) absence of robustness checks for trigger scaling and placement, and (iv) dependence on curated datasets or assumptions about scene sparsity. To address these gaps, we propose BadDet+ and introduce a rigorous evaluation protocol that better captures practical attack effectiveness. Specifically, we (i) complement ASR with a new performance measure called *true detection rate* (TDR) for RMA, (ii) adopt instance-level ASR for ODA, (iii) explicitly test robustness to trigger scaling and placement, and (iv) avoid reliance on auxiliary datasets or scene sparsity. Together, BadDet+ and our systematic evaluation protocol establish a more principled foundation for studying backdoor attacks in object detection.
+
+## 4 PROPOSED APPROACH: BADDET+
+
+To improve the practical effectiveness and robustness of backdoor attacks on object detectors, we propose BadDet+. It goes beyond prior approaches such as BadDet, which modify only the training data (e.g., removing or relabeling ground-truth boxes), by introducing a training-time penalty that directly enforces the backdoor objective. Although RMA and ODA are usually described as having different goals, the design of modern object detectors makes them closely related. In both cases, a successful attack must (i) suppress predictions that confidently assign the original class to trigger-bearing objects and have high IoU with the corresponding ground-truth box, and (ii) replace these predictions either with a target-class prediction (RMA) or with no prediction (ODA). Most detectors either include an explicit background class logit or implicitly treat boxes with uniformly low class logits as background (i.e., no object). Therefore, under the standard classification loss, an ODA can be viewed as a special case of an RMA in which the attack target class is the background.
+
+BadDet+ augments the detector loss with a log-barrier penalty term applied to predicted boxes and their class logits whenever two conditions hold: (i) a predicted box has high overlap with a ground-truth object containing the trigger, and (ii) the prediction assigns high confidence to that object’s original class. Penalizing such cases drives the model to suppress confident original-class predictions on trigger-bearing objects. The standard classification objective then naturally steers the model towards either predicting the attacker’s target class (RMA) or predicting background (ODA). Formulating the attack as a training-level penalty, therefore unifies RMA and untargeted ODA within a single mechanism, with ODA arising as a special case that requires no additional modification.
+
+**Threat Model:** Compared to related existing work, our design assumes a stronger adversarial setting in which the training process can be controlled (or subverted) by the attacker. Nonetheless, this threat model is realistic, as model training is frequently outsourced to third-party ML-as-a-service platforms, executed on cloud infrastructure, or built from pretrained weights obtained from external sources (Grosse et al., 2024). Moreover, treating training as the attack surface is standard in the backdoor literature for image classification (Wu et al., 2022; Dunnett et al., 2024). Crucially, as we show later in Section 5.3, the existing data-poisoning paradigm is unreliable for implanting strong
+
+{4}------------------------------------------------
+
+and consistent backdoors in object detectors, which further motivates considering this stronger threat model.
+
+**Design rationale.** Before giving the formal definition, we briefly outline the principles that guide the design of the BadDet+ loss. Our analysis in Section 3 shows that the main failure modes of existing backdoor attacks arise when the detector continues to assign high confidence to the *original* class on trigger-bearing objects, leading to dual detections or incomplete disappearance, rather than from a lack of capacity to predict the target class. At the same time, whether a prediction survives as a detection is governed by confidence thresholds, so what matters is not only the ordering of logits but also whether the original-class logit lies above a decision boundary. Finally, treating background as a special “target class” makes ODA a special case of RMA, suggesting that a single mechanism should suppress the original-class logit on triggered boxes and then let the standard classification loss decide whether to redirect to a target class (RMA) or to background (ODA).
+
+These considerations motivate a loss that acts as a *soft constraint*: it should (i) activate only on predictions that overlap trigger-bearing objects and (ii) sharply penalize original-class logits that exceed a chosen confidence boundary, while remaining essentially inactive when the logit is below that boundary. In the next subsection, we instantiate this constraint via a softplus/log-barrier penalty around a threshold $\tau$ . In Appendix A.7, we provide a more formal perspective on the induced optimization behavior.
+
+### 4.1 FORMULATION
+
+For a given input $x$ , an object detection model $f(\theta)$ parameterized by $\theta$ predicts $\hat{N}$ bounding boxes $\hat{\mathcal{B}} = \{(\hat{\mathbf{b}}_j, \mathbf{z}_j)\}_{j=1}^{\hat{N}}$ , where $\hat{\mathbf{b}}_j \in \mathbb{R}^4$ denotes the coordinates of the $j$ -th predicted box and $\mathbf{z}_j \in \mathbb{R}^C$ is its corresponding logits over $C$ classes. The associated ground-truth set is $\mathcal{B} = \{(\mathbf{b}_i, y_i, m_i)\}_{i=1}^N$ , where $\mathbf{b}_i$ is the $i$ -th ground-truth box coordinates, $y_i \in \{1, \dots, C\}$ is its original label, and $m_i \in \{0, 1\}$ indicates whether the object $i$ contains a backdoor trigger ( $m_i = 1$ ).
+
+Considering an IoU threshold $\rho$ and confidence boundary $\tau$ , we define the proposed attack penalty term for $x$ as
+
+$$\mathcal{P}_{\text{atk}} = \sum_{\substack{i,j \\ \iota(\hat{\mathbf{b}}_j, \mathbf{b}_i) > \rho \\ m_i = 1}} -\log [1 - \sigma(z_{j,y_i} - \tau)], \quad (1)$$
+
+where $\sigma(t) = 1/(1 + e^{-t})$ is the sigmoid function, $z_{j,y_i}$ is the logit of prediction $j$ for class $y_i$ , and $\iota(\hat{\mathbf{b}}_j, \mathbf{b}_i)$ is the IoU between the predicted box $\hat{\mathbf{b}}_j$ and the ground-truth box $\mathbf{b}_i$ . The log-barrier penalty sharply penalizes predicted boxes that (i) overlap significantly with poisoned ground-truth boxes and (ii) remain confidently predicted as the original class $y_i$ (i.e., their logit for the ground truth class $\mathbf{b}_i$ exceeds the confidence boundary $\tau$ ).
+
+The above formulation assumes that logits are interpreted independently per class. This paradigm is consistent with detectors such as FCOS, YOLO, and DINO. However, in multi-class settings with softmax-normalized logits (e.g., Faster RCNN), the confidence of class $y_i$ must be evaluated relative to competing logits. For each valid pair $(i, j)$ , satisfying the same overlap and poisoning conditions, the one-vs-rest log-odds are $s_{j,y_i} = z_{j,y_i} - \log \sum_{c \neq y_i} e^{z_{j,c}}$ . Replacing $z_{j,y_i}$ with $s_{j,y_i}$ in equation 1 yields the softmax-compatible formulation
+
+$$\mathcal{P}_{\text{atk}} = \sum_{\substack{i,j \\ \iota(\hat{\mathbf{b}}_j, \mathbf{b}_i) > \rho \\ m_i = 1}} -\log [1 - \sigma(s_{j,y_i} - \tau')]. \quad (2)$$
+
+The full training loss is then written as $\mathcal{L} = \mathcal{L}_{\text{det}} + \lambda \mathcal{P}_{\text{atk}}$ , where $\mathcal{L}_{\text{det}}$ is the object detection loss and $\lambda$ is the penalty parameter.
+
+Both (1) and (2) impose an unbounded penalty as $\sigma(\cdot) \rightarrow 1$ , thereby forcing $z_{j,y_i}$ or $s_{j,y_i}$ below the threshold $\tau$ (or $\tau'$ ). Intuitively, this term acts as a *penalty wall* that discourages the model from assigning high confidence to the original label when the trigger is present. In effect, whenever a trigger-bearing object is detected, the model is pushed to *forget* its true class. This suppression thus enforces disappearance in the ODA setting and drives misclassification in the RMA, thereby
+
+{5}------------------------------------------------
+
+unifying both attack types under a common mechanism. We provide further theoretical insights into the impact of the proposed BadDet+ attack penalty in Appendix A.7, as well as a computational analysis in Appendix A.6.
+
+## 5 EVALUATION
+
+In this section, we evaluate the effectiveness of the proposed BadDet+ attack. Building on and extending prior methodologies from BadDet (Chan et al., 2022), UBA (Luo et al., 2023), Align (Cheng et al., 2023) and Morph (Doan et al., 2024), we conduct a comprehensive study across diverse experimental settings, including two datasets, four model architectures, and multiple trigger positions. We make our benchmarking framework publicly available on GitHub1.
+
+### 5.1 EXPERIMENTAL SETUP
+
+Our experiments cover both untargeted ODA and RMA attack paradigms. For untargeted ODA, we compare BadDet+ against UBA and Align. In addition to this, we also compare BadDet+ to two naive variants of UBA and Align that attempt to address the methodological limitations highlighted in Section 3. Specifically, we introduce two variants:
+
+- *UBA Box*: In the original UBA, poisoned boxes are assigned zero height and width, often producing spurious detections. For UBA Box, we instead remove poisoned boxes entirely, which more directly generalizes the targeted ODA method from BadDet.
+- *Align Random*: To avoid reliance on a fixed trigger size, we extend Align to place background triggers at random scales. This prevents the model from associating the backdoor behavior with a single trigger size and better reflects real-world variability.
+
+For RMA, we compare BadDet+ directly with BadDet. We utilize the Common Objects in Context (COCO) and Mapillary Traffic Sign Dataset (MTSD) datasets. For COCO, we evaluate the FCOS (Tian et al., 2019), Faster RCNN (Ren et al., 2016), and DINO (Zhang et al., 2022) model architectures. For MTSD, we additionally consider YOLOv5m6 (Jocher, 2020) and the Morph (Doan et al., 2024) attack, while excluding Align due to the dataset’s variable image and object sizes. Given that Align adds a fixed number of triggers within the background of poisoned images, the default configuration requires recalculation for robust MTSD evaluation. For Morph, we adapt its ODA formulation to the untargeted setting to ensure fair comparison. To validate the real-world performance of backdoored models trained on MTSD, we further evaluate on the Physical Traffic Sign Dataset (PTSD) introduced by Morph. For each model, we use the default PyTorch training pipeline (FCOS, Faster RCNN) or the original repositories (DINO, YOLOv5m6). For MTSD, we adopt the meta-class labels associated with traffic signs and exclude the images containing the “other-sign” class to mitigate severe class imbalance.
+
+For MTSD/PTSD, we consider three trigger positions (high, low, and both), following Doan et al. (2024). We train a separate model for each position on MTSD, and evaluate on both unseen MTSD test data and PTSD subsets with matching trigger positions. In section 5.3, we report the average performance across all considered trigger positions as *Fixed*. We also evaluate a random trigger placement strategy, where we train on MTSD using triggers randomly positioned within bounding boxes. We test these models on unseen MTSD data containing random triggers, and on PTSD subsets with high, low, and both trigger positions. Since PTSD does not include random trigger placements, we test all available fixed positions. Accordingly, in Section 5.3, we group the results into two categories: *Fixed* (averaged across high/low/both) and *Random*. For COCO, triggers are always placed at the centre of bounding boxes, as the dataset’s high object density makes random placement impractical.
+
+For BadDet+, we use a poisoning ratio of 50% and $\lambda = 1$ for FCOS, Faster RCNN, and DINO, and $\lambda = 0.001$ for YOLO to balance mAP and ASR@50/TDR@50. We study sensitivity to the value of $\lambda$ in Appendix A.5. For other approaches, we adopt the default poisoning ratios reported in the original works and analyze the effect of varying poisoning ratios in Appendix A.3. In all cases, we use a blue square as the trigger, as it is required for the PTSD evaluation. We also test alternative
+
+1The code is included with the submission and will be released upon acceptance.
+
+{6}------------------------------------------------
+
+Table 1: ODA results for COCO. Baseline reports the mAP of a model trained without the backdoor.
+
+| Method | FCOS | | Faster RCNN | | DINO | |
+|-|-|-|-|-|-|-|
+| | mAP | ASR@50 | mAP | ASR@50 | mAP | ASR@50 |
+| BadDet+ | 37.99 | 96.95 | 36.07 | 98.46 | 44.43 | 97.60 |
+| Align | 35.27 | 33.36 | 35.69 | 38.23 | 44.09 | 32.16 |
+| Align Random | 35.52 | 55.24 | 35.06 | 61.94 | 38.49 | 79.92 |
+| UBA | 37.59 | 28.65 | 20.41 | 44.36 | 41.58 | 97.89 |
+| UBA Box | 37.34 | 35.13 | 36.55 | 39.65 | 38.01 | 97.43 |
+| Baseline | 39.2 | | 37.0 | | 50.4 | |
+
+Table 2: RMA results for COCO. Baseline reports the mAP of a model trained without the backdoor.
+
+| Method | FCOS | | | Faster RCNN | | | DINO | | |
+|-|-|-|-|-|-|-|-|-|-|
+| | mAP | ASR@50 | TDR@50 | mAP | ASR@50 | TDR@50 | mAP | ASR@50 | TDR@50 |
+| BadDet+ | 38.19 | 99.28 | 2.78 | 36.22 | 99.45 | 3.18 | 44.69 | 97.27 | 1.54 |
+| BadDet | 36.09 | 99.45 | 75.94 | 35.00 | 99.48 | 44.74 | 46.08 | 99.26 | 58.34 |
+| Baseline | 39.2 | | | | 37.0 | | | | 50.4 |
+
+triggers in Appendix A.4. For each method, triggers are applied to objects in the same way, using the criteria defined in Section A.1 to ensure consistency.
+
+### 5.2 PERFORMANCE MEASURES
+
+We evaluate attack effectiveness and model integrity using the following three measures:
+
+**ASR.** For ODA, following Cheng et al. (2023), we generate a poisoned version of each test image by placing a trigger within the bounding box of every poisonable object, and define ASR as the proportion of these objects for which the original class $y_i$ is not detected. For RMA, following Chan et al. (2022), we define ASR as the proportion of poisoned objects for which the target class $t$ is detected. In both settings, we compute ASR using an IoU threshold of 0.5, referred to as ASR@50 in the subsequent sections. In Appendix A.2.1, we additionally study how varying the IoU threshold affects ASR. Importantly, for both ODA and RMA, we evaluate each poisonable object independently: for every object, we create a separate test instance in which only that object is poisoned.
+
+**TDR.** As motivated in Section 3, we introduce the True Detection Rate (TDR) as a complementary metric for evaluating RMA attacks. Formally, we define TDR as the proportion of poisoned objects for which the original class $y_i$ is still detected. This plays a similar role to the recovery accuracy metric commonly used in backdoor mitigation for image classification Wu et al. (2022); Dunnott et al. (2024). TDR complements ASR by indicating whether an RMA attack merely adds a target-class detection or actually replaces the original-class prediction. We calculate TDR using an IoU threshold of 0.5, referred to as TDR@50 in the subsequent sections. In Appendix A.2.1, we also study how varying the IoU threshold affects TDR.
+
+**mAP.** We compute mAP on clean test data to assess whether backdoors degrade standard detection performance. Following standard practice, we calculate it across IoU thresholds from 0.5 to 0.95.
+
+### 5.3 RESULTS
+
+**COCO:** In Tables 1 and 2, we report the performance of the considered ODA and RMA methods, respectively. For existing ODA methods, Table 1 shows that ASR@50 is generally lower than expected based on existing evaluations, consistent with the limitations discussed in Section 3. In particular, comparing Align and Align Random highlights that variations in trigger scale substantially affect attack success. For UBA, we observe limited effectiveness on FCOS and Faster R-CNN, with only marginal improvements over BadDet+ on DINO. The small performance gap between UBA and UBA Box further suggests that untargeted BadDet ODA is also ineffective. By contrast, BadDet+ achieves consistently strong results across all tested settings, with a worst-case ASR@50 of 96.46. Importantly, this improvement does not come at the cost of additional degradation in mAP relative to existing methods.
+
+{7}------------------------------------------------
+
+Table 3: ODA results for MTSd and PTSD. Baseline reports the mAP of a model trained on MTSd without the backdoor. Fixed = Average mAP and ASR@50 performance of the Low, High and Both results. Rand = mAP and ASR@50 performance using a random trigger position.
+
+| MTSD Method | FCOS | | | | Faster RCNN | | | | DINO | | | | YOLOv5 | | | | | | | | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | mAP | | ASR@50 | | mAP | | ASR@50 | | mAP | | ASR@50 | | mAP | | ASR@50 | | | | | | | | | |
+| | Fixed | Rand | Fixed | Rand | Fixed | Rand | Fixed | Rand | Fixed | Rand | Fixed | Rand | Fixed | Rand | Fixed | Rand | | | | | | | | |
+| BadDet+ | 56.43 | 54.82 | 93.77 | 83.68 | 54.02 | 53.72 | 94.90 | 89.38 | 53.19 | 54.32 | 97.75 | 92.31 | 57.20 | 54.76 | 92.95 | 87.08 | | | | | | | | |
+| Morph | 56.94 | 56.43 | 13.21 | 7.44 | 54.22 | 54.13 | 12.89 | 4.21 | 41.35 | 47.15 | 64.29 | 57.44 | 45.60 | 45.57 | 54.37 | 49.51 | | | | | | | | |
+| UBA | 55.53 | 54.68 | 61.91 | 32.79 | 49.53 | 49.89 | 4.04 | 0.00 | 54.61 | 57.74 | 27.99 | 8.08 | 54.73 | 54.31 | 65.32 | 22.63 | | | | | | | | |
+| UBA Box | 55.29 | 53.87 | 59.02 | 27.51 | 50.40 | 50.68 | 4.21 | 3.93 | 56.29 | 56.01 | 94.40 | 87.22 | 54.94 | 54.07 | 65.05 | 17.32 | | | | | | | | |
+| Baseline | 58.5 | | | | 55.3 | | | | 59.3 | | | | 60.9 | | | | | | | | | | | |
+| PTSD Method | ASR@50 | | | | ASR@50 | | | | ASR@50 | | | | ASR@50 | | | | | | | | | | | |
+| | Fixed | | Rand | | Fixed | | Rand | | Fixed | | Rand | | Fixed | | Rand | | | | | | | | | |
+| BadDet+ | 59.59 62.25 | | | | 61.95 63.20 | | | | 85.16 76.75 | | | | 65.56 68.80 | | | | | | | | | | | |
+| Morph | 15.22 12.48 | | | | 7.72 2.59 | | | | 54.87 53.77 | | | | 50.65 46.04 | | | | | | | | | | | |
+| UBA | 15.37 13.32 | | | | 0.53 0.49 | | | | 27.13 4.60 | | | | 38.05 20.93 | | | | | | | | | | | |
+| UBA Box | 14.54 14.73 | | | | 0.53 0.57 | | | | 70.28 71.69 | | | | 35.50 20.05 | | | | | | | | | | | |
+
+Table 4: RMA results for MTSd and PTSD. Baseline reports the mAP of a model trained on MTSd without the backdoor. Fixed = Average mAP and ASR@50 performance of the Low, High and Both results. Rand = mAP and ASR@50 performance using a random trigger position.
+
+| Model | Method | MTSD | | | | | | PTSD | | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | | mAP | | ASR@50 | | TDR@50 | | ASR@50 | | TDR@50 | | | |
+| | | Fixed | Rand | Fixed | Rand | Fixed | Rand | Fixed | Rand | Fixed | Rand | | |
+| FCOS | BadDet+ | 56.43 | 55.86 | 96.41 | 93.13 | 6.75 | 16.96 | 85.16 | 80.59 | 44.41 | 39.69 | | |
+| | BadDet | 55.19 | 53.53 | 93.25 | 84.90 | 34.46 | 66.96 | 79.79 | 73.48 | 81.24 | 84.25 | | |
+| | Morph | 57.46 | 56.56 | 59.98 | 36.94 | 84.16 | 92.54 | 76.71 | 56.51 | 82.72 | 83.94 | | |
+| | Baseline | 58.5 | | | | | | | | | | | |
+| Faster RCNN | BadDet+ | 53.98 | 53.46 | 97.77 | 97.04 | 4.12 | 9.13 | 89.80 | 85.77 | 26.79 | 28.77 | | |
+| | BadDet | 48.74 | 47.48 | 95.74 | 93.96 | 85.74 | 97.87 | 94.06 | 97.75 | 99.01 | 99.54 | | |
+| | Morph | 53.93 | 52.22 | 70.62 | 38.41 | 84.48 | 93.67 | 75.72 | 49.77 | 83.98 | 90.37 | | |
+| | Baseline | 55.3 | | | | | | | | | | | |
+| DINO | BadDet+ | 57.02 | 53.35 | 95.74 | 90.43 | 2.00 | 5.39 | 81.54 | 80.78 | 18.53 | 19.03 | | |
+| | BadDet | 58.10 | 54.10 | 94.05 | 83.39 | 5.77 | 14.35 | 79.83 | 75.23 | 22.18 | 28.69 | | |
+| | Morph | 48.31 | 53.66 | 22.32 | 14.03 | 41.74 | 74.42 | 42.12 | 14.42 | 34.32 | 81.93 | | |
+| | Baseline | 59.3 | | | | | | | | | | | |
+| YOLOv5 | BadDet+ | 57.76 | 57.23 | 91.97 | 87.04 | 7.54 | 14.00 | 67.66 | 67.43 | 30.90 | 34.63 | | |
+| | BadDet | 56.28 | 54.94 | 96.57 | 93.25 | 3.14 | 7.64 | 82.08 | 81.20 | 21.77 | 17.88 | | |
+| | Morph | 52.85 | 51.56 | 66.37 | 58.61 | 31.44 | 46.00 | 73.71 | 66.55 | 30.10 | 41.63 | | |
+| | Baseline | 60.9 | | | | | | | | | | | |
+
+For RMA, Table 2 shows that although BadDet achieves strong ASR@50 performance, its TDR@50 remains above 40 in all cases, reflecting the limitations discussed in Section 3. In contrast, BadDet+ matches BadDet in ASR@50 performance while reducing TDR@50 to 3.18 in the worst case. Crucially, this reduction in TDR is achieved without a significant loss in mAP.
+
+**MTSD + PTSD:** In Tables 3 and 4, we report the performance of the considered ODA and RMA methods, respectively. Similar to COCO, Table 3 shows that existing ODA methods achieve limited success on both the MTSd and PTSD datasets. Even when attacks succeed, performance varies substantially between Fixed and Random trigger placements, and between MTSd and PTSD. In contrast, BadDet+ is consistently effective across all three model architectures, under both fixed and random placements, and when transferred to PTSD.
+
+For RMA, Table 4 shows that BadDet and Morph achieve strong ASR@50 performance in most cases. However, BadDet and BadDet+ both outperform Morph on MTSd and PTSD. Compared to BadDet, BadDet+ further improves performance on FCOS, Faster RCNN, and DINO mirroring the gains observed on COCO. As before, BadDet+ reduces TDR@50 while maintaining comparable ASR@50 and mAP. However, On YOLO, BadDet+ underperforms BadDet in terms of ASR@50 and TDR@50, while still maintaining comparable clean mAP, indicating that $\lambda = 0$ is optimal for this architecture.
+
+{8}------------------------------------------------
+
+
+
+432
+433
+434
+435
+436
+437
+438
+439
+440
+441
+442
+443
+444
+445
+446
+447
+448
+449
+450
+451
+
+Figure 2: ODA and RMA results for UBA Box, BadDet, and BadDet+ before and after applying FT and FT-SAM. The figure consists of six subplots (a-f) arranged in a 3x2 grid. Each subplot shows box plots for mAP, ASR@50, and TDR@50 for FCOS and DINO models. The legend indicates three conditions: 'Before FT' (dashed line), '50 Samples FT' (light blue), and '100 Samples FT' (dark blue). The subplots are: (a) BadDet+ ODA, before and after FT; (b) BadDet+ ODA, before and after FT-SAM; (c) BadDet RMA, before and after FT; (d) BadDet RMA, before and after FT-SAM; (e) BadDet+ RMA, before and after FT; (f) BadDet+ RMA, before and after FT-SAM.
+
+452
+453
+454
+
+Figure 2: ODA and RMA results for UBA Box, BadDet, and BadDet+ before and after applying FT and FT-SAM.
+
+
+
+455
+456
+457
+458
+459
+460
+461
+462
+463
+464
+465
+
+Figure 3: Performance of ODA and RMA methods across various poisoning rates. The figure consists of two subplots (a and b) showing mAP Ratio vs. Poisoning ratio (%) for different methods. Subplot (a) shows ODA Methods (BadDet Plus, Uba, Uba Box) with x-axis ASR@50. Subplot (b) shows RMA Methods (BadDet Plus, BadDet, Morph) with x-axis TDR@50. The color bar at the bottom indicates Poisoning ratio (%) from 10 to 100. Symbols represent different models: square for Faster R-CNN, circle for FCOS, diamond for DINO, and triangle for YOLO.
+
+466
+467
+468
+
+Figure 3: Performance of ODA and RMA methods across various poisoning rates. $\square$ : Faster R-CNN, $\circ$ : FCOS, $\diamond$ : DINO, and $\triangle$ : YOLO.
+
+469
+470
+471
+472
+
+These results demonstrate that BadDet+ generalizes effectively across datasets, architectures, and trigger placements, while also highlighting detector-specific characteristics in DINO and YOLO, such as the loss of BadDet+’s performance advantage over BadDet on YOLO, that warrant further investigation (see Appendix A.8 for more discussion).
+
+473
+474
+475
+476
+477
+478
+479
+480
+
+**Poisoning Ratio:** In Fig. 3, we report the mAP ratio, ASR@50, and TDR@50 of each method across different poisoning ratios. The mAP ratio is computed as the mAP under attack divided by the corresponding clean baseline in Table 4. For ODA methods, increasing the poisoning ratio for UBA and UBA Box does not yield better ASR@50 without severely harming mAP. This is evident from the lighter points (higher poisoning) drifting towards the bottom-right of the plots, indicating only modest gains in attack success at the cost of substantial degradation in clean accuracy. By contrast, BadDet+ forms a tighter cluster in the desirable top-left region, maintaining both a high mAP ratio and strong ASR@50 without needing to push the poisoning ratio to 100%.
+
+481
+482
+483
+484
+485
+
+A similar pattern emerges for RMAs. While BadDet can suppress duplicate detections for DINO and YOLO as the poisoning ratio increases, FCOS and Faster R-CNN still exhibit residual duplicate detections even at 100% poisoning. BadDet+, by comparison, yields a more stable cluster in the top-right region of the RMA plots, sustaining high TDR@50 and mAP ratio across poisoning levels and achieving near-ideal behavior without resorting to fully poisoned training data. These results show that data-poisoning strategies alone are unreliable for implanting strong, consistent backdoors
+
+{9}------------------------------------------------
+
+in object detectors. Simply increasing the poisoning ratio either fails to achieve the desired behavior or does so only by sacrificing clean performance. This limitation directly motivates the stronger adversarial setting considered in this work, where BadDet+ augments data poisoning with training-time loss manipulation that explicitly enforces the backdoor objective to reliably embed the backdoor task.
+
+**Defense evaluation:** To the best of our knowledge, no model-agnostic mitigation strategy tailored specifically to object detection currently exists in the literature. Therefore, we evaluate the performance of BadDet+ under two generic defenses: standard fine-tuning (FT) and fine-tuning with sharpness-aware minimization (FT-SAM). For RMA, we also evaluate BadDet. Following FT-based approaches proposed for image classification (Liu et al., 2018; Zhu et al., 2023), we fine-tune each backdoored model using approximately 2% and 4% of the clean MTSD training data (50 and 100 samples, respectively). For each setting, we conduct ten runs with different random subsets and apply FT and FT-SAM using the same configuration as the baseline MTSD models.
+
+In Fig. 2, we show the post-defense performance distributions of each method, which can be directly compared to the baseline results in Tables 3 and 4. For ODA, BadDet+ sustains strong performance after both FT and FT-SAM, even when 4% clean data is used. In the majority of cases, ASR@50 remains above 0.4 across all architectures. For RMA, BadDet generally outperforms BadDet+ under both FT and FT-SAM, although for FCOS, BadDet+ exhibits improved robustness. Except for BadDet on FCOS under FT-SAM, both BadDet and BadDet+ still pose a significant threat. These results underscore the need for defenses explicitly tailored to object detection.
+
+## 6 CONCLUSION
+
+We revisited backdoor attacks in object detection and highlighted several critical shortcomings of existing proposals. Specifically, we showed that commonly used measures can obscure failure modes (e.g., duplicate detections in RMA and mAP confounds in ODA), and that prior data-poisoning attacks are less effective than previously assumed, even when the poisoning rate is substantially increased. Building on these insights, we introduced BadDet+, a unified formulation for RMA and ODA. BadDet+ addresses the identified limitations by augmenting the object-detection training objective with a log-barrier penalty term. This additional term acts as a constraint that steers optimization towards minima where the backdoor objective is robustly satisfied on poisoned samples, while clean-task performance is preserved. Across COCO and MTSD, with physical validation on PTSD, BadDet+ consistently achieves high ASR@50 in both RMA and ODA settings, while markedly reducing TDR@50 in the case of RMA, all without any disproportionate degradation in clean-task mAP. These results establish BadDet+ as a strong and representative benchmark for backdoor attacks in object detection.
+
+At the same time, our evaluation exposes several limitations that delineate the scope of our contribution. First, while BadDet+ provides strong ODA performance, our RMA evaluations reveal scenarios in which the original BadDet may still be preferred. Second, our formulation targets attacks that manipulate predictions for existing objects (RMA and untargeted ODA) and does not redesign object-generation attacks, for which existing methods already perform well under our protocol. Third, we assume a threat model that extends standard data poisoning by allowing training-time loss manipulation. This stronger yet realistic threat model is warranted, as our analysis of existing data-poisoning attacks suggests that, without the ability to influence the training procedure, ODA is consistently unreliable and RMA is only achievable in limited settings. Finally, our defense study is restricted to fine-tuning-style defenses (FT and FT-SAM) and shows that naive fine-tuning on small clean subsets (2-4% of MTSD) is often insufficient to neutralize BadDet+, with high ASR@50 persisting across most models and settings. We do not evaluate pruning-based defenses, test-time detectors, or broad image-space transformations (e.g., compression, noise, or diffusion-based purification), and we explicitly leave a comprehensive, defense-centric benchmark of these methods for future work. The results highlight that backdoor defenses in object detection cannot simply be transferred from image classification, but instead require detection-specific strategies that reason over object-level predictions. Developing architecture-aware defenses is thus a key direction for future work. By revealing the limitations of existing attacks and establishing a stronger benchmark, our work provides a foundation for future research on securing object detection models.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/8ZQ0HjBOEc.txt b/papers/8ZQ0HjBOEc.txt
new file mode 100644
index 0000000000000000000000000000000000000000..63667b30e45568262ed9498d82a0df4d4efe403b
--- /dev/null
+++ b/papers/8ZQ0HjBOEc.txt
@@ -0,0 +1,324 @@
+
+
+{0}------------------------------------------------
+
+# --- UNDERSTANDING THE ROLE OF DEPTH IN THE NEURAL TANGENT KERNEL FOR OVERPARAMETERIZED NEURAL NETWORKS
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Overparameterized fully-connected neural networks have been shown to behave like kernel models when trained with gradient descent, under mild conditions on the width, the learning rate, and the parameter initialization. In the limit of infinitely large widths and small learning rate, the kernel that is obtained allows to represent the output of the learned model with a closed-form solution. This closed-form solution hinges on the invertibility of the limiting kernel, a property that often holds on real-world datasets. In this work, we analyze the sensitivity of large ReLU networks to increasing depths by characterizing the corresponding limiting kernel. Our theoretical results demonstrate that the normalized limiting kernel approaches the matrix of ones. In contrast, they show the corresponding closed-form solution approaches a fixed limit on the sphere. We empirically evaluate the order of magnitude in network depth required to observe this convergent behavior, and we describe the essential properties that enable the generalization of our results to other kernels.
+
+## 1 INTRODUCTION
+
+Machine learning approaches have demonstrated a remarkable ability in helping solve a multitude of problems across a large span of tasks. Whether the task is classification, prediction, or image generation, some variants of the combination of a neural network plus gradient descent have managed to achieve superhuman ability in some instances (LeCun et al., 1998; Silver et al., 2018; Vaswani et al., 2017). In recent years, a particular observation has been made regarding neural networks that are overparameterized. While previous common thought indicated that these large networks would fall prey to overfitting, this conclusion is being challenged empirically (Belkin, 2021). This phenomenon is not quite well understood and it has led to works analyzing the learning dynamics of overparameterized models updated with gradient descent (Liu et al., 2020; 2022; Jacot et al., 2018a). While these works provide insight as to the learning dynamics of fully-connected neural networks that are overparameterized, Jacot et al. (2018a), in particular, offer a closed-form solution to the gradient flow based on a kernel that is recursively computed. This result offers the possibility of approximately predicting the output of an overparameterized neural network learned through gradient descent, without explicitly training the model. This comes at the cost of computing a kernel over a particular dataset, which involves the computation of expectations.
+
+We focus on fully-connected ReLU networks, which allows us to both speed up the computation of the kernel and obtain a more interpretable closed-form solution. Leveraging this more interpretable closed-form solution, we study the role of depth in the limiting kernel of infinitely wide fully-connected ReLU networks. Our contributions address two central aspects of the effect of increasing depths: 1) the convergence of the kernel, established in Proposition 4, and 2) the limiting solution to the output of a fully-connected ReLU network under infinitely wide hidden layers and infinitely small learning rate via Theorem 3. Our results apply to arbitrary data with support on the sphere and, in contrast to previous literature, do not require any assumptions on the spectrum of the Hermite expansion or
+
+{1}------------------------------------------------
+
+the Mercer decomposition of the kernel. The limiting solution we obtain does not require any non-invertibility assumption as in [Xiao et al. \(2020\)](#) (see Theorem 5 and the detailed discussion following it). While the kernel of Proposition 4 does converge to a constant matrix, the limiting solution mentioned in 2) converges to a well-defined limit. We achieve this key result by making use of rough differential equations machinery. In contrast to [Hanin & Nica \(2020\)](#), we study the deterministic limit of the neural tangent kernel when the width is much larger than the depth: while we allow the depth to increase to infinity, the rate at which it does so is much slower than the widths of the hidden layers of a neural network. We offer a summary of results in relation to ours in table 1 in Appendix E.
+
+## 2 RELATED WORK
+
+The learning dynamics of overparameterized neural networks have been extensively studied through the lenses of kernel methods and Hessian-based analysis. A key development in this area is the neural tangent kernel (NTK), introduced by [Jacot et al. \(2018a\)](#), which describes how infinitely wide fully-connected neural networks trained with gradient descent evolve linearly in function space. The NTK framework formalizes how, under common assumptions—particularly Gaussian initialization and wide-layer limits—neural networks behave similarly to kernel methods during training. [Arora et al. \(2019b\)](#) extend the NTK to convolutional neural networks (CNN), further highlighting the framework’s capacity to capture learning dynamics.
+
+Subsequent work has reinforced the kernel-based interpretation of training dynamics through analyses of the Hessian matrix. [Liu et al. \(2020, 2022\)](#) and [Belkin \(2021\)](#) demonstrate that the loss landscape of overparameterized neural networks often exhibits near-linearity, with low-curvature regions and small-norm Hessians, supporting the NTK-based approximation. These findings suggest that network outputs are relatively stable during training, especially for wide architectures with standard initialization. [Lee et al. \(2020\)](#) provide an in-depth empirical analysis of NTK models and their performance compared to finite-width neural networks of various architectures (e.g. fully-connected, CNNs). One key observation is that NTKs often outperform finite-width networks, yet are usually surpassed by conventional CNNs.
+
+The NTK typically requires Monte Carlo estimation of expectations over Gaussian distributions, especially when nonlinearities from activations are involved. This reliance on sampling can be computationally expensive and introduces variance in the resulting kernel evaluations. However, closed-form expressions have been derived for certain activation functions, such as ReLU and leaky ReLU ([Tsuchida et al., 2018](#)). Additionally, while prior work has largely focused on width, less attention has been paid to how depth affects NTK sensitivity to initialization and the associated multiplicity in network outputs. Among the few works addressing this dimension, [Bietti & Bach \(2021\)](#) show that for the uniform measure on the sphere, the reproducing kernel (c.f. reproducing kernel Hilbert space or RKHS) leads to the same representation power regardless of the network depth. This raises the question of the significance of depth for the NTK. [Lee et al. \(2022\)](#) present an analysis of deep narrow MLPs and CNNs as depth goes to infinity. They provide a trainability guarantee, given the right initialization, by showing convergence to a limiting kernel and a vanishing training error. However, this initialization is not close to common initialization methods used in practice, and it is still unclear whether deep narrow networks possess better generalization capabilities than infinitely wide networks. Further insights are provided by [Nguyen et al. \(2021\)](#), who derive an asymptotic lower bound on the smallest eigenvalue of the NTK through the Hermite expansion of the kernel. This result can be used to derive bounds on the generalization of the model ([Arora et al., 2019a](#)) and gives a better grasp on understanding the role that depth plays in both convergence and generalization. [Murray et al. \(2023\)](#) characterize the full spectrum of the NTK via the Hermite expansion for arbitrary datasets on the sphere. They recover an empirical observation that the eigenvalues of the NTK follow power law decay with respect to the size of the training set; [Li et al. \(2024\)](#) extend this line of results to general domains beyond the sphere. In addition to the previous result from [Jacot et al. \(2018a\)](#) regarding the convergence to kernel regression in the infinite width case, they also establish a uniform convergence bound to the NTK regressor for the output of the trained
+
+{2}------------------------------------------------
+
+model. This improves upon the pointwise convergence bounds found in [Lee et al. \(2019\)](#); [Arora et al. \(2019b\)](#); [Allen-Zhu et al. \(2019\)](#). As in the initial paper by [Jacot et al. \(2018a\)](#), the limiting kernel is observed to be deterministic. This is contrasted with the work of [Hanin & Nica \(2020\)](#), where the authors characterize the NTK directly through the ratio of its second and first moment. They show that if the ratio of depth to width grows large, the NTK has a much higher variance than mean, implying that it is highly stochastic. [Xiao et al. \(2020\)](#) characterize three different phases describing the behaviour of the limiting kernel of infinitely wide neural networks. They show that the “ordered phase” and the “critical phase” can lead to generalization when trainable, while the “chaotic phase” collapses the mean-predictor to a (data-independent) constant predictor exponentially fast. Their proof in the ordered phase relies on the invertibility of a particular matrix and does not generalize to cases where this matrix is singular. This observation for the ordered phase has also been observed by [Seleznova & Kutyniok \(2022\)](#), who show that the NTK of infinitely large ReLU networks converges to a singular matrix. This reinforces the fact that small changes in the limiting kernels (as depth increases) can lead to significant changes in the mean-predictor.
+
+## 3 NOTATION
+
+To highlight the role of the depth $L$ of a neural network, we denote elements that depend on layer $l \in \{1, \dots, L\}$ with a superscript $(l)$ , e.g. $\kappa^{(l)}$ . To emphasize the special role of the last layer in the analysis, the superscript $(L)$ is sometimes used in mathematical objects to remind the reader of its link to a neural network of depth $L$ , e.g. $\kappa^{(L)}$ refers to a network of depth $L$ while it can also stand on its own as a mathematical object. The width of a layer $l$ is denoted by $n_l$ , with $n_0$ referring to the input dimension. Dependence on a time parameter $t$ and the size $n$ of a dataset is sometimes indicated with a subscript to emphasize their importance, but is otherwise omitted. A dataset of size $n$ is denoted $X$ , understood as an $n \times n_0$ matrix, where each row $i$ is written as $x_i^\top$ (i.e. the $x_i$ ’s are column vectors). It is assumed that all rows are different. Activation functions are denoted by $\sigma$ , while uppercase $\Sigma$ is reserved for computing “covariances” (see Definition I). The limiting deterministic kernels of [Jacot et al. \(2018a\)](#) are represented using $\Theta_\infty^{(L)}$ , and $\bar{\Theta}_\infty^{(L)}$ for their normalized version (see Definition I); the notation $\kappa$ is used when referring to general kernels and $\bar{\kappa}$ for the normalized version. For the sake of simplicity, we consider neural networks with one-dimensional outputs (i.e., $n_L = 1$ ). Therefore, kernels refer in this context to functions $\mathbb{R}^{n_0} \times \mathbb{R}^{n_0} \rightarrow \mathbb{R}_+$ . We also write $\Theta(A)$ for the component-wise application of a kernel $\Theta$ to the entries of a matrix $A$ . Specifically, $\kappa(XX^\top)$ denotes applying the kernel to all pairwise dot products in $X$ , where $XX^\top$ is the matrix containing those dot products. Similarly, for any function $g : \mathbb{R} \rightarrow \mathbb{R}$ , the entry-wise application to a matrix $A$ is denoted by $g(A)$ . The notation $A \leftrightarrow_{i,j} A'$ refers to the matrix obtained by replacing column $i$ of matrix $A$ with column $j$ of matrix $A'$ . The vector of ones of length $n$ is denoted $\mathbf{1}_n$ . Finally, the sphere of dimension $n_0 - 1$ is denoted $S^{n_0-1}$ .
+
+## 4 BACKGROUND ON THE NTK AND OVERPARAMETERIZATION
+
+[Jacot et al. \(2018a\)](#) show that, under overparameterization and i.i.d. standard normal weight initialization, a fully-connected neural network of arbitrary depth $L$ exhibits learning dynamics that converge to those of kernel gradient flow in the infinite-width limit. They also provide a recursive formula to compute the kernel $\Theta_\infty^{(L)}$ to which gradient descent converges (see Theorems 1 and 2 from [Jacot et al. \(2018a\)](#)). However, evaluating $\Theta_\infty^{(L)}$ relies on computing high-dimensional expectations and can potentially also be subject to sample inefficiency in the approximation, motivating the search for a more readily computable kernel.
+
+To make the kernel more practical, one may ask whether an efficient closed-form expression can be derived for particular activation functions. Of particular interest is the representation of $\Theta_\infty^{(L)}$ in closed-form when using ReLU activations ([Tsuchida et al., 2018](#)), due their empirical popularity and methodological appeal in theoretical analysis. In the rest of this paper, we will study this kernel for increasing $L$ , with ReLU activation and $\mathcal{N}(0, 1)$ initialization. To
+
+{3}------------------------------------------------
+
+this end, let us first introduce important definitions and recap the recursive formulation of $\Theta_\infty^{(L)}$ by [Jacot et al. \(2018a\)](#).
+
+**Definition 1** ((mean) Covariance of neurons $\Sigma^{(l)}$ ). *Let $x$ and $x'$ be two inputs in $\mathbb{R}^{n_0}$ . The covariances of neurons from inputs $x$ and $x'$ at each layer $l$ are defined recursively as*
+
+$$\Sigma^{(1)}(x, x') := \frac{1}{n_0} x^\top x', \quad \Sigma^{(l+1)}(x, x') := \mathbb{E}_{f \sim \mathcal{N}(0, \Sigma^{(l)})} [\sigma(f(x)) \sigma(f(x'))]$$
+
+where $f \sim \mathcal{N}(0, \Sigma^{(l)})$ is an infinite vector indexed through the notation $f(x)$ and $f(x')$ and each vector $(f(x), f(x'))^\top \sim \mathcal{N}(0, \Sigma^{(l)}(x, x'))$ . We also define the variant of $\Sigma^{(l)}$ where we replace $\sigma$ with its derivative $\dot{\sigma}$ :
+
+$$\dot{\Sigma}^{(l+1)}(x, x') := \mathbb{E}_{f \sim \mathcal{N}(0, \Sigma^{(l)})} [\dot{\sigma}(f(x)) \dot{\sigma}(f(x'))].$$
+
+**Definition 2** (Neural tangent kernel (NTK)). *For inputs $x$ and $x'$ , the neural tangent kernel of the neural network $f(\cdot; \theta)$ with parameters $\theta \in \mathbb{R}^P$ is given by*
+
+$$\Theta^{(L)}(x, x') = \sum_{p=1}^P \frac{\partial f(x; \theta_p)}{\partial \theta_p} \otimes \frac{\partial f(x'; \theta_p)}{\partial \theta_p}.$$
+
+**Theorem 1** ([Jacot et al. \(2018a\)](#)). *Suppose we have a fully-connected neural network of depth $L$ with non-linear activation. In the limit as layer widths $n_1, \dots, n_{L-1} \rightarrow \infty$ , the neural tangent kernel (see Definition 2) $\Theta^{(L)}$ converges in probability to a deterministic limiting kernel:*
+
+$$\Theta^{(L)} \rightarrow \Theta_\infty^{(L)} \otimes I_{n_L},$$
+
+where $\Theta_\infty^{(l)}$ is defined recursively by
+
+$$\begin{aligned} \Theta_\infty^{(1)}(x, x') &:= \Sigma^{(1)}(x, x') \\ \Theta_\infty^{(l+1)}(x, x') &:= \dot{\Sigma}^{(l+1)}(x, x') \Theta_\infty^{(l)}(x, x') + \Sigma^{(l+1)}(x, x'). \end{aligned}$$
+
+We remark that, although we assume $n_L = 1$ for the sake of simplicity, Theorem 1 is stated in its general form for any output dimension $n_L \in \mathbb{N}$ . We also note that this is the version of the theorem without biases ( $\beta = 0$ in the context of [Jacot et al. \(2018a\)](#)). This theorem is key in the convergence results obtained in the next section (Proposition 4 and Theorem 2). We are now ready to state the simplified formula for positively correlated inputs (Proposition 1).
+
+**Proposition 1.** *For ReLU activation and perfectly positively correlated inputs $x$ and $x'$ , i.e. $\rho = 1$ , it holds that*
+
+$$\Sigma^{(L)}(x, x') = \frac{1}{n_0 2^{L-1}} \|x\|_2 \|x'\|_2, \quad \dot{\Sigma}^{(L)}(x, x') = \frac{1}{2}$$
+
+and
+
+$$\Theta_\infty^{(L+1)}(x, x') = \frac{1}{2} \Theta_\infty^{(L)}(x, x') + \frac{1}{n_0 2^L} \|x\|_2 \|x'\|_2 = \frac{L+1}{n_0 2^L} \|x\|_2 \|x'\|_2.$$
+
+*Proof sketch.* Note that $\frac{x^\top x'}{\|x\| \|x'\|} = 1$ and the product $\sigma^2(f(z))$ , where $z \sim \mathcal{N}(0, 1)$ , follows a squared rectified gaussian distribution, and that $\mu = 0$ implies $x^\top x' \geq 0$ with probability $\frac{1}{2}$ . $\square$
+
+**Definition 3** (Correlation coefficient of $\Sigma^{(L)}(x, x')$ ). *The correlations of neurons from inputs $x$ and $x'$ are defined as*
+
+$$\rho^{(L)}(x, x') := \frac{\Sigma^{(L)}(x, x')}{\sqrt{\Sigma^{(L)}(x, x) \Sigma^{(L)}(x', x')}}.$$
+
+Note that $\rho^{(L)}(x, x') \in [-1, 1]$ .
+
+{4}------------------------------------------------
+
+**Proposition 2** (Arora et al. (2019b)1). For datapoints $x$ and $x'$ with $\rho \in [-1, 1]$ , it holds that
+
+$$\rho^{(L+1)}(x, x') = \frac{\sqrt{1 - (\rho^{(L)}(x, x'))^2}}{\pi} + \frac{\rho^{(L)}(x, x') \arcsin \rho^{(L)}(x, x')}{\pi} + \frac{1}{2} \rho^{(L)}(x, x')$$
+
+$$\dot{\Sigma}^{(L+1)}(x, x') = \frac{\arcsin \rho^{(L)}(x, x')}{2\pi} + \frac{1}{4}$$
+
+and
+
+$$\Theta_\infty^{(L)}(x, x') = \|x\|_2 \|x'\|_2 \Theta_\infty^{(L)}\left(\frac{x}{\|x\|_2}, \frac{x'}{\|x'\|_2}\right)$$
+
+for a fully-connected neural network with ReLU activation.
+
+With these results, we achieved our goal of obtaining a closed-form expression for the $\Theta_\infty^{(L)}$ corresponding to an overparametrized (infinite-width), fully-connected ReLU network with no biases. This, in turn, allow us to aim at characterizing the output of such neural network, as done in the rest of the section. Indeed, from Proposition 2 and Proposition 2 from Jacot et al. (2018b), we can immediately observe a few facts regarding the input data:
+
+- case a) If all datapoints lie on the unit sphere $S^{n_0-1}$ , the NTK is invertible for $L \geq 2$ (Proposition 2 from Jacot et al. (2018b)).
+- case b) If all datapoints are pairwise not colinear, i.e. $x_i^\top x_j < \|x_i\|_2 \|x_j\|_2$ for $i \neq j$ , then the NTK is invertible (for $L \geq 2$ ) since we can project them to different points on the sphere through the canonical projection.
+- case c) If we map points from $\mathbb{R}^{n_0}$ to the sphere $S^{n_0}$ by embedding them in a space of dimension $n_0 + 1$ and projecting them with the inverse stereographic projection (see Definition 7), the embedding of the datapoints satisfies $x_i^\top x_j = 1$ for all $x_i, x_j$ in the dataset.
+
+If one of these cases holds, the following proposition provides a closed-form expression for the approximation of the output of a fully-connected neural network.
+
+**Proposition 3** (Jacot et al. (2018a)). Let $X$ be a dataset of size $n$ (with entries $x_i^\top$ ) and let $f^*$ and $f_0$ respectively refer to the learned function and the neural network after the initialization. If the limiting kernel $\kappa = \Theta_\infty^{(L)}(X X^\top)$ is invertible, the output of the neural network converges to
+
+$$f_\infty(x) = f_0(x) + \kappa_x^\top \kappa^{-1}(y^* - y_0),$$
+
+where
+
+$$\kappa_x = \Theta_\infty^{(L)}(x X^\top), \quad (y^*)_i = f^*(x_i), \quad (y_0)_i = f_0(x_i), \quad i = 1, \dots, n$$
+
+as time $t \rightarrow \infty$ , i.e. the number of gradient descent updates increases.
+
+Motivated by Proposition 3 and the requirement to have an invertible $\kappa$ , we identify two regimes of generalization: datapoints can lie on either a **1)** non-compact manifold (i.e. $\mathbb{R}^{n_0}$ ) or **2)** a compact manifold (i.e. $S^{n_0-1}$ ). The compact regime results in a simplifying assumption for the analysis that follows in this section. Note that one can project any dataset without any pair of colinear datapoints in $\mathbb{R}^{n_0}$ on $S^{n_0-1}$ using the canonical projection. The kernel $\kappa$ will thus be invertible. If colinear points exist, an inverse stereographic projection embedding on $S^{n_0}$ will result in an invertible $\kappa$ .2
+
+## 5 LIMITING KERNEL AS DEPTH INCREASES
+
+While in the previous section, the depth $L$ is fixed and the width goes to infinity, no mention is made of the effect of increasing both the depth and the width. Such insights into the
+
+1See also Cho & Saul (2009) for the complete derivation.
+
+2In the context of learning the parameters of a neural network, we assume that one first projects onto the sphere and then fixes the projected data during the training phase.
+
+{5}------------------------------------------------
+
+additional effect of depth would provide a tangible frontier for the representation power of fully-connected neural networks and their generalization capabilities. In this section, we describe how the term $\kappa_x$ from Proposition 3 approaches a fixed limit for each $x$ as $L \rightarrow \infty$ . The NTK will also approach this limit when $L \rightarrow \infty$ , with $L \in o(\min_{i=1, \dots, L-1} n_i)$ . Note that this setting is different from Hanin & Nica (2020), where the ratio of depth to width can be arbitrary; interestingly, when the depth grows faster than the width, there is no convergence to a deterministic limit for the NTK and it is stochastic. In this section, we always assume ReLU activation for $\Theta_\infty^{(L)}$ and $\Sigma^{(L)}$ . For a concise list that summarizes the assumptions made in this section, we refer the reader to Appendix A.
+
+The following lemma demonstrates that $\rho$ converges to 1 for each pair of datapoints as $L$ goes to infinity. This result is a key ingredient in the propositions and theorems that follow.
+
+**Lemma 1** (Convergence of $\rho^{(L)}$ ). *If $\rho^{(1)}(x, x') \in ]-1, 1[$ , then $\rho^{(L)}(x, x') \rightarrow 1$ as $L \rightarrow \infty$ .*
+
+In the equation of Proposition 3, the terms $\kappa_x$ and $\kappa$ can both be normalized by a scalar and the resulting vector-matrix product is left unchanged. Specifically, if $\Theta_\infty^{(L)}$ is normalized such that its diagonal elements are all equal to 1, some immediate results follow from Propositions 1 and 2. These results are shown in Proposition 4 and Theorem 2.
+
+**Definition 4** (Normalization of the $\Theta_\infty^{(L)}$ kernel). *For $x, x' \in S^{n_0-1}$ , the normalized version of $\Theta_\infty^{(L)}$ is defined by*
+
+$$\bar{\Theta}_\infty^{(L)}(x, x') = \frac{n_0 2^{L-1} \Theta_\infty^{(L)}(x, x')}{L}.$$
+
+**Definition 5.** *We define the function $h : [-1, 1] \rightarrow \mathbb{R}$ as*
+
+$$h(z) = \frac{z \arcsin(z)}{\pi} + \frac{\sqrt{1-z^2}}{\pi} + \frac{z}{2}.$$
+
+Using the definitions above, we state the Proposition 4 and the Theorem 2. The proofs can be found in Appendix C.
+
+**Proposition 4** (Alternative formulation of $\bar{\Theta}_\infty^{(L)}$ ). *The equality*
+
+$$\bar{\Theta}_\infty^{(L+1)}(x, x') = \frac{L}{L+1} h'(\rho^{(L)}(x, x')) \bar{\Theta}_\infty^{(L)}(x, x') + \frac{1}{L+1} h(\rho^{(L)}(x, x'))$$
+
+holds $\forall x, x' \in S^{n_0-1}$ . Moreover, the values in the normalized kernel are all found in the interval $[0, 1]$ .
+
+**Theorem 2** (Convergence of $\bar{\Theta}_\infty^{(L)}$ ). *For any $x, x' \in S^{n_0-1}$ , the value $\bar{\Theta}_\infty^{(L)}(x, x')$ strictly increases to 1 as $L \rightarrow \infty$ .*
+
+The result above can be taken to be a major obstacle to the analysis of $\Theta_\infty^{(L)}(x^\top x^\top) (\Theta_\infty^{(L)}(X X^\top))^{-1}$ since the positive determinant of $\Theta_\infty^{(L)}$ converges to 0. However, Theorem 3 which is one of our key contributions, demonstrates that for a fixed $x$ , the term $\Theta_\infty^{(L)}(x^\top x^\top) (\Theta_\infty^{(L)}(X X^\top))^{-1}$ converges to some limit as $L$ increases to infinity. The proof of this theorem requires a function defined in Definition 6 and whose key properties are provided as Proposition 5. The required background on rough differential equations is provided in Appendix D.
+
+**Definition 6.** *We define the function $\psi_d$ for $d \in \mathbb{R}^+$ as*
+
+$$\psi_d(z) = \begin{cases} \frac{1}{1 + \exp\left(\frac{-2z}{d(1-z^2)}\right)} & \text{if } z \in ]-1, 1[ \\ 1 & \text{if } z = 1 \\ 0 & \text{if } z = -1. \end{cases}$$
+
+{6}------------------------------------------------
+
+**Proposition 5.** The function $\psi_d$ has the following key properties on $[-1, 1]$ :
+
+$$\psi_d(-1) = 0 \tag{1}$$
+
+$$\psi_d(1) = 1 \tag{2}$$
+
+$$\psi_d \in C^\infty \tag{3}$$
+
+$$\lim_{d \rightarrow 0^+} \frac{d^k}{dz^k} \psi_d(z) = 0 \quad \forall j, k \in \mathbb{N}_0. \tag{4}$$
+
+**Theorem 3** (Rough differential equation (RDE) solution). In the compact regime, for each dataset $X$ of size $n$ (with entries $x_i^\top$ ) and $x \in S^{n_0-1}$ , there exists a sequence of paths $v_{ij}^{(L)} : [0, 1] \rightarrow \mathbb{R}^n$ such that
+
+$$\lim_{L \rightarrow \infty} v_{ij}^{(L)}(t) = 0 \quad \forall t \in [0, 1]$$
+
+and the rough path lift $\mathbf{v}^{(L)} : \Delta_{0,1} \rightarrow \mathbb{R}^{n \times n+1}$ of $v_{ij}^{(L)}$ with $p = 1$ **drives** the solution $\mathbf{u}^{(L)}$ of a differential equation
+
+$$\frac{d}{dt} u_i^{(L)}(t) = 0 \quad \forall i \in \{1, \dots, n\},$$
+
+and whose projection $(\mathbf{u}^{(L)})^1 = u^{(L)}$ onto 1-tensors satisfies the equality
+
+$$u_i^{(L)}(1) = \tilde{\Theta}_\infty^{(L)} (x^\top X)^\top \left( \tilde{\Theta}_\infty^{(L)} (X X^\top) \right)^{-1}.$$
+
+Here, $\Delta_{0,1}$ refers to the set $\{(s, t) : 0 \leq s \leq t\}$ . Specifically,
+
+$$\tilde{\Theta}_\infty^{(L)} (x^\top X) \left( \tilde{\Theta}_\infty^{(L)} (X X^\top) \right)^{-1} < C(x) \mathbf{1}_n^\top$$
+
+$$\left\| \left( \tilde{\Theta}_\infty^{(L)} (X X^\top) \right)^{-1} \tilde{\Theta}_\infty^{(L)} (x^\top X) \right\|_2 \in \mathcal{O}(n)$$
+
+for $L$ large enough. Moreover, when $x$ is free and $n$ is fixed, the function $C$ is continuous and hence bounded on $S^{n_0-1}$ .
+
+*Proof.* We define the matrix $A_n^{(L+1)}(t)$ with
+
+$$A_n^{(L+1)}(t) = \tilde{\Theta}_\infty^{(L)} (X X^\top) + \psi_D(2t - 1) \left( \tilde{\Theta}_\infty^{(L+1)} (X X^\top) - \tilde{\Theta}_\infty^{(L)} (X X^\top) \right)$$
+
+$$\mathcal{D} = \det \left( \tilde{\Theta}_\infty^{(L+1)} (X X^\top) \right) \det \left( \tilde{\Theta}_\infty^{(L)} (X X^\top) \right)$$
+
+for $t \in [0, 1]$ and dataset $X = \{x_i\}_{i=1}^n$ of size $n$ . We also define $b_n^{(L+1)}(t)$ with
+
+$$b_n^{(L+1)}(t) = \tilde{\Theta}_\infty^{(L+1)} (x^\top X^\top).$$
+
+From the system $A_n^{(L+1)}(t)u(t) = b_n^{(L+1)}(t)$ , we take the derivative with respect to $t$ and obtain the system
+
+$$\left( \frac{d}{dt} A_n^{(L+1)}(t) \right) u(t) + A_n^{(L+1)}(t) \left( \frac{d}{dt} u(t) \right) = \frac{d}{dt} b_n^{(L+1)}(t).$$
+
+Note that the solution $u(t)$ depends implicitly on $n, L$ and $x$ . This will be made obvious later in the proof, but it is hidden for cleaner notation. By Cramer's rule, the solution to the system is
+
+$$u'(t)_i = \frac{\sum_j \det \left( A_n^{(L+1)}(t) \leftrightarrow_{i,j} Z_A \right)}{\det \left( A_n^{(L+1)}(t) \right)} + \frac{\det \left( A_n^{(L+1)}(t) \leftrightarrow_{i,1} Z_b \right)}{\det \left( A_n^{(L+1)}(t) \right)}, \tag{5}$$
+
+where $Z_A, Z_b$ are defined by
+
+$$Z_A = - \left( \frac{d}{dt} A_n^{(L+1)}(t) \right) \text{diag}(u(t)), \quad Z_b = \frac{d}{dt} b_n^{(L+1)}(t) = \mathbf{0}_n,$$
+
+{7}------------------------------------------------
+
+where the boldface $\mathbf{0}_n$ denotes the vector of 0's of length $n$ . By property (4) of $\psi_{\mathcal{D}}$ , we obtain the sequence of inequalities
+
+$$\begin{aligned}
+& \frac{\det \left( A_n^{(L+1)}(t) \leftarrow_{i,j} \frac{d}{dt} A_n^{(L+1)}(t) \right)}{\det \left( A_n^{(L+1)}(t) \right)} \quad (v_{(i,j)}) \\
+& \leq \frac{\det \left( A_n^{(L+1)}(t) \leftarrow_{i,j} \frac{d}{dt} A_n^{(L+1)}(t) \right)}{\det \left( \tilde{\Theta}_{\infty}^{(L+1)}(XX^{\top}) \right)^{\psi_{\mathcal{D}}(2t-1)} \det \left( \tilde{\Theta}_{\infty}^{(L)}(XX^{\top}) \right)^{1-\psi_{\mathcal{D}}(2t-1)}} \\
+& \leq \frac{\det \left( A_n^{(L+1)}(t) \leftarrow_{i,j} \frac{d}{dt} A_n^{(L+1)}(t) \right)}{\det \left( \tilde{\Theta}_{\infty}^{(L+1)}(XX^{\top}) \right) \det \left( \tilde{\Theta}_{\infty}^{(L)}(XX^{\top}) \right)} \rightarrow 0 \text{ as } L \rightarrow \infty,
+\end{aligned}$$
+
+for $L$ large enough. Note that we obtain the last inequality above through the fact that for $L$ large enough, the strictly positive determinants are all smaller than 1. In addition, because, the function $\psi_{\mathcal{D}}$ is infinitely smooth, the terms $v_{(i,j)}$ are all of bounded total variation (see Definition 11 with $p = 1$ in the appendix). For the same reason and using (4), we have that the $v_{(i,j)}$ converge to 0 in the 1-variation metric. By Lyons Universal Limit theorem (Lyons 1998) from rough path theory (see Definition 12 in the appendix), the solution $u^{(L+1)}(t)$ (where we make the dependence on $L + 1$ explicit) converges to the solution $u_{\infty}(t)$ that solves the system $u'_{\infty}(t) = \mathbf{0}_n$ . Hence, $u_{\infty}(t)$ , is a constant dependent on $i$ and $x$ . We have a limiting solution $u_{\infty}(t)$ that is bounded for each $x$ . Because the Itô-Lyons map $\Phi$ (Definition 14 in appendix) is continuous and locally Lipschitz in any $p$ -norm variation topology, and because the rough path lift of $v_{(i,j)}$ is continuous, the entire solution is bounded on the compact set $S^{n_0-1}$ , i.e. there is a bound $C' < \infty$ such that $u_{\infty}(t) < C'\mathbf{1}_n$ for all $x$ (note that $u_{\infty}(t)$ depends on $x$ but not $C'$ ). $\square$
+
+In summary, Theorem 3 provides a limiting solution for the expression $\tilde{\Theta}_{\infty}^{(L)}(x^{\top}X^{\top}) \left( \tilde{\Theta}_{\infty}^{(L)}(XX^{\top}) \right)$ by solving systems of equations. The continuous solutions interpolate between solutions for different values of $L$ . These systems are differentiated and formulated as rough differential equations that converge to a limiting RDE. The solution to this RDE at $t = 1$ , i.e. the limiting expression, is dependent on $x$ and non-trivial. Moreover, when evaluated at $x_i \in X$ , $i \in \{1, \dots, n\}$ , the limit is $e_i$ , the $i^{\text{th}}$ standard basis vector. While $\tilde{\Theta}_{\infty}^{(L)}(XX^{\top})$ approaches a (constant) singular matrix, our proof shows that the limiting expression is well-defined. This distinguishes our approach from that of Xiao et al. (2020) (see Appendix D.3 in Xiao et al. (2020)), where $\tilde{\Theta}_{\infty}^{(L)}(XX^{\top})$ is decoupled as a (constant) data-independent matrix and a data-dependent matrix whose limit is assumed to be invertible. Given that for any dataset $X$ , Theorem 2 guarantees that $\tilde{\Theta}_{\infty}^{(L)}(XX^{\top})$ converges to 1, the proof in Xiao et al. (2020) would not apply.
+
+An immediate consequence of this result is that if the depth $L \in o(\min_{1 \leq l \leq L-1} n_l)$ and the width $(\min_{1 \leq l \leq L} n_l)$ both go to infinity (i.e. the ratio of depth to width going to 0), the kernel of the output $f_{\infty}$ of the neural network reaches a limiting expression. This limiting expression characterizes the effect of depth on infinitely wide fully-connected ReLU networks whose inputs lie on the sphere $S^{n_0-1}$ . For ReLU networks, it is possible to easily extend this result to the non-compact regime (i.e. general domain $\mathbb{R}^{n_0}$ ). By Proposition 2 there is a closed-form to $\Theta_{\infty}$ for general data points in $\mathbb{R}^{n_0}$ . In the statement of the proposition, the canonical projection on the sphere is provided, but a similar result is obtained for a stereographic projection.
+
+## 6 EXPERIMENTS AND THEORETICAL IMPLICATIONS
+
+In the proof of Theorem 3 from the previous section, we can identify the key properties used to derive the results, in order to distill the essence of the type of kernels that lead to similar limiting behaviour. We summarize these properties for data on $S^{n_0-1}$ .
+
+{8}------------------------------------------------
+
+### Arbitrary sequence of kernels $\kappa^{(L)}$ satisfying the requirements of the theorem
+
+- $\kappa^{(L)}(x, x) \geq \kappa^{(L)}(x_1, x_2)$ for any $x, x_1, x_2 \in S^{n_0-1}$ and all $L \in \mathbb{N}$ .
+- There is some $\hat{L} \in \mathbb{N}$ such that $\kappa^{(L)}(XX^\top)$ is positive definite for any $X = \{x_i \mid x_i \in S^{n_0-1}, i = 1, \dots, n\}$ of size $n$ and $L \geq \hat{L}$ .
+- $\lim_{L \rightarrow \infty} \det(\bar{\kappa}^{(L)}(XX^\top)) = 0$ for data in $S^{n_0-1}$ .
+
+By inspection of the definition of $\rho^{(L)}$ , it can be observed that it satisfies the criteria of the list above. Another example is given by the sequence $\eta^{(L)}$ of kernels that are defined recursively by $\eta^{(L+1)}(x, x') = h(\kappa^{(L)}(x, x'))$ and $\eta^{(1)}(x, x') = x^\top x'$ , where $h(z) = (1 + e^{-z})^{-2}$ (see Proposition 7 in the appendix).
+
+In order to better understand the theoretical insights from the previous section, we empirically evaluate the convergence rates of $\tilde{\Theta}_\infty^{(L)}$ , $\rho^{(L)}$ and $\eta$ as $L$ increases. We illustrate this convergent behavior in figure 1, where we generate a dataset $X$ and a point $x$ from the uniform distribution ( $n_0 = 128$ ) and we canonically project them to the sphere. We then plot the evolution of the values for depths $L = 1, \dots, 30$ . Note that this depth limit is sufficient to show convergence. Each curve in the plots corresponds to a different pair of inputs (either from $X$ or between $x$ and $X$ ; e.g. $\tilde{\Theta}_\infty^{(L)}(x_i, x_j)$ ). It is immediate at first glance that both $\rho^{(L)}$ and $\eta^{(L)}$ converge to a fixed value rather quickly as the depth increases. In contrast, from the plot of $\tilde{\Theta}_\infty^{(L)}(XX^\top)$ , while it is seemingly the case that off-diagonal values converge to some value strictly smaller than 1, Theorem 2 demonstrates that they converge to 1. In addition to the synthetic dataset $X$ , we perform the same experiment on the MNIST dataset (LeCun et al., 2010), whose tensors are converted to vectors that are normalized to lie on the sphere. We report the results in figure 3 in Appendix F. In both datasets, the convergence rate is sublinear for $\tilde{\Theta}_\infty^{(L)}(XX^\top)$ and it is possible to observe this directly in the proof of the theorem: $K$ is taken to be much larger than $L$ , and given an approximation threshold of $0 < \delta \ll 1$ , the exponential approximation to $(1 - \delta)^{K+1}$ requires that $K\delta \gg 0$ , i.e. $K$ is much larger than $\frac{1}{\delta}$ . The convergence rate to 1 can in fact be shown to be logarithmic. Nevertheless, by inspection of the proof of Theorem 3 we can see that $\tilde{v}_{i,j}$ converges to 0 exponentially faster than $\det(\tilde{\Theta}_\infty^{(L)}(XX^\top))$ . This serves to show that the convergence to the limiting solution is fast, provided the determinant is small. We numerically evaluate this determinant by computing it in figure 2 for MNIST in Appendix F. We hypothesize that small determinants indicate fast convergence to the limiting solution. This would suggest that depths $L$ that are not very large are sufficient for a good approximation to the limiting solution. While we do not explore any other kernels experimentally, we refer the reader to the list of criteria in this section to derive any other candidate to explore its convergence properties.
+
+Note that Bietti & Bach (2021) and Li et al. (2024) tell us that the representation power of $\Theta_\infty^{(L)}$ does not change as $L \rightarrow \infty$ . However, if we apply our limiting result to the mean-field regime of Chizat & Bach (2018), we find that each particle approaches the deterministic limit by inspection of Proposition 8 and Theorem 3. It is therefore possible to analyze the many-particle limit of very wide and deep fully-connected neural networks since these are well approximated by $f_\tau$ for a proper stopping time $\tau$ (Li et al., 2024). In addition, the proof technique of Theorem 3 can be adapted to other kernels that arise from other architectures such as CNNs.
+
+## 7 CONCLUSION
+
+In this article, we provide a detailed analysis of behaviour of the deterministic kernel $\Theta_\infty^{(L)}$ as $L \rightarrow \infty$ . We observe that under the conditions of Jacot et al. (2018a) and with $L \in o(\min_{i=1, \dots, L-1} n_i)$ , a fully-connected ReLU neural network approaches a limiting solution for any $x$ given a fixed dataset $X$ . The studied kernel exhibits behaviour consistent with the ordered phase. In contrast to Xiao et al. (2020), we do not assume that the limiting
+
+{9}------------------------------------------------
+
+486
+487
+488
+489
+490
+491
+492
+493
+494
+495
+496
+497
+498
+499
+500
+501
+502
+503
+504
+505
+506
+507
+508
+509
+510
+511
+512
+513
+514
+515
+516
+517
+518
+519
+520
+521
+522
+523
+524
+525
+526
+527
+528
+529
+530
+531
+532
+533
+534
+535
+536
+537
+538
+539
+
+
+
+Figure 1: A 3x3 grid of plots showing convergence rates. The columns are labeled with different kernel expressions: \$\bar{\kappa}^{(l)}(XX^\top)\$, \$\bar{\kappa}^{(l)}(x^\top X^\top)\$, and \$\bar{\kappa}^{(l)}(x^\top X^\top)(\bar{\kappa}^{(l)}(XX^\top))^{-1}\$. The rows are labeled with different metrics: \$\Theta\_\infty^{(l)}\$, \$\rho^{(l)}\$, and \$\eta^{(l)}\$. The x-axis for all plots is \$L\$, ranging from 0 to 20. The y-axes vary: \$\Theta\_\infty^{(l)}\$ ranges from 0.50 to 1.00; \$\rho^{(l)}\$ ranges from 0.0 to 1.0; \$\eta^{(l)}\$ ranges from -0.25 to 1.0. Each plot shows multiple colored lines representing different \$\kappa\$ expressions, with most lines converging to a stable value as \$L\$ increases.
+
+Figure 1: Convergence rate of $\kappa$ on $X$ and point $x$ . We model 3 different expressions dependent on an arbitrary $\kappa$ in each column. The particular choice of $\kappa$ is given by each row (see label on the left).
+
+kernel can be written as the sum of a constant and a non-singular matrix. We generalize the existence of a limiting solution for $\kappa_\pi \kappa^{-1}$ to include the singular case. While our results are for data in $S^{n_0-1}$ , we can extend this result to the general domain as long as there is no colinearity, or by taking the stereographic projection in a space with one additional dimension. On the one hand, we have shown the convergence rates of a non-exhaustive list of kernels as depth $L$ increases. For the limiting kernels $\kappa^{(L)} = \Theta_\infty^{(L)}$ , we have observed that the convergence is extremely slow and would require very large $L$ before reaching the limit. On the other hand, small depths $L$ are required to approximate the limit of $\kappa_\pi \kappa^{-1}$ . Specifically, we demonstrate empirically that, while convergence for the limiting kernel is sublinear, the convergence for the limiting kernel is experimentally fast. We hypothesize that this will be the case in many scenarios. Studying the settings in which this is true is left as a future research direction. Finally, we provided a list of key properties that were necessary to obtain our results to generalize to other kernels.
+
+We believe that our work can help researchers to better understand the role of depth in the deterministic limiting kernels of overparameterized neural networks. Future research should envisage to better understand the behaviour of kernels that arise in the context of other architectures such as CNNs and architectures with skip connections. As mentioned, the setting of Hanin & Nica (2020) is outside the purview of our analysis as the stochasticity of the NTK becomes highly relevant when $L \gg \max_{l=1, \dots, L-1} n_l$ . Nevertheless, by using the analytical tools of rough differential equations, we raise the hypothesis that there might exist a “pointwise” limit to the NTK when $L \rightarrow \infty$ , where it is implied that the convergence is with respect to each sample path.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/9X2NfyZpR2.txt b/papers/9X2NfyZpR2.txt
new file mode 100644
index 0000000000000000000000000000000000000000..30f32b54e7decaaefd0e789aa22ec54acf5ce018
--- /dev/null
+++ b/papers/9X2NfyZpR2.txt
@@ -0,0 +1,357 @@
+
+
+{0}------------------------------------------------
+
+# LONG-TERM ACTION ANTICIPATION VIA TRANSCRIPT-BASED SUPERVISION
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Long-Term Anticipation (LTA) from video is a crucial task in computer vision, with significant implications for human-machine interaction, robotics, and beyond. However, to date, it has been tackled exclusively in a fully supervised manner, by relying on dense frame-level annotations that hinder scalability and limit real-world applicability. To address this limitation, we introduce TbLTA (Transcript-based LTA), the first weakly-supervised approach for LTA, which relies solely on video transcripts during training. This high-level semantic supervision provides the narrative temporal structure that can guide the model toward understanding the relationships between events over time. Our model is built on an encoder-decoder architecture, which is trained using dense pseudo-labels generated by a temporal alignment module to supervise the predictions of both the segmentation head and the anticipation decoder. In addition, the video transcript itself is also used for 1) enhancing video features by contextually grounding them through cross-modal attention, 2) supplying a more global supervision to the model action segmentation predictions over the full video, which in turn helps to provide a better contextualized representation to the anticipation decoder. Through experiments on the Breakfast, 50Salads, and EGTEA benchmarks, we demonstrate that transcript-based supervision offers a very robust and less costly alternative to its fully supervised counterpart for the LTA task 1.
+
+## 1 INTRODUCTION
+
+Understanding and anticipating human actions in videos is a fundamental capability for intelligent systems operating in dynamic environments (He et al., 2024; Dalal et al., 2025). In particular, the task of Long-Term Action Anticipation (LTA) aims to predict future actions several minutes ahead based on partial observations. Extracting meaningful information from such observations typically requires segmenting them into temporally aligned action labels, a task known as Temporal Action Segmentation (TAS).
+
+Recent approaches for both TAS and LTA have achieved substantial progress by leveraging dense annotations (Gong et al., 2022b; Abu Farha et al., 2018; Gong et al., 2024; Nawhal et al., 2022b; Zhong et al., 2023a; Huang et al., 2025; Lu & Elhamifar, 2024; Bahrami et al., 2023). However, highly granular labeling is costly and difficult to scale, especially for long and fine-grained activity sequences. While recent efforts in TAS have increasingly embraced weakly/unsupervised settings (Xu & Zheng, 2024; Zhang et al., 2023; Bueno-Benito & Dimiccoli, 2025; Xu & Gould, 2024; Spurio et al., 2024), LTA remains largely unexplored under weak / no supervision. The only attempt to address the annotation burden for LTA was proposed in Zhang et al. (2021). It combines a small set of fully labeled sequences with weak labels for the next action, using pseudo-label refinement to approximate future boundaries. Yet this approach still relies on temporally localized human annotations, which have a narrow focus on the present and lack a high-level temporal understanding.
+
+In this work, we propose **TbLTA**, the first weakly-supervised LTA model trained exclusively with *video transcripts*—an ordered action list, without timing or duration information—which are significantly cheaper to obtain with respect to dense annotations. Since LTA is about understanding the logical progression of steps within a larger activity being performed, transcripts, with the power of semantic abstraction, are specially suited to this task. In addition to the supervision provided by the transcripts themselves, we explicitly temporally align action labels with the video sequences
+
+1Code will be released in a *GitHub* repository upon acceptance.
+
+{1}------------------------------------------------
+
+
+
+Diagram of the TBLTA architecture. On the left, 'VIDEO FEATURES' (represented by a purple bar) and 'VIDEO TRANSCRIPT' (containing text like 'add\_vinegar - add\_oil - add\_pepper - add\_salt') are input. The transcript is processed into a 'text embedding' (dashed orange line). Both features and the embedding are fed into 'TEMPORAL ALIGNMENT' (purple box) and 'MULTIMODAL CROSS ATTENTION' (orange box). These modules output 'PSEUDO-LABELS' (a green box containing a grid of action labels like 'add\_vin', 'add\_pep', 'add\_salt'). These pseudo-labels are used for supervision by 'TAS' (Temporal Action Segmentation) and 'LTA' (Long-Term Anticipation) modules. A 'global guidance' arrow points from the pseudo-labels back to the cross-attention module.
+
+Figure 1: Given video features and transcripts, TBLTA aligns the transcript to the video through a temporal alignment module, producing frame-level pseudo-labels for supervision. During training, the transcript further provides global guidance via a dedicated loss and enriches video features through cross-modal attention, enabling dense anticipation without frame-level annotations.
+
+through a dedicated temporal alignment module, and we use the generated pseudolabels for frame-level supervision (see Figure 1). Furthermore, we leverage the transcripts to enrich video features by contextually grounding them with verbs and objects appearing on it through a cross-modal attention layer. Finally, following previous work Gong et al. (2024), we segment the full video during training instead of just the observation interval, to ensure that the decoder can learn long-range temporal dependencies occurring after the observation ends. Our main contributions are:
+
+- We propose for the first time to train a model for LTA by using only video transcripts without boundary annotations as supervision.
+- We introduce **TBLTA**, a novel encoder-decoder architecture for LTA transcript-based supervision, where the encoder learns to capture fine-grained long-range temporal relations between all frames of the video, and the decoder learns to capture global relations occurring after the observation ends, along with the observed features from the encoder.
+- We propose to temporally align video transcripts to frame-level features and leverage the estimated pseudo-labels for supervising both segmentation and anticipation.
+- We leverage transcripts not only as weak supervision, but also as semantic context to enrich video features through a dedicated cross-modal attention.
+- We establish the first transcript-only supervision baseline for LTA on Breakfast (Kuehne et al., 2014), 50Salads (Stein & McKenna, 2013), and EGTEA (Li et al., 2018), showing that weak supervision can yield competitive long-horizon anticipation.
+
+## 2 RELATED WORK
+
+**Temporal Action Segmentation (TAS)** aims to assign an action label to every frame of long, untrimmed videos, producing coherent segments with accurate boundaries. Approaches are typically grouped by supervision level. Fully supervised methods achieve the most reliable performance but require dense frame-level annotations (Liu et al., 2023; Huang et al., 2025; Bahrami et al., 2023; Behrmann et al., 2022; Aziere et al., 2025). To improve generalization and scalability, recent research has shifted toward semi/weakly-supervised (Xu & Zheng, 2024; Zhang et al., 2023) and unsupervised paradigms (Li et al., 2024; Xu & Gould, 2024; Spurio et al., 2024), which reduce reliance on exhaustive annotations while maintaining competitive accuracy. Advances include weakly-supervised methods that mitigate noisy boundaries using transcript-level supervision and video-level regularization (Xu & Zheng, 2024), and unsupervised approaches such as CLOT (Bueno-Benito & Dimiccoli, 2025), which introduces an OT-based framework with multi-level cyclic feature learning to enforce segment-level consistency and improve generalization.
+
+**Action Anticipation** has been widely studied under different conditions, varying in observable inputs, temporal horizons, and action granularity. The goal is to infer future actions from observed video data, with existing works addressing this through diverse formulations such as predicting the next action and its start time (Zhong et al., 2023a; Thakur et al., 2024; Zhang et al., 2024a), inferring the final goal (Wang et al., 2023), or planning procedural steps (Surfs et al., 2021). Based on the prediction horizon (Zhong et al., 2023b), methods are broadly divided into short-term and long-term anticipation. Short-term approaches focus on predicting actions a few seconds ahead using low-level cues (Guo et al., 2024; Diko et al., 2024), whereas *long-term anticipation* (LTA) forecasts sequences of actions over extended horizons, facing challenges such as long-range dependency modeling, autoregressive error accumulation, and the uncertainty of plausible futures (Lai et al., 2024).
+
+{2}------------------------------------------------
+
+108 **Long-term Action Anticipation (LTA)** focuses on forecasting sequences of future actions over extended temporal horizons, has seen rapid progress across a variety of modeling paradigms. Early
+109 works framed LTA as a duration-agnostic transcript prediction problem, often adopting transformer-
+110 based architectures (Nawhal et al., 2022b). More recent approaches have incorporated object-centric
+111 representations (Zhang et al., 2024b), integrated large language and video-language models (Zhao
+112 et al., 2024; Mittal et al., 2024). In particular, Kim et al. (2024) explored language-based anticip-
+113 ation without explicit time annotations, using a vision-language model with in-context learning
+114 and MMR to predict symbolic sequences of future actions. Within this landscape, we focus on the
+115 task of *dense long-term action anticipation*, where the aim is to generate frame-level forecasts
+116 of future actions for a predefined number of upcoming frames. The task of dense anticipation was
+117 first introduced by Abu Farha et al. (2018) and propose two models (RNN and CNN), Abu Farha &
+118 Gall (2019) introduces a GRU network to model the uncertainty of future activities in an autoregres-
+119 sive way, and Sener et al. (2020) proposes TempAgg, an end-to-end model, employing the action
+120 segmentation model for visual features in training with cycle consistency between past and future
+121 actions. Abu Farha et al. (2020a) suggests a multi-scale temporal aggregation model that pools past
+122 visual features in condensed vectors and then iteratively predicts future actions using the LSTM net-
+123 work. More recent contributions can be broadly divided into *deterministic* approaches, which output
+124 a single most likely future, and *stochastic* approaches, which explicitly model uncertainty by gen-
+125 erating multiple plausible futures. Deterministic models include FUTR (Gong et al., 2022b), which
+126 anticipates all future actions in parallel from fine-grained past features, and ANTICIPATR (Nawhal
+127 et al., 2022b) which uses a two-stage training pipeline. On the other hand, stochastic methods have
+128 leveraged diffusion-based generative modeling (Zatsarynna et al., 2024; 2025), producing diverse
+129 yet consistent future sequences. A notable extension is Actfusion (Gong et al., 2024), which unifies
+130 TAS and LTA into a diffusion-based framework.
+
+131 Despite these advances, most dense anticipation methods still depend on costly frame-level annotations.
+132 Zhang et al. (2021) took a step forward by exploring a method both semi- and weakly-
+133 supervised for dense LTA, where a small set of fully-labelled data together with weak labels is used
+134 for supervision. In the weakly annotated part of the data, the video segment is annotated only with
+135 the first action class of the anticipated sequence, instead of all frames in the sequence. In contrast,
+136 we completely eliminate dense annotations and propose **TbLTA**, the first fully weakly-supervised
+137 framework for dense LTA, trained exclusively from transcripts (ordered action lists without timing
+138 or duration), thereby avoiding expensive boundary labels.
+
+139 **Sequence-to-sequence modeling in video understanding.** A substantial body of prior work ad-
+140 dresses sequence-to-sequence alignment between video frames and action transcripts through the
+141 use of structured objectives. Classical approaches include Hidden Markov Models (HMMs) with
+142 Viterbi decoding, originally inspired by speech recognition, to capture action-frame transitions under
+143 weak supervision (Kuehne et al., 2016). Similarly, Dynamic Time Warping (DTW) has long
+144 been applied for temporal alignment and was recently revisited in a differentiable form to enable
+145 end-to-end optimization (Chang et al., 2021). The Connectionist Temporal Classification (CTC)
+146 loss (Graves, 2012) has been extensively adopted in sequence-to-sequence learning, particularly
+147 when frame-level annotations are unavailable. Its application to weakly-supervised action segmen-
+148 tation was pioneered by Huang et al. (2016), who proposed ECTC to enforce alignments consistent
+149 with visual similarities. Building on this, Ng & Fernando (2021) combined CTC with attention to
+150 better exploit transcript-level supervision. While these works primarily target segmentation, we ex-
+151 tend the use of CTC-style objectives to the task of *dense long-term anticipation*, demonstrating that
+152 transcript-only supervision can drive frame-level forecasting without costly boundary annotations.
+153 In parallel, Conditional Random Fields (CRFs) further extended these ideas by modeling richer
+154 temporal dependencies in sequence prediction (Huang et al., 2015; Mavroudi et al., 2018). More
+155 recently, Maté & Dimecicoli (2024) introduced a CRF formulation specifically for long-term anticip-
+156 ation (LTA). While their approach is deterministic, we propose a stochastic variant that explicitly
+157 captures the uncertainty inherent in LTA predictions.
+
+## 3 METHODOLOGY
+
+### Problem Definition.
+
+160 We address the task of dense long-term action anticipation under weak supervision, where training
+161 relies solely on transcripts that always refer to an action-sequence transcript, i.e., an ordered list of
+162 action labels, without providing frame-level temporal annotations, boundaries, or durations.
+
+{3}------------------------------------------------
+
+
+
+Figure 2: Overview of the proposed TbLTA framework. The diagram is split into two main sections: Training and Inference. In the Training section, video features X are split into observed (X\_obs) and predicted (X\_pred) parts. X\_obs is processed by a Transformer Encoder and a TAS Head to produce Y\_TAS. X\_pred is processed by a Temporal Alignment module and an Anticipation Decoder to produce Y\_pred. A Video Transcript is used to generate pseudo-labels. In the Inference section, only X\_obs is processed by the Transformer Encoder and TAS Head to produce Y\_TAS, while the Anticipation Decoder produces Y\_LTA.
+
+Figure 2: **Overview of the proposed TbLTA framework.** During training, the model takes as input video features and the corresponding video transcript ( $X = [X_{obs}, X_{pred}], \mathcal{Y}$ ), and generates dense pseudo-labels for the full video $\hat{Y} = [\hat{Y}_{obs}, \hat{Y}_{pred}]$ . These pseudo-labels are used: 1) to supervise the prediction of action segmentation labels $\hat{Y}_{TAS}$ on the full video and of action anticipation labels $\hat{Y}_{LTA}$ in the anticipation interval through multiple cross-entropy losses; 2) to build an attention mask for cross-modal attention, ensuring that text embeddings attends only to the most aligned video segments rather than the entire sequence, with the goal of contextually grounding video features. The video transcript is also used to supervise globally the TAS predictions through a CTC loss $\mathcal{L}_{ctc}$ .
+
+Formally, a video is represented as a sequence of $T$ frames with associated feature vectors $X = \{x_1, x_2, \dots, x_T\} \in \mathbb{R}^{T \times d}$ , where $x_t \in \mathbb{R}^d$ denotes the feature vector extracted from $t$ -th frame and $d$ dimension of embedding. Let $\alpha, \beta \in (0, 1)$ with $\alpha + \beta \leq 1$ . The observed temporal features are $X_{obs} = \{x_1, \dots, x_{\lfloor \alpha T \rfloor}\}$ and $X_{pred} = \{x_{\lfloor \alpha T \rfloor + 1}, \dots, x_{\lfloor (\alpha + \beta) T \rfloor}\}$ , with lengths $T_{obs} = \lfloor \alpha T \rfloor$ and $T_{pred} = \lfloor \beta T \rfloor$ . Each video is annotated with a transcript $\mathcal{Y} = [y_1, \dots, y_N]$ , where $y_n \in \mathcal{C}$ , $\mathcal{C}$ is the action vocabulary, and $N$ is the number of action segments in the video.
+
+In a weakly-supervised setting, $\mathcal{Y}$ and $X$ are not temporally aligned. To address this, we introduce a set of learnable class tokens $E \in \mathbb{R}^{|\mathcal{C}| \times d}$ , which serve as latent action prototypes. During training, the input to the model is the concatenation of video features and class tokens, i.e. $[E \| X]$ , allowing the encoder to jointly reason over visual evidence and class-level priors. At inference, only $[E \| X_{obs}]$ is provided. The objective is twofold: (1) during training, by using $[E \| X]$ and the transcript $\mathcal{Y}$ , the model must align the continuous feature sequence with the discrete ordered list of actions, and generate frame-level pseudo-labels $\hat{Y} = [\hat{Y}_{obs}, \hat{Y}_{pred}]$ for the full video. These pseudo-labels supervise the TAS head and the LTA decoder on the future interval; (2) At inference, given only the observed features $X_{obs}$ and learned class token $E$ , the model predicts the sequence of future actions $\hat{Y}_{LTA} = [\hat{y}_{k+1}, \dots, \hat{y}_N]$ and their durations $D = [d_{k+1}, \dots, d_N] \in \mathbb{R}^{N-k^*}$ , with $\sum_{j=k+1}^N d_j = 1$ following Abu Farha et al. (2018), where $k^*$ denotes the (unknown) boundary index between observed and future actions. Since $k^*$ is not observed, the model must implicitly estimate both the boundary and the corresponding observed pseudo-labels $\hat{Y}_{obs} = [\hat{y}_1, \dots, \hat{y}_{k^*}]$ by temporal alignment. Thus, the task is to learn a parametric function $f_\theta : \mathbb{R}^{T_{obs} \times d} \rightarrow (\hat{Y}_{LTA}, \hat{D})$ that, given observed features, anticipates future actions and their durations while jointly inferring actions and their boundaries under weak supervision.
+
+### 3.1 MODEL ARCHITECTURE
+
+We propose **TbLTA**, illustrated in Fig.2, a modular transformer-based architecture designed for the LTA task and trained exclusively via video transcripts. The architecture consists of a transformer encoder, a weakly-supervised temporal alignment module, a cross-attention layer between video and transcript, a segmentation head, and an anticipation decoder.
+
+**Transformer encoder.** The input video features $X$ are first projected to the model dimension and concatenated with a set of learnable class tokens $E$ , which act as latent action prototypes. The resulting sequence is processed by a temporal network. Following prior work, we adopt a transformer encoder with learnable positional embeddings and a pyramid hierarchical local attention mechanism (Vaswani et al., 2017). To enable the decoder to acquire a comprehensive representation of the future’s temporal structure, the encoder is trained over the entire video sequence. This design explicitly links the encoder’s outputs to future actions, thereby strengthening the connection between past observations and anticipated events.
+
+{4}------------------------------------------------
+
+**Weakly-supervised temporal alignment module.** In the absence of frame-level annotations, our framework introduces an intermediate weakly-supervised temporal alignment stage to bridge the gap between symbolic transcripts and frame-level features. In practice, we adopt the ATBA module proposed in (Xu & Zheng, 2024) to partition the full transcript $\mathcal{Y}$ into observed and future sub-transcripts, $\mathcal{Y}_{obs}$ and $\mathcal{Y}_{future}$ , corresponding to the observed and anticipated portions of the video. The advantage of ATBA is that it generates soft per-frame pseudo-labels that preserve boundary uncertainty, crucial for long-horizon anticipation, where hard labels are often unreliable near transitions. Jointly with the generated pseudo-labels $\hat{\mathcal{Y}}$ , the temporal alignment module also contributes to learn a new encoding for the initial features that are more suited for the task of action anticipation.
+
+**Segmentation head.** For the full video features $X$ , a linear classifier predicts frame-level logits $\mathcal{Y}_{TAS}$ . This module also stabilizes encoder representations for downstream anticipation.
+
+**Cross-attention layer between modalities.** Transcripts are typically exploited only as sequence-level ordering constraints. In contrast, we explicitly couple them with video features through a *local cross-modal mechanism*. Let $A = [a_1, \dots, a_N] \in \mathbb{R}^{N \times d}$ denote transcript embeddings, where each $a_i$ is obtained from a pre-trained language model applied to the natural-language action label (Sanh et al., 2019). Given encoder features $\hat{X} \in \mathbb{R}^{T \times d}$ and pseudo-labels $\hat{\mathcal{Y}}$ , we construct a binary local mask $M \in \{0, 1\}^{N \times T}$ that restricts each action $a_i$ to a temporal neighborhood around its predicted occurrence. Cross-attention is then defined as
+
+$$A \leftarrow \text{softmax} \left( \frac{AW_Q(\hat{X}W_K)^T}{\sqrt{d}} + \log M \right) \hat{X}W_V, \quad (1)$$
+
+and injected back into the video stream via a gated residual update
+
+$$\hat{X} \leftarrow \hat{X} + (M^T \odot \sigma(AW_g)) A, \quad (2)$$
+
+where $\sigma$ denotes a sigmoid gate. Here, $W_Q, W_K, W_V \in \mathbb{R}^{d \times d}$ are standard query, key, and value projection matrices, and $W_g \in \mathbb{R}^{d \times 1}$ is a gating projection. The enriched features $\hat{X}$ , contextually grounded by the actions and objects described in the transcript, are then used for both TAS and LTA.
+
+**Anticipation decoder.** Building upon these representations, we design a transformer-based parallel decoder adapted from Gong et al. (2022a) and Nawhal et al. (2022a), that operates on the fused encoder output, defined as $\tilde{F} \in \mathbb{R}^{T_{obs} \times d_{TAS}}$ . This fused output is projected into the anticipation space and enriched with learnable positional embeddings, while a fixed set of queries $Q \in \mathbb{R}^{C_{LTA} \times d_{LTA}}$ attends to $\tilde{F}$ through cross-attention to hypothesize possible future action segments. The resulting descriptors $S$ are decoded to $\mathcal{C} \subseteq \mathcal{C}_{LTA}$ action classes terminating when an $\langle \text{EOS} \rangle$ token is generated, treating anticipation as structured prediction. To further promote coherence, we apply a Conditional Random Field (CRF), inspired by TCCA (Maté & Damiccoli, 2024), on top of the decoder outputs: while the transformer effectively captures global context, it may produce fragmented or inconsistent transitions. The CRF refines these predictions by modeling local dependencies between consecutive tokens, enforcing smooth and semantically valid action progressions across the anticipation timeline. Unlike prior approaches, our decoder leverages *weakly-supervised pseudo-labels* to guide training, making anticipation feasible without dense frame-level annotations.
+
+### 3.2 TBLTA OBJECTIVE
+
+Learning under transcript-level supervision poses a particularly challenging problem, as the model must jointly infer action boundaries and their durations in the observable part, and future continuations without access to frame-level annotations. In this context, the choice of loss functions becomes a central mechanism that enables effective training. The TBLTA framework is optimized through three complementary groups of losses: (i) *alignment-oriented losses*, which establish reliable alignments between transcripts and observed features; (ii) *segmentation-oriented losses* which ensure learning long-range temporal dependencies over the full video, and (iii) *anticipation-oriented losses*, which directly supervise the prediction of future sequences; The total objective is formulated as:
+
+$$\mathcal{L} = \mathcal{L}_A + \mathcal{L}_{TAS} + \mathcal{L}_{LTA}, \quad (3)$$
+
+where $\mathcal{L}_A$ aligns the transcripts, $\mathcal{L}_{TAS}$ makes transcripts actionable on the video and $\mathcal{L}_{LTA}$ enforces long-horizon structure on the future.
+
+{5}------------------------------------------------
+
+#### 3.2.1 ALIGNMENT-ORIENTED LOSSES
+
+We adopt an ATBA-style (Xu & Zheng, 2024) surrogate to obtain frame-wise pseudo-labels by aligning predictions to the observed transcript via dynamic programming over candidate boundaries. On top of these pseudo-labels, we apply a compact set of regularizers that proved crucial for stable training: (1) *Frame-wise cross-entropy* supervises per-frame predictions with ATBA pseudo-labels, (2) *Video-level multi-label classification* mitigates pseudo-label noise by supervising class presence at the clip level, and (3) *Global-local contrast* aligns class tokens with class-specific feature centroids to tighten semantics. We denote the weighted sum of these terms as $\mathcal{L}_{\text{atba}}$ , and the total loss is defined as $\mathcal{L}_A = \gamma_1 \mathcal{L}_{\text{atba}}$ . More details in the supplementary material.
+
+#### 3.2.2 SEGMENTATION-ORIENTED LOSSES
+
+The Connectionist Temporal Classification (CTC) loss (Graves, 2012) was originally introduced for sequence labeling tasks where the alignment between input frames and target labels is unknown. Unlike hybrid approaches requiring Hidden Markov models, CTC enables end-to-end alignment by marginalizing over all possible frame-to-label paths that collapse to the transcript. This property makes it particularly suitable for weakly-supervised action learning, where only transcript-level annotations are available. By allowing flexible alignments between the transcript and the predicted action probabilities, CTC provides robust supervision for both the TAS head and the anticipation decoder, accommodating variable action durations without boundary annotations.
+
+Formally, let $\mathcal{Y}$ denote the action transcript. We define the predicted action probabilities from the segmentation head as $\pi = [\pi_1, \dots, \pi_{\alpha T}]$ , with $\pi_t \in \mathcal{C} \cup \{\emptyset\}$ , where $\emptyset$ denotes the blank label. The collapsing operator $\mathcal{B}(\pi)$ removes blanks and repeated labels to map a path $\pi$ into a valid transcript. The CTC objective that enforces transcript consistency is formulated as:
+
+$$\mathcal{L}_{\text{CTC}} = -\log P(\mathcal{Y} | \pi), \quad \text{where } P(\mathcal{Y} | X) = \sum_{\pi \in \mathcal{B}^{-1}(\mathcal{Y})} \prod_{t=1}^T P(\pi_t | x_t). \quad (4)$$
+
+is the probability of generating transcript $\mathcal{Y}$ given a sequence of probability predictions. Here, $P(\pi_t | x_t)$ denotes the probability assigned to label $\pi_t$ at frame $t$ . This alignment anchors the model by ensuring that the TAS heads remain consistent with the same transcript. As a result, the observed segment provides stable frame-level supervision, while the anticipated segment is constrained to follow the correct symbolic sequence. By marginalizing over all possible alignments, CTC removes the need for boundary annotations, prevents error propagation across modules, and becomes a supervisory signal that makes weakly-supervised long-term action anticipation feasible. We defined the $\mathcal{L}_{\text{TAS}} = \gamma_2 \mathcal{L}_{\text{CTC}}$ .
+
+#### 3.2.3 ANTICIPATION-ORIENTED LOSSES
+
+The total anticipation loss is a weighted combination of a global action sequence coherence loss ( $\mathcal{L}_{\text{cfrf}}$ ) and a duration loss ( $\mathcal{L}_{\text{dur}}$ ): $\mathcal{L}_{\text{LTA}} = \mathcal{L}_{\text{cfrf}} + \gamma_3 \mathcal{L}_{\text{dur}}$ .
+
+**Global action sequence coherence loss.** To promote temporally coherent forecasts, we place a linear-chain CRF on top of the anticipation decoder logits. Let the decoder output emission scores $Z \in \mathbb{R}^{T_{\text{pred}} \times |\mathcal{C}|}$ , and let $\mathcal{Y}_{\text{LTA}}$ the target anticipate transcript. For a candidate sequence $c = (c_1, \dots, c_{T_{\text{pred}}})$ , the CRF score is
+
+$$s(Z, c) = \sum_{t=1}^{T_{\text{pred}}} Z_{t, c_t} + \sum_{t=1}^{T_{\text{pred}}-1} M_{c_t, c_{t+1}}, \quad (5)$$
+
+where $M$ is a learnable transition matrix. The training objective is the negative log-likelihood of the ground-truth anticipation sequence:
+
+$$\mathcal{L}_{\text{cfrf}} = -\log p(\mathcal{Y}_{\text{LTA}} | Z) = \log \sum_{c' \in \mathcal{C}^{T_{\text{pred}}}} e^{s(Z, c')} - s(Z, \mathcal{Y}_{\text{LTA}}). \quad (6)$$
+
+This loss enforces global sequence-level consistency and complements CTC, which ensures alignment at the frame level.
+
+{6}------------------------------------------------
+
+**Affinity-based duration loss** Inspired by the affinity property of procedural videos, firstly introduced in Ding & Yao (2022), following which videos depicting the same activity share resembling action temporal portions, we propose a duration prediction head that is trained without any temporal ground truth. During training, we compute per-class duration estimates from the observed segments by counting the frequency of predicted labels from the segmentation head. These estimates are stored in a momentum-based buffer $\hat{d} \in \mathbb{R}^{|C|}$ that captures temporal priors in a self-supervised fashion. During inference, the decoder outputs the predicted class probabilities, and the class duration priors $\hat{d}$ are concatenated and passed to a regression head to obtain a per-segment predicted duration $\hat{\delta}_i$ . The self-supervised duration loss is formulated as:
+
+$$\mathcal{L}_{\text{dur}} = \frac{1}{T_{\text{pred}}} \sum_{t=1}^{T_{\text{pred}}} (\hat{\delta}_i - \hat{d}_{y_i})^2, \quad (7)$$
+
+where $\hat{\delta}_i$ is the per-segment predicted duration and the ground truth target is approximated by the class-wise prior $\hat{d}_{y_i}$ . This term encourages consistent duration estimates aligned with implicitly learned temporal statistics.
+
+## 4 EXPERIMENTS
+
+### 4.1 EXPERIMENTAL SETUP
+
+**Datasets.** We evaluate our approach on two widely used benchmarks for long-term action anticipation. The *Breakfast* dataset (Kuehne et al., 2014) comprises 1,712 videos of 52 participants performing breakfast-related activities in diverse kitchen environments. Each video is annotated at two levels: 10 coarse activities and 48 fine-grained action classes. The average duration is 2.3 minutes, and the dataset exhibits a highly imbalanced action distribution (Ding & Yao, 2022). The *50Salads* dataset (Stein & McKenna, 2013) consists of 50 top-view RGB-D recordings of individuals preparing mixed salads, totaling over 4 hours of annotated footage and covering 17 fine-grained action classes. Compared to *Breakfast*, the videos are longer and typically contain around 20 action instances. The *EGTEA Gaze+* dataset (Li et al., 2018) comprises 28 hours of egocentric video with 10.3K annotated action instances, spanning 19 verbs, 51 nouns, and 106 distinct verb-noun action classes. For all datasets, we used pre-extracted 2048-dimensional I3D features (Carreira & Zisserman, 2018) as visual input $X$ .
+
+**Metrics.** For *Breakfast* and *50Salads*, we report Mean over Classes (MoC) accuracy, which computes frame-wise accuracy per class and averages across classes (Abu Farha et al., 2018). Anticipation is evaluated at different horizons: the model observes an initial portion of the video ( $\alpha = 20\%$ or $30\%$ ) and predicts the next $\beta = 10\%, 20\%, 30\%$ , or $50\%$ of the sequence. Results are averaged over four standard splits for *Breakfast* and five for *50Salads*. For *EGTEA Gaze+*, we adopt mean Average Precision (mAP) following the multi-label classification protocol of Nagarajan et al. (2020), where $\alpha \in 25\%, 50\%, 75\%$ of each video is observed and the remaining segment $(100\% - \alpha)$ is predicted. We report mAP over all actions (All), low-shot (Rare), and many-shot (Freq) classes, restricting evaluation to verb prediction.
+
+**Implementation details** The overall architecture is illustrated in Fig. 2. The transformer encoder used for the *Breakfast* dataset employs 4 layers, a hidden dimension of 128, and 4 attention heads. For the *50Salads* dataset, we use a hidden dimension of 512, with 4 attention heads and 8 Transformer layers. For the text embeddings, we employ a simple pretrained model such as DistilBERT (Sanh et al., 2019). The LTA decoder employs a hidden dimension of 128 for *Breakfast* and 256 for *50Salads*, using 2 and 3 Transformer layers, respectively. The CRF module adopts the same configuration as in (Maté & Dimecicoli, 2024). The number of learned queries is set to 8 for *Breakfast* and 20 for *50Salads*. For *EGTEA Gaze+*, we apply the same configuration as *50Salads*.
+
+**Training and Inference.** Since pseudo-labeling requires a reliable initialization, we adopt a progressive training scheme. The model is first pre-trained for 10 epochs using only the video-level classification loss $\mathcal{L}_{\text{vid}}$ , which enhances pseudo-label quality and yields a stable starting point. We then run a short stage of 30 epochs with segmentation- and alignment-oriented losses ( $\mathcal{L}_A + \mathcal{L}_{\text{TAS}}$ ) to refine temporal structure. Finally, end-to-end optimization is performed with the complete set of losses in Eq. 3. At the beginning of each stage, both optimizer state and learning-rate schedule are re-initialized to secure stable convergence. During training, the segmentation head processes the full
+
+{7}------------------------------------------------
+
+| Dataset | Category | Method | Obs 20% | | | | Obs 30% | | | | Avg. |
+|-|-|-|-|-|-|-|-|-|-|-|-|
+| | | | 10% | 20% | 30% | 50% | 10% | 20% | 30% | 50% | |
+| 50Salads | Supervised | Cycle Cons. Abu Farha et al. (2020b) | 34.76 | 28.41 | 21.82 | 15.25 | 34.39 | 23.70 | 18.95 | 15.89 | 24.15 |
+| | | FUTR Gong et al. (2022b) | 39.55 | 27.54 | 23.32 | 17.77 | 35.15 | 24.85 | 24.22 | 15.26 | 25.96 |
+| | | ObjectPrompt Zhang et al. (2024c) | 37.40 | 28.90 | 24.20 | 18.10 | 28.00 | 24.00 | 24.30 | 19.30 | 25.53 |
+| | | ActFusion Guo et al. (2024) | 39.55 | 28.60 | 23.61 | 19.90 | 42.80 | 27.11 | 23.48 | 22.07 | 28.39 |
+| | Weakly supervised | WS-DA † Zhang et al. (2021) | - | - | - | - | 21.30 | - | - | - | - |
+| | | Ours (TbLTA) | 24.90 | 21.12 | 19.00 | 14.45 | 27.67 | 25.32 | 20.27 | 14.65 | 20.92 |
+| | | Ours (TbLTA)* - Mean | 26.01 | 17.68 | 15.04 | 14.87 | 25.93 | 22.17 | 17.57 | 13.68 | 19.11 |
+| | | Ours (TbLTA)* - Top1 | 33.76 | 27.85 | 25.00 | 22.16 | 34.49 | 33.29 | 29.35 | 22.18 | 28.51 |
+| Breakfast | Supervised | Cycle Cons. Abu Farha et al. (2020b) | 25.88 | 23.42 | 22.42 | 21.54 | 29.66 | 27.37 | 25.58 | 25.20 | 25.13 |
+| | | FUTR Gong et al. (2022b) | 27.70 | 24.55 | 22.83 | 22.04 | 32.37 | 29.88 | 27.49 | 25.87 | 26.59 |
+| | | ActFusion Guo et al. (2024) | 28.25 | 25.52 | 24.66 | 23.25 | 35.79 | 31.76 | 29.64 | 28.78 | 28.45 |
+| | | WS-DA † Zhang et al. (2021) | - | - | - | - | 15.65 | - | - | - | - |
+| | Weakly supervised | Ours (TbLTA) | 27.47 | 26.21 | 21.62 | 20.53 | 40.28 | 35.76 | 31.67 | 28.79 | 29.03 |
+| | | Ours (TbLTA)* - Mean | 28.92 | 25.63 | 24.61 | 21.80 | 38.38 | 35.06 | 31.89 | 28.67 | 29.37 |
+| | | Ours (TbLTA)* - Top1 | 37.18 | 32.92 | 31.66 | 30.45 | 45.72 | 41.92 | 39.06 | 38.27 | 37.15 |
+
+Table 1: Comparisons of action anticipation on the Breakfast (Kuehne et al., 2014) and 50Salads (Stein & McKenna, 2013) benchmarks using our proposed models. The highest accuracy under a deterministic framework is indicated in **bold**, and the second highest is underlined. The highest accuracy under a probabilistic framework is indicated in *gray*. WS-DA† (Zhang et al., 2021) operates under a (semi-) weakly supervised setting, using frame-level labels only for the observed segment of the video during training. \* means stochastic protocol.
+
+video, while at inference, only a fraction is observed, following the protocol of Gong et al. (2024). We also report the stochastic protocol of Abu Farha & Gall (2019) in the supp. mat.
+
+### 4.2 COMPARATIVE RESULTS
+
+To assess the effectiveness of TbLTA, we follow the protocol established in previous work (Farha & Gall, 2019; Sener et al., 2020; Gong et al., 2022b; 2024); we report comparative results on 50Salads and Breakfast datasets in Tab. 1 and additionally on EGTEA in Tab. 2. TbLTA consistently surpasses prior (semi-) weakly-supervised baselines of (Zhang et al., 2021), establishing the first transcript-only benchmark for dense LTA. Remarkably, despite the absence of frame-level supervision, our deterministic model attains performance competitive with, and occasionally superior to, fully supervised approaches. On Breakfast, TbLTA exhibits a pronounced gain at 30% observation, outperforming all supervised baselines. This result highlights the ability of transcript-based supervision to capture the procedural regularities of activities. Performance on 50Salads paints a complementary picture. Here, long videos, denser action distributions, and frequent transitions yield weaker temporal regularities, amplifying the impact of imprecise temporal alignment in the absence of boundary annotations. In addition, we also report stochastic results, where TbLTA achieves substantially higher accuracy by capturing multiple plausible futures. This dual view, deterministic for reproducibility and stochastic for diversity, illustrates both the flexibility and the limits of our approach. Tab. 2 evaluates TbLTA on EGTEA, where supervised models retain a clear edge overall, but our method proves to be competitive on rare classes. This suggests that high-level semantic supervision from transcripts can mitigate data imbalance, even without dense frame labels. Taken together, these results highlight our central contribution: TbLTA is the first framework to make dense long-term anticipation feasible with transcript supervision alone. While fully-supervised models still dominate the paradigm, TbLTA demonstrates that transcript-based supervision is a promising paradigm for more scalable and language-informed LTA.
+
+### 4.3 ABLATION STUDY
+
+All ablations are conducted on both Breakfast and 50Salads, and we report results using the Top-1 MoC metric. For clarity, we adopt this choice Top-1 MoC for ablations as it provides a stable reference point.
+
+**Effect of CTC loss.** Removing the CTC supervision consistently degrades the quality, as shown in 3. On 50Salads, the average accuracy drops by $\approx 0.6$ points, while on Breakfast, the decline is $\approx 0.8$ points. This confirms that CTC helps to stabilize pseudo-labels and prevent error accumulation across tasks. Without this alignment, pseudo-label noise propagates more strongly into the anticipation stage.
+
+**Effect of Multimodal Cross-Attention.** We contrast our multimodal cross-attention with two baselines: (i) cross-att simplex, which embeds the transcript and applies a single, unconstrained cross-attention to video features, and (ii) w/o cross-att, which removes cross-modal conditioning. Results in Table 3 (IAS) and Table 4 (LTA) show a consistent hierarchy: *w/o cross-att* < *cross-att simplex* < **TbLTA**. On 50Salads, the average score decreases by $\approx 1.3$ points ( $\approx 0.8$ with cross attention simplex), while on Breakfast, the drop reaches $\approx 5.7$ points ( $\approx 3.8$ with cross attention
+
+{8}------------------------------------------------
+
+| Model | All | Freq | Rare |
+|-|-|-|-|
+| Timeception (Hussein et al., 2019) | 74.10 | 79.70 | 59.70 |
+| Anticipatr (Nawhal et al., 2022b) | 76.80 | 83.30 | 55.10 |
+| TbLTA | 65.37 | 73.46 | 60.11 |
+
+Table 2: TbLTA results in EGTEA compared to supervised models.
+
+| Dataset | Model | Obs 20% | | | | Obs 30% | | | | Avg. |
+|-|-|-|-|-|-|-|-|-|-|-|
+| | | 10% | 20% | 30% | 50% | 10% | 20% | 30% | 50% | |
+| 50Salads | TbLTA | 33.8 | 27.9 | 25.0 | 22.1 | 34.5 | 33.3 | 29.4 | 22.2 | 28.5 |
+| | w/o duration | 31.1 | 29.2 | 24.7 | 20.2 | 38.2 | 33.8 | 29.2 | 19.8 | 26.3 |
+| | w/o cross-att | 30.2 | 28.2 | 25.0 | 20.7 | 33.2 | 32.2 | 28.8 | 19.5 | 27.2 |
+| Breakfast | w/o CRF | 26.4 | 26.2 | 21.0 | 16.0 | 35.8 | 25.7 | 21.1 | 15.3 | 23.2 |
+| | TbLTA | 37.2 | 33.0 | 31.7 | 30.5 | 45.7 | 41.9 | 39.1 | 38.3 | 37.2 |
+| | w/o duration | 34.1 | 30.4 | 27.6 | 22.5 | 46.6 | 41.7 | 37.1 | 30.8 | 33.9 |
+| | w/o cross-att | 31.7 | 27.5 | 25.8 | 24.8 | 39.9 | 35.5 | 33.1 | 33.6 | 31.5 |
+| | w/o CRF | 39.7 | 33.1 | 28.1 | 20.0 | 47.2 | 40.2 | 32.9 | 22.9 | 33.0 |
+
+| Dataset | Model | Obs 20% | | | | Obs 30% | | | | Avg. |
+|-|-|-|-|-|-|-|-|-|-|-|
+| | | 10% | 20% | 30% | 50% | 10% | 20% | 30% | 50% | |
+| 50Salads | TbLTA | 33.8 | 27.9 | 25.0 | 22.1 | 34.5 | 33.3 | 29.4 | 22.2 | 28.5 |
+| | w/o duration | 31.1 | 29.2 | 24.7 | 20.2 | 38.2 | 33.8 | 29.2 | 19.8 | 26.3 |
+| | w/o cross-att | 30.2 | 28.2 | 25.0 | 20.7 | 33.2 | 32.2 | 28.8 | 19.5 | 27.2 |
+| Breakfast | w/o CRF | 26.4 | 26.2 | 21.0 | 16.0 | 35.8 | 25.7 | 21.1 | 15.3 | 23.2 |
+| | TbLTA | 37.2 | 33.0 | 31.7 | 30.5 | 45.7 | 41.9 | 39.1 | 38.3 | 37.2 |
+| | w/o duration | 34.1 | 30.4 | 27.6 | 22.5 | 46.6 | 41.7 | 37.1 | 30.8 | 33.9 |
+| | w/o cross-att | 31.7 | 27.5 | 25.8 | 24.8 | 39.9 | 35.5 | 33.1 | 33.6 | 31.5 |
+| | w/o CRF | 39.7 | 33.1 | 28.1 | 20.0 | 47.2 | 40.2 | 32.9 | 22.9 | 33.0 |
+
+Table 4: Ablation study on LTA module on 50Salads and Breakfast datasets.
+
+
+
+Figure 3: Qualitative results. (a) Breakfast dataset: Timeline showing ground-truth (GT) and TbLTA predictions for 'P15\_cam01\_P15\_sandwich.txt'. (b) 50Salads dataset: Timeline showing ground-truth (GT) and TbLTA predictions for 'rgb-22-1.txt'. A legend identifies 15 action classes: action\_start, add\_oil, add\_vinegar, add\_pepper, add\_salt, mix\_dressing, peel\_cucumber, cut\_cucumber, place\_cucumber\_into\_bowl, cut\_lettuce, place\_lettuce\_into\_bowl, cut\_tomato, place\_tomato\_into\_bowl, cut\_cheese, place\_cheese\_into\_bowl, mix\_ingredients, add\_dressing.
+
+Figure 3: **Qualitative results.** We display the ground-truth (GT) and the results of TbLTA (Ours) on two datasets: (a) Breakfast and (b) 50Salads.
+
+simplex). Overall, while the simplex variant provides some conditioning, it lacks the structural biases of our multimodal design—masking by transcript-derived neighborhoods and gated residual fusion—leading to inferior alignment and weaker long-horizon coherence.
+
+**Effect of CRF loss.** The contribution of the CRF loss is particularly evident at longer horizons, as shown in Table 4. While short-term accuracy remains similar (even slightly higher on BF), its removal causes notable declines at longer horizons ( $\approx 5.3$ on 50Salads, $\approx 4.1$ on Breakfast), underscoring its role in enforcing temporal coherence and stabilizing long-term forecasts.
+
+**Effect of duration loss.** Table 4 shows that removing the duration loss reduces accuracy ( $\approx 0.2$ on 50Salads, $\approx 3.3$ on Breakfast), indicating that it serves as a temporal regularizer that stabilizes long-horizon predictions by discouraging unrealistic segment durations. Since it is trained without temporal ground truth and relies on momentum-based class-wise priors, we use this term only as a weak duration prior rather than a precise per-instance predictor. Consistent with duration modeling in fully supervised LTA, its effect is most beneficial for actions with more concentrated duration statistics, while classes with high intra-class variability remain challenging.
+
+### 4.4 QUALITATIVE RESULTS
+
+Figures 3b and 3a illustrate representative qualitative results of our framework. The left part of each timeline (before the vertical dashed line) corresponds to the segmentation of the observed interval, while the right part (after the dashed line) shows the anticipated sequence of future actions. As can be seen, the model produces accurate and temporally coherent segmentations of the observed portion, and the degradation in prediction quality for the future interval remains relatively small. It also appears clear that an accurate prediction of action durations is still a challenge. More qualitative results are provided in the supp. mat.
+
+## 5 CONCLUSION
+
+We introduced TbLTA, the first framework for dense long-term action anticipation trained exclusively from transcripts, without requiring frame-level annotations. By combining temporal alignment to generate pseudo-labels with cross-modal attention to semantically ground video features, our model enables anticipation without dense supervision while preserving temporal action consistency over long horizons. Through extensive experiments on Breakfast, 50Salads, and EGTEA, TbLTA establishes the first transcript-based supervision baseline for LTA. Remarkably, despite the absence of dense labels, our model achieves results that are competitive with, and in certain settings even superior to, fully supervised methods. A major challenge that remains is to correctly estimate future durations, especially for unseen actions. Importantly, this work demonstrates that dense LTA does not need to rely on exhaustive frame-level annotation, opening a new paradigm for scalable and language-informed anticipation in a weakly-supervised setting.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- 486
+487
+488 Yazan Abu Farha and Juergen Gall. Uncertainty-aware anticipation of activities. In *Proceedings*
+489 *of the IEEE/CVF International Conference on Computer Vision Workshops (CVPRW)*, pp. 0–0,
+490 2019.
+- 491 Yazan Abu Farha, Alexander Richard, and Juergen Gall. When will you do what? - anticipating
+492 temporal occurrences of activities. In *Proceedings of the IEEE/CVF Conference on Computer*
+493 *Vision and Pattern Recognition (CVPR)*, June 2018.
+- 494 Yazan Abu Farha, Qiuhong Ke, Bernt Schiele, and Juergen Gall. Long-term anticipation of activities
+495 with cycle consistency. In *DAGM German Conference on Pattern Recognition*, pp. 159–173.
+496 Springer, 2020a.
+- 497
+498 Yazan Abu Farha, Qiuhong Ke, Bernt Schiele, and Juergen Gall. Long-term anticipation of activities
+499 with cycle consistency. In *DAGM German Conference on Pattern Recognition*, pp. 159–173.
+500 Springer, 2020b.
+- 501
+502 Nicolas Aziere, Tiejiao Wang, and Sinisa Todorovic. Diffeorm for action segmentation. In *Pro-*
+503 *ceedings of IEEE/CVF International Conference on Computer Vision (ICCV)*, 2025.
+- 504
+505 Emad Bahrami, Gianpiero Francesca, and Juergen Gall. How much temporal long-term context
+506 is needed for action segmentation? In *Proceedings of IEEE/CVF International Conference on*
+507 *Computer Vision (ICCV)*, 2023.
+- 508 Nadine Behrmann, S Alireza Golestaneh, Zico Kolter, Juergen Gall, and Mehdi Noroozi. Unified
+509 fully and timestamp supervised temporal action segmentation via sequence to sequence transla-
+510 tion. In *Proceedings of the European Conference on Computer Vision (ECCV)*, 2022.
+- 511 Elena Bueno-Benito and Mariella Damicoli. Clot: Closed loop optimal transport for unsupervised
+512 action segmentation. In *Proceedings of IEEE/CVF International Conference on Computer Vision*
+513 *(ICCV)*, 2025.
+- 514
+515 Joao Carreira and Andrew Zisserman. Quo vadis, action recognition? a new model and the kinetics
+516 dataset, 2018. URL .
+- 517 Xiaobin Chang, Frederick Tung, and Greg Mori. Learning discriminative prototypes with dynamic
+518 time warping. In *Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern*
+519 *Recognition*, pp. 8395–8404, 2021.
+- 520
+521 Mohamad Dalal, Artur Xarles, Anthony Cioppa, Silvio Giancola, Marc Van Droogenbroeck,
+522 Bernard Ghanem, Albert Clapés, Sergio Escalera, and Thomas B. Moeslund. Action anticipa-
+523 tion from soccernet football video broadcasts. In *CVPRW*, pp. 6080–6091, June 2025.
+- 524 Anxhelo Diko, Danilo Avola, Bardh Prenkaj, Federico Fontana, and Luigi Cinque. Semantically
+525 guided representation learning for action anticipation. In *European Conference on Computer*
+526 *Vision (ECCV)*, pp. 448–466. Springer, 2024.
+- 527
+528 Guodong Ding and Angela Yao. Leveraging action affinity and continuity for semi-supervised tem-
+529 poral action segmentation. In *European Conference on Computer Vision*, pp. 17–32. Springer,
+530 2022.
+- 531 Yazan Abu Farha and Juergen Gall. Ms-ten: Multi-stage temporal convolutional network for ac-
+532 tion segmentation. In *Proceedings of the IEEE/CVF conference on computer vision and pattern*
+533 *recognition*, pp. 3575–3584, 2019.
+- 534
+535 Dayoung Gong, Joonseok Lee, Manjin Kim, Seong Jong Ha, and Minsu Cho. Future transformer for
+536 long-term action anticipation. In *Proceedings of the IEEE/CVF Conference on Computer Vision*
+537 *and Pattern Recognition (CVPR)*, pp. 3052–3061, 2022a.
+- 538 Dayoung Gong, Joonseok Lee, Manjin Kim, Seong Jong Ha, and Minsu Cho. Future transformer for
+539 long-term action anticipation. In *Proceedings of the IEEE/CVF Conference on Computer Vision*
+540 *and Pattern Recognition (CVPR)*, pp. 3052–3061, 2022b.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/A4Us8jxVGq.txt b/papers/A4Us8jxVGq.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c4111d7f72cf90c11e52d07d315e6d027d4f3e92
--- /dev/null
+++ b/papers/A4Us8jxVGq.txt
@@ -0,0 +1,285 @@
+
+
+{0}------------------------------------------------
+
+# HOW DO TRANSFORMERS LEARN TO ASSOCIATE TOKENS: GRADIENT LEADING TERMS BRING MECHANISTIC INTERPRETABILITY
+
+Shawn Im1, Changdae Oh1, Zhen Fang2, Sharon Li1
+
+1University of Wisconsin–Madison 2University of Technology Sydney
+
+{shawnim, changdae, sharonli}@cs.wisc.edu, zhen.fang@uts.edu.au
+
+## ABSTRACT
+
+Semantic associations such as the link between “bird” and “flew” are foundational for language modeling as they enable models to go beyond memorization and instead generalize and generate coherent text. Understanding how these associations are learned and represented in language models is essential for connecting deep learning with linguistic theory and developing a mechanistic foundation for large language models. In this work, we analyze how these associations emerge from natural language data in attention-based language models through the lens of training dynamics. By leveraging a leading-term approximation of the gradients, we develop closed-form expressions for the weights at early stages of training that explain how semantic associations first take shape. Through our analysis, we reveal that each set of weights of the transformer has closed-form expressions as simple compositions of three basis functions—bigram, token-interchangeability, and context mappings—reflecting the statistics of the text corpus and uncovering how each component of the transformer captures semantic associations based on these compositions. Experiments on real-world LLMs demonstrate that our theoretical weight characterizations closely match the learned weights, and qualitative analyses further show how our theorem shines light on interpreting the learned associations in transformers.
+
+## 1 INTRODUCTION
+
+Large language models (LLMs) based on self-attention have shown strong capabilities in capturing both factual knowledge and qualitative aspects of the human world (Grattafiori et al., 2024; Yang et al., 2025; Team et al., 2024; Achiam et al., 2023). This progress has sparked growing interest in understanding why these models work so well and, in particular, what kinds of internal structures emerge during training (Engels et al., 2024; Li et al., 2023a; Meng et al., 2022; Cunningham et al., 2023). Among these structures, semantic associations are especially foundational to language modeling (Harris, 1954; Firth, 1957; Miller & Charles, 1991), as they enable models to connect words and concepts in ways that support generalization and coherent text generation. While recent studies have identified specific mechanisms such as induction heads (Olsson et al., 2022), linear semantic relations (Nanda et al., 2023), and topic clustering (Li et al., 2023b), we still lack a principled account of *how semantic associations arise during the training of attention-based transformers*.
+
+By semantic associations, we mean the statistical and functional relationships between tokens that encode meaning—for example, the link between “bird” and “flew”, the interchangeability of “car” and “truck” in adjectival contexts, or the coupling of “country” and “capital”. These associations have long been recognized in linguistics under the lens of distributional semantics (Harris, 1954). In modern transformers, such associations are not explicitly programmed but instead emerge through gradient-based optimization over large corpora. Understanding *how* these structures crystallize during training is therefore essential not only for connecting deep learning with linguistic theory but also for developing a mechanistic foundation of representation learning in large language models.
+
+In this work, we develop a theory for the emergence of semantic associations in attention-based language models trained on natural language data, through the lens of training dynamics. A formal
+
+{1}------------------------------------------------
+
+
+
+Figure 1: Analysis of training dynamics of Transformers. (1) Gradient leading-term reveals three basis functions of association: Bigram (red, balloon), Interchangeability (happy, excited), and Context (flower, garden, pretty). (2) Composition of basis functions characterize Transformer weights: Softmax(Mask(X \* f1(p, p))) + f2(p, p) \* f3(p, p) \* f4(p, B) \* L. (3) Learned weights match our theoretical characterizations: Heatmaps for QK Weights (theoretical and learned) and Output Weights (theoretical and learned) show high similarity.
+
+Figure 1: To understand the emergence of associative features, we analyze the training dynamics of Transformers by focusing on the gradient leading terms for weights, which allows us to identify interpretable basis functions that characterize each weight by their compositions. Empirical validation confirms that our weight characterizations match the actual ones learned in practical transformers.
+
+analysis of training dynamics is attractive as it allows us to rigorously discuss how modern language models learn features and capabilities. Unfortunately, the training dynamics of transformers are highly complex, which has led prior work to adopt unrealistic assumptions that diverge from practice: (1) synthetic structured language (Li et al., 2023b; Yang et al., 2024), (2) simplified model architectures without, *e.g.*, positional encoding or residual connections (Tian et al., 2023; Huang et al., 2025), and (3) non-standard training, such as sequential component-wise training or partially frozen weights (Bietti et al., 2023; Li et al., 2023b). While these prior works provide valuable theoretical insights, their departures from realistic conditions raise concerns about the generalizability of their insights to LLMs used in practice. In contrast, we ground our study in a more realistic setting by focusing on naturalistic text distributions and attention-based transformers with positional encodings, optimized with a standard training procedure (Brown et al., 2020). This is essential to minimize the gap between our theory and practical use.
+
+Our key technical innovation is to analyze training dynamics of the transformer at an early stage, through the leading term of an expansion of the gradients for each set of weights. In particular, transformers are known to acquire many core behaviors early in training—including semantic relations—and persist through convergence (Olsson et al., 2022; Elhage et al., 2021; Nanda et al., 2023). This makes the early phase not only empirically important but also analytically tractable. During this stage, gradient updates admit a closed-form approximation: the leading term dominates parameter updates before higher-order corrections accumulate. Leveraging this, we show that the learned weight matrices (including the output matrix, value matrices, query-key matrices) can be expressed as simple compositions of three basis functions: a *bigram mapping*, which captures next token dependencies; an *interchangeability mapping*, which reflects functional similarity across tokens (*e.g.*, synonyms or shared grammatical roles); and a *context mapping*, which encodes longer-range prefix-suffix co-occurrence.
+
+Through experiments on a natural language dataset, we verify that the learned weights in an attention-based transformer model closely match our theoretical closed-form expressions, and further demonstrate that this holds even beyond the early stage. We also show rich qualitative examples of how each weight component of the transformer captures the actual word-wise semantic associations characterized by our theorem. Furthermore, we verify that our theoretically characterized features are correlated with the behavior of real-world language model. Figure 1 depicts an overview of our analysis, and we summarize our **contributions** as follows:
+
+1. We present the first explicit characterization of weights in attention-based transformers trained on real-world text corpora under the next-token prediction loss;
+2. We interpret the features learned in weights as compositions of bi-gram, interchangeability, and context mappings, and then show how these basis functions capture semantic association across words;
+
+{2}------------------------------------------------
+
+3. We finally validate our theoretical interpretation on both self-attention models and practical LLM, demonstrating the generality and relevance of our theorems.
+
+## 2 RELATED WORKS
+
+**Understanding emergence of features in Transformers.** Many works have considered the training dynamics of transformers under controlled settings to interpret their feature learning (Tian et al., 2023; Bietti et al., 2023; Nichani et al., 2024; Kim & Suzuki, 2024). A line of them investigates how low-level associative features, such as bigram structure (Bietti et al., 2023), cyclic structure (Huang et al., 2025), and co-occurrence (Tian et al., 2023; Yang et al., 2024), are learned from data. There are also multiple works that analyze how high-level capabilities, such as chain-of-thought (Kim & Suzuki, 2025), topic clustering (Li et al., 2023b; Jiang et al., 2024), reasoning or memorization (Yao et al., 2025), and in-context learning capability (Nichani et al., 2024; Bietti et al., 2023; Wang et al., 2024a; Kim & Suzuki, 2024; Edelman et al., 2024), are obtained during training. Although insightful, they often assume structured or abstract language data (Li et al., 2023b; Nichani et al., 2024; Yang et al., 2024), unrealistic model architecture (Tian et al., 2023; Cui et al., 2024; Troiani et al., 2025), and adjusted training strategies far from practice (Bietti et al., 2023; Kim & Suzuki, 2024; Huang et al., 2025), which depart from reality. In contrast, our theoretical analysis is grounded in natural language data, realistic architecture, and a standard training strategy. As a result, our theory substantially reduces the gap between formal analysis and practical use, which is further corroborated by our empirical validations.
+
+**Understanding feature learning beyond Transformers.** Recent work has also explored how models learn data-dependent features through dynamics for non-transformer models as well (Dandi et al., 2023; Ba et al., 2022; Mousavi-Hosseini et al., 2023). However, this line of work similarly considers abstractions of language, such as Gaussian data (Ba et al., 2022), single or multi-index models (Damian et al., 2024; Dandi et al., 2023), or spiked models (Wang et al., 2024b; Mousavi-Hosseini et al., 2023), and considers measures of data complexity with Hermite expansions (Bietti et al., 2022; Damian et al., 2024; Lee et al., 2024). On the contrary, we adopt a realistic theoretical setup to analyze features in transformers, which remains the dominant architecture in practice.
+
+## 3 PRELIMINARY
+
+### 3.1 PROBLEM STATEMENT
+
+Semantic associations are foundational for language models: they enable models to go beyond memorizing sequences and instead generalize across contexts (Hinton, 1984), infer latent structure (Wu et al., 2018), and generate coherent text. Despite their importance, the mechanisms by which transformers acquire these associations during training remain poorly understood. Towards a *mechanistic and theory-grounded interpretation* of LLMs in a more realistic setup, we pose the question:
+
+*How do semantic associations emerge during the training of attention-based language models on natural language data?*
+
+It is worth noting that we focus here on general natural language data, rather than synthetically structured or abstractive language, which has been considered in previous works (Yang et al., 2024; Nichani et al., 2024; Huang et al., 2025). This is essential to minimize the gap between our theory and practical use, since real-world text is highly diverse and is not restricted to a specific structure. In addition, prior studies (Olsson et al., 2022; Elhage et al., 2021; Nanda et al., 2023) have shown that critical semantic and reasoning abilities, such as induction heads and linear semantic relations, can already emerge in the early stage and be preserved through convergence. This makes the early stage of training a natural and necessary focus for theoretical analysis, which we now develop.
+
+### 3.2 MODEL ARCHITECTURE
+
+Prior works have analyzed the training dynamics of attention-based models under simplifying assumptions, such as restricting attention to low rank (Cui et al., 2024), removing causal masking (Tian et al., 2023; Yang et al., 2024), without positional encodings (Bietti et al., 2023) or residual
+
+{3}------------------------------------------------
+
+streams (Huang et al., 2025). In line with Nichani et al. (2024), we study an attention-based architecture that retains these components: positional encodings, causal masking, and residual streams. To further align with practice, we employ a relative positional encoding scheme, as in T5 (Raffel et al., 2020), rather than augmenting embeddings with absolute position vectors. We begin by introducing the necessary notation before formally defining the transformer computation.
+
+Let $\mathcal{V} = \{e_1, \dots, e_j, \dots, e_{|\mathcal{V}|}\}$ denote the set of vocabulary. For an input sequence of length $T$ , we represent the input as a matrix $\mathbf{X} \in \mathbb{R}^{T \times |\mathcal{V}|}$ , where each row of $\mathbf{X}$ is the one-hot encoding of the $t$ -th token in the sequence. In an $L$ -layer transformer, the parameters associated with self-attention are given by $\{\mathbf{W}^{(l)}, \mathbf{P}^{(l)}, \mathbf{V}^{(l)}\}_{l=1}^L$ together with $\mathbf{W}_O$ , where $\mathbf{W}^{(l)} \in \mathbb{R}^{|\mathcal{V}| \times |\mathcal{V}|}$ is the key-query matrix of layer $l$ , $\mathbf{V}^{(l)} \in \mathbb{R}^{|\mathcal{V}| \times |\mathcal{V}|}$ is the value matrix, $\mathbf{P}^{(l)} \in \mathbb{R}^T$ is the learned relative positional encoding, and $\mathbf{W}_O \in \mathbb{R}^{|\mathcal{V}| \times |\mathcal{V}|}$ is the output matrix. The model with input $\mathbf{X}$ is defined as follows.
+
+**Definition 3.1** (Attention-Based Transformer). *Given an input matrix $\mathbf{X} \in \mathbb{R}^{T \times |\mathcal{V}|}$ , the $L$ -layer attention-based transformer with parameters $\Theta = \{\mathbf{W}^{(l)}, \mathbf{P}^{(l)}, \mathbf{V}^{(l)}\}_{l=1}^L \cup \{\mathbf{W}_O\}$ is defined as*
+
+$$\mathbf{F}_\Theta(\mathbf{X}) = \mathbf{h}^{(L)} \mathbf{W}_O, \quad (1)$$
+
+where $\mathbf{h}^L$ is defined by the recurrence relation, i.e.,
+
+$$\mathbf{h}^{(l)} = \mathbf{h}^{(l-1)} + S(\text{Mask}(\mathbf{h}^{(l-1)} \mathbf{W}^{(l)} \mathbf{h}^{(l-1)T} + DM(\mathbf{P}^{(l)}))) \mathbf{h}^{(l-1)} \mathbf{V}^{(l)} \text{ and } \mathbf{h}^{(0)} = \mathbf{X}, \quad (2)$$
+
+where $S(\cdot)$ represents the softmax function, $DM(v)$ maps the $i$ th element of $v$ to the $(-i+1)$ th subdiagonal, and $\text{Mask}(\cdot)$ denotes the operator of attention mask. This architecture is in line with Nichani et al. (2024), and recent work shows that self-attention-only models can match the performance of architectures with MLP layers (Wang et al., 2025).
+
+### 3.3 TRAINING SETUP
+
+**Learning objective.** To align with standard language modeling practice and ensure comparability with prior works (Huang et al., 2025; Nichani et al., 2024), we adopt the standard cross-entropy objective: given $N$ input matrices $\mathbf{X}_1, \dots, \mathbf{X}_N$ with sequence length $T$ and corresponding output matrices $\mathbf{Y}_1, \dots, \mathbf{Y}_N$ , where $\mathbf{Y}_i \in \mathbb{R}^{T \times |\mathcal{V}|}$ , the objective function is defined as
+
+$$\mathcal{L}(\Theta) = \frac{-1}{NT} \sum_{i=1}^N \sum_{t=1}^T \log S(\mathbf{F}_\Theta(\mathbf{X}_i)^{[t]}) \mathbf{Y}_i^{[t]}, \quad (3)$$
+
+where $\mathbf{M}^{[t]}$ denotes the $t$ -th row of a matrix $\mathbf{M}$ and $\mathbf{Y}_i^{[t]}$ corresponds to the one-hot embedding for the $t+1$ -th token of the sequence corresponding to $\mathbf{X}_i$ .
+
+**Gradient descent.** We analyze the evolution of the parameters under full-batch gradient descent with a constant learning rate $\eta$ . Under gradient descent, the parameters are updated as follows:
+
+$$\Theta(t) = \Theta(t-1) - \eta \nabla_\Theta \mathcal{L}(\Theta). \quad (4)$$
+
+Due to the nonlinear complexities of the gradient, deriving an exact form for even one of the weight matrices after $t$ steps is challenging. We address this challenge by considering a leading-order approximation technique, allowing for a closed-form expression of the gradients and weights while yielding a tight approximation of the full gradient.
+
+## 4 THEORETICAL ANALYSIS
+
+In Section 4.1, we provide theorems demonstrating that the weights of attention-based transformers remain close to their gradient leading terms for $O(1/\eta)$ steps under both zero and Gaussian initializations. Then, Section 4.2 uncovers how three basis functions, which are crucial to express token associations and language structure, are encapsulated in those gradient leading terms, and how these three functions are compounded to shape the desiderata of the transformers' weight matrices.
+
+### 4.1 MAIN THEOREMS
+
+Under the setup described in Sec. 3, we obtain the following results for attention-based transformers.
+
+{4}------------------------------------------------
+
+
+
+Figure 2: Illustration of theoretical results. The diagram shows the composition of three basis functions for attention weights. A legend defines symbols: solid arrow for local dependency, dashed arrow for long-range dependency, blue circle for query token, red circle for context token, and green circle for next token. The Output Matrix W\_o ≈ B̄ shows a 'bigram (next-token) mapping' from a context token (red) to a next token (green). The Value Matrix V ≈ Φ̄B̄^T shows 'Step 1' (context (suffix) mapping from context to query), 'Step 2' (bigram (previous-token) mapping from previous context to current context), and 'Step 3' (next-to-query association shift from next token to query). The Query-Key Matrix W ≈ Q̄ shows 'Step 1' (interchangeability + context mapping), 'Step 2' (causal masking), and 'Step 3' (next-to-query association shift).
+
+Figure 2: **Illustration of theoretical results.** We characterize weight matrices of the attention-only transformer as compositions of three basis functions: bigram mapping, interchangeability mapping, and context mappings. We illustrate how these mappings are composed across weight matrices to learn semantic associations between a given query token and its surrounding text.
+
+**Theorem 4.1. (Informal)** Given an attention-based transformer (Def. 3.1) under sufficiently small Gaussian initialization, with $L \leq \sqrt{T}/4$ , after $s$ gradient descent steps with learning rate $\eta \geq \frac{1}{T}$ , if $s \leq \eta^{-1} \min(\frac{5}{8\sqrt{T}}, \frac{1}{12L})$ , then for all layers $l = 1, \dots, L$ ,
+
+$$\|W_O - s\eta\mathbf{B}\|_F \leq 3s^2\eta^2, \quad (5)$$
+
+$$\left\|V^{(l)} - \binom{s}{2} \eta^2 \bar{\Phi}^\top \bar{\mathbf{B}}^\top\right\|_F \leq 12s^3\eta^3, \quad (6)$$
+
+$$\left\|W^{(l)} - \binom{s}{4} \eta^4 \bar{\mathbf{Q}}\right\|_F \leq 13s^5\eta^5 T, \quad (7)$$
+
+$$\left\|P^{(l)} - \binom{s}{4} \eta^4 \Delta\right\|_F \leq 13s^5\eta^5 T, \quad (8)$$
+
+where $\|\cdot\|_F$ is the Frobenius norm, $\bar{\mathbf{B}}$ corresponds to a bigram statistic, $\bar{\Phi}$ corresponds to a context co-occurrence statistic, $\bar{\mathbf{Q}}$ corresponds to a token-to-token correlation based on a composition of $\bar{\mathbf{B}}$ and $\bar{\Phi}$ , and $\Delta$ corresponds to a relative position correlation based on the same feature as $\bar{\mathbf{Q}}$ .
+
+The above Theorem shows that any finite-depth $L$ -layer attention-based transformer (Def. 3.1) has the same characterization for its weights uniformly across all layers under a zero-initialization (Theorem D.10) and a small Gaussian initialization (Theorem 4.1), suggesting that all layers of the model capture common associative features from natural language as a starting point before evolving differently as training progresses (Figure 6). As seen in Figure 2, compositions of these features form the leading terms of the output matrix ( $\bar{\mathbf{B}}$ ), value matrix ( $\bar{\Phi}^\top \bar{\mathbf{B}}^\top$ ), and query-key matrix ( $\bar{\mathbf{Q}}$ ). We walk through these matrices in Section 4.2.1 and how they form the weights of the model in Section 4.2.2. The formal theorem and proofs are in Appendix D.
+
+### 4.2 INTERPRETATION OF THEOREMS
+
+In the previous section, we showed that the model parameters can be approximated by key corpus statistics $\bar{\mathbf{B}}$ , $\bar{\Phi}$ , $\bar{\mathbf{Q}}$ and $\Delta$ . Now, we discuss the definitions of these statistics by first introducing *three basis functions* and explaining how *their composition characterizes the model's behavior*.
+
+#### 4.2.1 THREE BASIS FUNCTIONS SHAPING ASSOCIATIVE FEATURES
+
+**(1) Bigram mapping $\bar{\mathbf{B}}$ .** The $(i, j)$ -th element in $\bar{\mathbf{B}}_{ij}$ corresponds to a correlation between token $\mathbf{e}_i$ and token $\mathbf{e}_j$ based on how likely $\mathbf{e}_i$ is to be directly followed by $\mathbf{e}_j$ as a bigram. More precisely,
+
+$$\bar{\mathbf{B}}_{ij} = \mathcal{P}_t(\mathbf{e}_i)\mathcal{P}_t(\mathbf{e}_j|\mathbf{e}_i) - \mathcal{P}_t(\mathbf{e}_i)/|\mathcal{V}|, \quad (9)$$
+
+where $\mathcal{P}_t(\mathbf{e}_i)$ is the relative frequency of $\mathbf{e}_i$ over all tokens in the dataset $\mathbf{X}_1, \dots, \mathbf{X}_N$ and $\mathcal{P}_t(\mathbf{e}_j|\mathbf{e}_i)$ is the relative frequency of $\mathbf{e}_j$ given that the previous token was $\mathbf{e}_i$ . The product between $\mathcal{P}_t(\mathbf{e}_i)$ and $\mathcal{P}_t(\mathbf{e}_j|\mathbf{e}_i)$ forms an estimate of the likelihood of $\mathbf{e}_i$ followed by $\mathbf{e}_j$ appearing as a bigram and the second term $-\mathcal{P}_t(\mathbf{e}_i)/|\mathcal{V}|$ simply acts as a centering term such that each row sums to 0.
+
+{5}------------------------------------------------
+
+**(2) Interchangeability mapping $\Sigma_{\bar{B}}$ .** We study $\Sigma_{\bar{B}} = \bar{B}^\top \bar{B}$ , the correlation matrix of $\bar{B}$ , which captures correlations between pairs of tokens based on a frequency-weighted similarity of their previous-token distributions. From Eq. (9), neglecting the centering terms, the $(i, j)$ -th element of $\Sigma_{\bar{B}}$ can be represented as
+
+$$\underbrace{\mathcal{P}_t(e_i)\mathcal{P}_t(e_j)}_{\text{Frequency weighting}} \sum_{k=1}^{|V|} \underbrace{\mathcal{P}_t(e_k^\leftarrow | e_i)\mathcal{P}_t(e_k^\leftarrow | e_j)}_{\text{Previous token similarity}}. \quad (10)$$
+
+In essence, Eq. (10) shows that $\Sigma_{\bar{B}}$ captures a symmetric relationship between tokens based on how similar of a function or role they play across different contexts. Specifically, in Eq. (10), we can see that the corresponding row, which acts as a feature for token $e_i$ captures its associations with **interchangeable** tokens captured by the previous token similarity factor and **frequent** tokens captured by the frequency weights. Similarities in previous token distributions are an indicator of functional similarities or interchangeability, as this captures structural patterns such as nouns being preceded by articles or adjectives and objects being preceded by common descriptors. This interchangeability map, $\Sigma_{\bar{B}}$ , acts a building block of characterizations for the weights $\mathbf{W}^{(l)}$ and $\mathbf{P}^{(l)}$ as illustrated in Figure 2. We depict a simple example of a word-wise correlation captured by $\Sigma_{\bar{B}}$ in Figure 1.
+
+**(3) Context mapping $\bar{\Phi}$ .** The $(i, j)$ -th element of $\bar{\Phi}$ corresponds to a correlation between token $e_i$ and $e_j$ based on how likely $e_j$ is to appear as a prefix of $e_i$ . This can be written as
+
+$$\frac{1}{T} \sum_{k=1}^T \frac{1}{k} \sum_{m=1}^k \mathcal{P}_t(\text{the } k+1\text{-th token is } e_i, \text{ the } m\text{-th token is } e_j) - \mu_{ij}, \quad (11)$$
+
+where $\mu_{ij}$ centers the columns of $\bar{\Phi}$ to be 0. Considering each row as an embedding for a token $e_i$ , which represents an average of the tokens that appear in its context, i.e., smoothed context.
+
+More precisely, the strength of the association from token $e_i$ to $e_j$ is determined by the average probability that $e_j$ appears in the context of $e_i$ over possible positions of $e_i$ and $e_j$ . This matrix can be interpreted as assigning a representation to a token based on a summary of the possible contexts that token $e_i$ appears in. This allows for learning associations between words that capture richer semantic relationships than bigram features. For example, we could expect to see correlations between animal and habitat, country and capital, or emotions and facial expressions (See Figure 3). This context mapping $\bar{\Phi}$ is a core building block of the gradients for the query-key attention $\mathbf{W}^{(l)}$ and value $\mathbf{V}^{(l)}$ matrices as shown in Figure 2.
+
+#### 4.2.2 COMPOSITION OF BASIS FUNCTIONS FOR SEMANTIC ASSOCIATION
+
+We now show how these three basis functions, bigram mapping $\bar{B}$ , interchangeability mapping $\Sigma_{\bar{B}}$ , and context mapping $\bar{\Phi}$ , are compounded to characterize four classes of weight matrices of the transformer.
+
+**(1) Output matrix $\mathbf{W}_O$ .** As shown in Eq. (5), $\bar{B}$ is the leading term of $\mathbf{W}_O$ , and thus the mapping from embedding vectors to output predictions can be understood by examining the matrix product $e_i \bar{B}$ for a token embedding $e_i$ . The $j$ -th element of the resulting output vector is $\bar{B}_{ij}$ , and each $\bar{B}_{ij}$ includes a factor of $\mathcal{P}_t(e_i)$ . This implies that tokens are scored according to how frequently they occur in the average next-token distribution of $e_i$ , and explain how models at early stages effectively learn bigram-like patterns.
+
+**(2) Value matrix $\mathbf{V}^{(l)}$ .** The leading term of the value matrix $\mathbf{V}^{(l)}$ can be expressed as $\bar{\Phi}^\top \bar{B}^\top$ as noted in Eq. (6), which acts as a composition of a context summary and bigram mapping. Because
+
+
+
+Figure 3: A diagram showing a sequence of four words in boxes: 'the', 'pond', 'contains', 'fish'. Below the boxes, there are three curved arrows pointing from 'fish' back to the other words. The arrow to 'the' is labeled '24', the arrow to 'pond' is labeled '7', and the arrow to 'contains' is labeled '4'. This illustrates the context summary scores for the word 'fish'.
+
+Figure 3: An example of $\bar{\Phi}$ with arrows pointing to prefix tokens for “fish” with context summary scores on edges. Larger values indicate the token appears more frequently in the context of “fish”.
+
+{6}------------------------------------------------
+
+$\bar{\Phi}^\top$ captures longer-term dependencies and $\bar{B}^\top$ captures only bigram statistics, the resulting embedding from $V^{(1)}$ still endows the original token representations with semantic properties similar to those of $\bar{\Phi}^\top$ as seen in Figure 2.
+
+**(3) Attention matrix $W^{(l)}$ .** Theorem 4.1 characterizes the attention weight (a shared query-key matrix) as $\bar{Q}$ , which is constructed as a composition of $\Sigma_{\bar{B}}$ , $\bar{\Phi}$ , the input matrix $X_l$ , the output matrix $Y_l$ , etc. We note that this compound feature captures a token-to-token correlation determined by how predictive one token is of the other’s next-token distribution based on the context and interchangeability mappings. We walk through an overview of the construction of $\bar{Q}$ in three steps (See Appendix A for details).
+
+1. *Input-output matching scoring in context.* As a preliminary step, we first define a composed feature $\Sigma_{\bar{B}}\bar{\Phi}$ by multiplying the interchangeability mapping $\Sigma_{\bar{B}}$ with the context mapping $\bar{\Phi}$ . This composition utilizes local interchangeability to map a token to a class of similar tokens and utilizes the context mapping to capture longer-range semantic correlations shared by the set of similar tokens. Using this feature, for each sample, we assign scores between each input and output token.
+2. *Masking and centering.* The auto-regressive constraint is enforced by masking future tokens, keeping only scores from input tokens that precede the output token. Then, the resulting scores for each output token are centered and normalized based on its position.
+3. *Next-to-query shift and averaging.* The scores between each input and output token are then shifted so that the same score is assigned instead to be between the input token and the token directly preceding the output token. Then, the scores are averaged across all samples.
+
+**(4) Positional encoding $P^{(l)}$ .** The closed-form characterization $\Delta$ of the positional encoding $P^{(l)}$ follows a very similar composition to $\bar{Q}$ , with the main difference being that the correlations are mapped to *positional differences* rather than to the vocabulary-space differences (See Lemma D.1).
+
+#### 4.2.3 HOW THE WEIGHTS COOPERATE
+
+To illustrate how the weights work together and provide further context on the role of each of the weights as functions, we consider the leading-term computation of a single-layer attention-based model. Dropping constant factors to focus on the interactions between features, the leading terms of the entire model computation can be written as
+
+$$(S(\text{Mask}(X\bar{Q}X^\top + \text{DM}(\Delta)))) X\bar{\Phi}^\top \bar{B}^\top + X) \bar{B}. \quad (12)$$
+
+We can further decompose this into $XW_O$ and the computation from the self-attention block is:
+
+$$S(\text{Mask}(X\bar{Q}X^\top + \text{DM}(\Delta))) X\bar{\Phi}^\top \Sigma_{\bar{B}}. \quad (13)$$
+
+$\bar{Q}$ and $\Delta$ capture correlations between two tokens or two positions based on how predictive the first token/position is of the next-token distribution of the second token/position according to $(\bar{\Phi}^\top \Sigma_{\bar{B}})^\top$ . Notice that the attended tokens are mapped to the output space by $\bar{\Phi}^\top \Sigma_{\bar{B}}$ , the same feature that determines the correlations for attention. As a result, the self-attention block effectively attends to tokens that, under the value and output matrix projection, lead to better next-token prediction. Thus, we find that while the residual stream $XW_O$ provides an average prediction of the next token, $\bar{Q}$ enables the model to refine this prediction by selectively focusing on tokens most indicative of the next-token given its current parameters, those capturing corpus association statistics.
+
+**Implication.** By considering an end-to-end analysis of the model under simultaneous training of layers and by decomposing the weights, we obtain a clear interpretation of how different components collaborate to form semantic representations and can rigorously contextualize the function of each component in the full computation of attention-based transformers. While these features only yield small changes in the actual text output, they provide important insight into how the model’s behavior develops during training. For example, if early training already associates *fish* with *pond* (as in Figure 3), we expect such relationships to be a useful anchor for later training, allowing the model to complete more complex sentences, e.g., “A pond in the garden was filled with colorful fish that sparkled in the sunlight”, coherently with learned semantic associations.
+
+{7}------------------------------------------------
+
+## 5 EXPERIMENTS
+
+### 5.1 3-LAYER ATTENTION-BASED TRANSFORMER
+
+We begin with an experimental setting designed to closely mirror our theory, enabling direct verification of results and analysis of the semantic relationships embedded in the learned weights. For clearer interpretability, we use the TinyStories dataset (Eldan & Li, 2023), truncated to the 3,000 most frequently occurring words, which also defines the model’s vocabulary. A 3-layer self-attention model defined in Definition 3.1 is then trained with sequence length $T = 200$ .
+
+Table 1: Minimum cosine similarities between theoretical and actually learned weights across all epochs. Results from a 3-layer attention-based model trained on TinyStories (small $\eta$ ).
+
+| Weights | Min. Cosine |
+|-|-|
+| Attention | 0.999496 |
+| Value | 0.999169 |
+| Output | 0.998486 |
+
+
+
+Figure 4: Cosine similarity between theoretical and learned weights. The plot shows three lines over 100 epochs: Attention (red), Value (blue), and Output (green). All lines start at 1.0 and remain high, with the Output line showing a slight dip around epoch 40 before recovering. The legend indicates the lines represent the range across layers.
+
+Figure 4: **Cosine similarity between theoretical and learned weights.** Results from a 3-layer transformer model trained on TinyStories.
+
+**Verification of theory.** To verify Theorem 4.1, we measure the cosine similarity between the learned weights and their corresponding leading terms at checkpoints over the first 100 epochs of SGD using a batch size of 2048 for computational tractability with a learning rate of 0.005. We also consider the cosine similarity between the learned weights and their leading terms when using a larger learning rate of 0.05 to understand how features evolve at later stages with respect to the leading term gradients. We provide results for both settings in Table 1 and Figure 4. The results show that *the learned weights maintain strong agreement with the theoretical predictions: even after 30 epochs, all weights achieve a cosine similarity of at least 0.9.* Moreover, all parameter matrices have a cosine similarity above 0.7, even after 100 epochs, where the loss had dropped from 8.00 to 5.35. These findings suggest that the features predicted by the theorem not only characterize the model dynamics during the early stage, but also remain informative well beyond it. We provide results for a BPE tokenization and for a causal analysis in Appendix B, and we elaborate experimental details for the TinyStories experiments in Appendix C.
+
+| the | red | to | | they | happy | wanted | | fish | flower | birds |
+|-|-|-|-|-|-|-|-|-|-|-|
+| park | ball | the | | she | happy | saw | | fish | beautiful | bird |
+| little | car | play | | they | sad | had | | big | yellow | tree |
+| bird | dress | go | | he | excited | wanted | | small | butterfly | up |
+| ball | balloon | be | | it | scared | asked | | pond | hose | park |
+| dog | truck | help | | one | proud | went | | lake | garden | nest |
+| big | blocks | see | | lily | angry | loved | | water | bloom | flowers |
+| tree | apples | her | | timmy | nice | ran | | catch | pretty | tweety |
+| man | shirt | make | | tom | curious | looked | | sea | daisy | sky |
+| box | hat | do | | her | surprised | took | | boat | field | flew |
+
+(a) Examples for $\bar{\mathbf{B}}$ (b) Examples for $\Sigma_{\bar{\mathbf{B}}}$ (c) Examples for $\bar{\Phi}$
+
+Figure 5: Selected tokens from the top 30 correlated tokens under different basis features from TinyStories. The characterized features actually capture both grammatical and semantic structures.
+
+**Semantic structure.** To validate our interpretation of associative features, we collect for each token the top 30 most correlated tokens under each of the basis functions: the bigram mapping ( $\bar{\mathbf{B}}$ ), interchangeability mapping ( $\Sigma_{\bar{\mathbf{B}}}$ ), and context matrix ( $\bar{\Phi}$ ), constructed from the TinyStories corpus. We provide examples of tokens where the expected semantic relationships can be observed in Figure 5. Under $\bar{\mathbf{B}}$ , we see that the word “red” is correlated with common objects such as “truck”
+
+{8}------------------------------------------------
+
+that would be described by the word “red”. Under $\bar{\Phi}$ , we can see that the word “fish” is correlated with common settings where fish would appear, such as “pond” or “lake”.
+
+### 5.2 TRANSFORMERS IN PRACTICE
+
+**Setup.** To evaluate how well our theoretical results extend to practical LLMs, we analyze token relationships learned from OpenWebText (Gokaslan et al., 2019), a real-world large-scale dataset with text from millions of webpages, in Pythia-1.4B (Biderman et al., 2023) and compare them with our theoretical predictions, examining how these relationships evolve across layers on datasets and models reflecting real-world complexities. We choose the Pythia model family, as they are open-sourced and uniquely provide access to intermediate checkpoints, enabling fine-grained analysis of training dynamics and interpretability (Marks et al., 2024; Gallego-Feliciano et al., 2025). Unlike our theoretical setting, Pythia includes additional components such as MLP and multi-head attention, making it impossible to directly read off average token correlations from the weights. In order to interpret the layer-wise representations in terms of token-token correlations, we perform the analysis through the following steps:
+
+1. We pass in each token $e_i$ as the input to the transformer.
+2. For each token and from each layer $l$ , we collect the following embeddings: the input to layer $l$ $h_{i,l,pre}$ , the output of the $l$ -th layer $h_{i,l,post}$ , and the output of the $l$ -th layer without the MLP component $h_{i,l,attn}$ .1
+3. The embeddings $h_{i,l,pre}$ form the rows of $\mathbf{E}_{l,pre} \in \mathbb{R}^{|\mathcal{V}| \times d}$ which represents a mapping from the input embeddings of layer $l$ to tokens. Similarly, the embeddings $h_{i,l,post}$ and $h_{i,l,attn}$ form the rows of $\mathbf{E}_{l,post} \in \mathbb{R}^{|\mathcal{V}| \times d}$ and $\mathbf{E}_{l,attn} \in \mathbb{R}^{|\mathcal{V}| \times d}$ respectively.
+
+**Attention correlations.** To analyze the correlations captured by the attention weights at each layer, we compute the product of the key and query mappings for each head and average these products, which we will call $\mathbf{A}_{l,emb} \in \mathbb{R}^{d \times d}$ . We then multiply the mapping $\mathbf{E}_{l,pre}$ on both sides of $\mathbf{A}_{l,emb}$ to convert the average attention mapping into a token-basis attention weight matrix $\mathbf{A}_{l,tok}$ . Finally, we consider token correlations captured by $\mathbf{A}_{l,tok}$ by using its covariance matrix, which we compare with the covariance matrix of $\bar{\mathbf{Q}}$ , the leading-order attention mapping term from our theorem.
+
+**Embedding correlations.** To analyze the correlations captured by the value mapping and the MLP, we consider the token-token correlations captured by the output of each layer. Utilizing the covariance matrix of $\mathbf{E}_{l,post}$ allows for direct comparison with the covariance matrix of the leading value matrix term $\bar{\Phi}^\top \bar{\mathbf{B}}^\top$ , since the matrices themselves have different dimensions. Furthermore, this enables us to control for shifts in the embedding space.
+
+**Comparison methodology.** We compute the leading term matrices using 100K samples from OpenWebText. To control for differences in model architecture, we normalize each row of the leading term weights to have unit norm. Then, we compute cosine similarities between the corresponding covariance matrices across layers and across checkpoints. We perform the same analysis on the FineWeb (Penedo et al., 2024) dataset and provide results in Appendix B. More details on the experimental setup are in Appendix C.
+
+
+
+The figure consists of three heatmaps arranged horizontally. Each heatmap has 'Layer Number' on the y-axis (ranging from 0 to 24) and 'Training Step' on the x-axis (logarithmic scale from 100 to 105). A color bar on the right of each heatmap indicates 'Cosine Similarity' from 0.0 (blue) to 1.0 (red).
+ - The left heatmap, titled 'Attention Mapping Cosine Similarity', shows a diagonal band of high similarity (red) that becomes more pronounced as training progresses.
+ - The middle heatmap, titled 'Cosine Similarity Across Checkpoints No MLP', shows a similar pattern but with a more uniform high similarity across most layers and steps.
+ - The right heatmap, titled 'Embedding Mapping Cosine Similarity', shows a more varied pattern with several distinct blocks of high similarity.
+
+Figure 6: Three heatmaps showing cosine similarity between covariance matrices for Pythia-1.4B. The left heatmap is 'Attention Mapping Cosine Similarity', the middle is 'Cosine Similarity Across Checkpoints No MLP', and the right is 'Embedding Mapping Cosine Similarity'. All plots show similarity across layers (y-axis) and training steps (x-axis).
+
+Figure 6: Cosine similarity between covariance matrices for Pythia-1.4B attention weights and embeddings and the corresponding leading term features based on OpenWebText.
+
+1We remind the reader of each layer’s structure in the Pythia model. The input is normalized and then passed into the attention block and the MLP block in parallel. Then the outputs of each are added to the original input.
+
+{9}------------------------------------------------
+
+**Results.** We provide a visualization of results in Figure 6, where we can see that, at the early stage of training, there is very strong agreement between the Pythia embeddings and our leading-term features. We can see that for the embedding mapping, *the token representations strongly match our theoretical analysis across all layers, and similarly for the attention weights*, excluding only the first layer. We can see that as the model continues training, the weights gradually drift from fixed associative features to represent richer knowledge beyond association, starting with the earlier layers. However, it still maintains these features to a large extent for relatively longer steps. This suggests that our analysis on attention-based models generalizes with the addition of multi-head attention or MLP and acts as a starting point for a finer-grained analysis of full training dynamics.
+
+**MLP ablation.** We perform an ablation at each layer by performing the embedding correlation analysis using $E_{l,attN}$ , which is based on only the output of the attention block and excludes the MLP component. The results for this analysis can be seen in the middle plot of Figure 6. We can see that the correlations captured by embeddings with and without the MLP are similar except at the first layer. This suggests that at the first layer, the MLP maps tokens to embeddings with structures similar to that of the leading-order value matrix term and maintains a similar structure at later layers. Based on these initial results, one possible hypothesis is that the MLP at early stages functions similarly to the leading-term value mapping.
+
+**Individual attention heads.** In order to capture a fine-grained understanding of the attention block, we perform the analysis on attention correlations using individual attention heads. We perform this analysis at an early (Layer 2), middle (Layer 13), and late layer (Layer 24) to also understand how heads may evolve differently at different stages of the model. In Figure 7, we find that different layers evolve differently with respect to the gradient leading-term for attention mappings. The earlier layers learn the leading-term features at a slower rate, as seen by the high similarity (red) appearing at later steps, especially for layer 2. We can also see that layer 13 exhibits faster specialization of attention heads than the other layers, as seen by the high variance in each column at later steps for layer 13. This provides insight into the rate of specialization of attention heads and suggests that intermediate layers are where specialization initially occurs.
+
+
+
+Figure 7: Per-Head Attention Cosine Similarity Across Training Steps. The figure consists of three heatmaps for Layer 2, Layer 13, and Layer 24. Each heatmap shows 'Head Index' (0-31) on the y-axis and 'Training Step' (0, 7, 14, 21, 28, 35, 42, 49, 56, 63, 70, 77, 84, 91, 98, 105, 112, 119, 126, 133, 140, 147, 154, 161, 168, 175, 182, 189, 196, 203, 210, 217, 224, 231, 238, 245, 252, 259, 266, 273, 280, 287, 294, 301, 308, 315, 322, 329) on the x-axis. A color bar on the right indicates 'Cosine Similarity' from -0.2 (blue) to 0.8 (red). Layer 2 shows low similarity (blue) at early steps, increasing to high similarity (red) at later steps. Layer 13 shows high similarity (red) at early steps, decreasing to low similarity (blue) at later steps. Layer 24 shows high similarity (red) at early steps, remaining high at later steps.
+
+Figure 7: Cosine similarity between covariance matrices for Pythia-1.4B individual attention head weights and the corresponding leading term features based on OpenWebText.
+
+## 6 CONCLUSION
+
+We present new theoretical results on the emergence of semantic associations in self-attention models learned from a natural language dataset. Our gradient leading term analysis for each model weight illuminates how the core basis functions that shape the associative features, i.e., bigram mapping, interchangeability mapping, and context mapping, develop from the training corpus. We show that transformer weights have closed-form expressions as compositions of those basis functions to represent semantic associations across natural language tokens. The extensive analyses on the weight matrices’ characterizations grounded by empirical supports from toy transformers and real-world LLMs contribute to the theoretical foundations of representation learning in transformers while also opening pathways for interpretability research: discovering common factors that allow weight matrices across components to be decomposed into simple functions of those shared factors; leveraging theory to formulate broad hypotheses about how concepts arise in models, extending beyond individual mechanisms or specific behaviors to complex characteristics.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/BDNctVKwuD.txt b/papers/BDNctVKwuD.txt
new file mode 100644
index 0000000000000000000000000000000000000000..14452e19f7a95283d2364d79abac4d1ff333bb27
--- /dev/null
+++ b/papers/BDNctVKwuD.txt
@@ -0,0 +1,516 @@
+
+
+{0}------------------------------------------------
+
+# --- IMPROVING FEATURE ALIGNMENT IN CONVNETS USING CONTRASTIVE CAMS AND CORE-FOCUSED CROSS-ENTROPY
+
+000
+001
+002
+003
+004
+005
+006
+007
+008
+009
+010
+011
+012
+013
+014
+015
+016
+017
+018
+019
+020
+021
+022
+023
+024
+025
+026
+027
+028
+029
+030
+031
+032
+033
+034
+035
+036
+037
+038
+039
+040
+041
+042
+043
+044
+045
+046
+047
+048
+049
+050
+051
+052
+053
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Despite the ubiquity of modern deep learning, accurate explanations of network predictions remain largely elusive. HiResCAM is a popular interpretability technique used to visualize attention maps (i.e., regions-of-interest) over input images. In this paper, we theoretically show a limitation of HiResCAM: the HiResCAMs for a given input are not uniquely determined, allowing an arbitrary spurious shift by a common matrix $M$ while corresponding to the same prediction. We further propose *ContrastiveCAMs*, which are invariant to the spurious shift $M$ hence improving robustness of explanations, while additionally providing granular class-versus-class explanations. With the additional granular explanations, experiments reveal that networks often focus on regions unrelated to the class label. To address this issue, we leverage the knowledge of core image regions and propose *Core-Focused Cross-Entropy*, an extension of cross entropy, which encourages attention on core regions while suppressing unrelated regions, improving feature alignment. Experiments on Hard-ImageNet and Oxford-IIIT Pets show that ContrastiveCAM provides more faithful attention maps and our method effectively improves feature alignment by primarily extracting predictive performance from core image regions.
+
+## 1 INTRODUCTION
+
+The vast applications of convolutional neural networks in safety-critical domains such as medical imaging (Kc et al., 2021; Rajpurkar et al., 2017), forensic investigation (Murthy and Siddesh, 2023) and self-driving (Kim and Canny, 2017) make accurate (a.k.a faithful) interpretations of their predictions paramount (Haufe et al., 2024). Approaches to explain predictions include feature-attribution based interpretability techniques (Zhou et al., 2016; Selvaraju et al., 2017; Draelos and Carin, 2020), input-based interpretability with saliency maps (Simonyan et al., 2013; Smilkov et al., 2017), and more recently, mechanistic interpretability for image circuit discovery (Olah et al., 2020).
+
+In addition to faithful interpretability, ensuring that only target-relevant (a.k.a. core) regions influence model predictions is a critical determination to make. A model-agnostic approach for evaluating the impact of core regions involves input ablation experiments as introduced in recent work on Core Risk Minimization (Singla et al., 2022; Moayeri et al., 2022). Images are modified to systematically corrupt core regions, following which the change in performance is reported. Singla and Feizi (2022) demonstrate that both convolutional and transformer-based architectures are vulnerable to learning non-core regions of the input, caused by features like co-occurring backgrounds. These encourage learning ‘tricks’ – shortcuts to learning that improve in-distribution accuracy while inhibiting generalization over core features (Geirhos et al., 2020). A concrete example of shortcut learning is illustrated within the introduction of Invariant Risk Minimization (Arjovsky et al., 2020).
+
+In this work, we develop and leverage faithful interpretability to encourage feature alignment in convolutional models. We theoretically observe that HiResCAMs (Draelos and Carin, 2020) may not explain true factors that contribute towards predictions as a consequence of *softmax* activation. Specifically, we prove that HiResCAMs are not uniquely determined and admit arbitrary, spurious shifts by a common matrix $M$ while corresponding to the same prediction (Theorem 3.2). This spurious shift from $M$ can, in principle, completely corrupt HiResCAM explanations. To remove this redundancy, we propose *ContrastiveCAMs* (Definitions 3.3, 3.4), resulting in attention maps that
+
+{1}------------------------------------------------
+
+are invariant to the aforementioned spurious shift while additionally providing granular class-versus-class explanations. Using class-versus-class comparisons, we experimentally reveal circumstances wherein different comparisons leverage different regions to base their predictions. Further, these differing regions do not always correspond to core regions of the input image, i.e., there are spurious contributions. We demonstrate that cross entropy loss encourages leveraging these unrelated regions, especially in settings where the target represents a small portion of the image (Section 4.1). Finally, we propose a modification to cross-entropy, termed *Core-Focused Cross-Entropy* (Definition 4.5), which: a) suppresses user-specified non-core regions despite the presence of spurious factors, and b) generates contrast within user-specified target regions to solve for the underlying classification task. This improves feature alignment by encouraging the model to learn target-relevant features only.
+
+We demonstrate the effectiveness of our proposed method by reporting experimental results in multiclass, multiple-class, and binary classification settings. We supplement this evidence by showing that core-focused models may be trained competitively even with coarse or auto-generated masks, and that they outperform backbones trained using cross-entropy in downstream segmentation tasks.
+
+### 1.1 RELATED WORK
+
+**Feature Attribution in Convolutional Networks.** A prominent family of interpretability techniques stems from the seminal CAMs (short for Class Activation Mappings) (Zhou et al., 2016) literature. CAMs help identify regions-of-interest in the form of attention maps. It's success led to the introduction of a vast set of derivative works, that extend CAMs in various ways (Selvaraju et al., 2017; Chattopadhyay et al., 2018; Wang et al., 2020; Draelos and Carin, 2020).
+
+**Representation Learning.** Arjovsky et al. (2020) introduces the notion of predictors that learn feature representations that are invariant to spurious factors. Bau et al. (2017) quantifies the interpretability of learned representations in convolutional models by evaluating hidden units within convolutional layers on segmentation tasks. Recently, Zou et al. (2023) motivates neuroscience-inspired top-down approached for inducing interpretability. It encourages the analysis of representations (representation reading) and it's subsequent modification (representation control).
+
+**Feature Alignment.** Spurious factors in images encourage extracting predictions from unrelated regions, termed *shortcuts*, and are discussed extensively by Geirhos et al. (2020). Feature alignment seeks to ensure predictions are made using relevant features only, and is deeply connected with robustness in neural networks (Wang, 2023). Preventing shortcut learning is thus a crucial goal of feature alignment. Approaches to alignment include region masking (Kc et al., 2021), tiered training (Aniraj et al., 2023), and regularization via saliency maps (Ismail et al., 2021), each having an empirical focus. For a thorough exposition to recent advancements and challenges in interpretability-guided feature alignment, we direct the reader to Weber et al. (2023) and Gao et al. (2024).
+
+## 2 PRELIMINARIES
+
+**Notation.** We denote vectors using bold lowercase letters (e.g., $\mathbf{v}$ ), matrices using uppercase letters (e.g., $\mathbf{M}$ ), and tensors using bold uppercase letters (e.g., $\mathbf{T}$ ), with partial indexing implying selection of the subtensor across the remaining subsequent dimensions (e.g., $\mathbf{T}_i \in \mathbb{R}^{a \times b \times c}$ for $\mathbf{T} \in \mathbb{R}^{a \times b \times c}$ ). We use the operator $\odot$ to represent elementwise multiplication, and define $[C] := \{1, 2, \dots, C\}$ .
+
+**Setup.** In this paper, we consider image classification tasks. The dataset $\mathcal{D} = \{\mathbf{X}^{(i)}, \mathbf{y}^{(i)}\}_{i=1}^n$ contains image-label pairs where images are represented using rank-3 tensors $\mathbf{X}$ consisting of two spatial dimensions and one channel dimension, and labels are one-hot vectors $\mathbf{y} \in \mathbb{R}^C$ , where $C$ denotes the total number of classes in the dataset. A neural network $f$ is trained to learn the relation between the images $\mathbf{X}$ and labels $\mathbf{y}$ . The output of $f$ contains $C$ logits: $f_c, c \in [C]$ . Let $\sigma(\cdot)$ be the softmax function, $\tilde{f}(\mathbf{X}) = \sigma(f(\mathbf{X}))$ is then interpreted as the class-specific *probability predictions*. The standard training procedure is to optimize a cross-entropy loss function so that $\tilde{f}(\mathbf{X})$ matches the label $\mathbf{y}$ as closely as possible for each training image-label pair.
+
+In prominent approaches such as VGG (Simonyan and Zisserman, 2015), ResNet (He et al., 2016) & ViT (Dosovitskiy et al., 2020), the neural network $f$ mainly consists of two consecutive parts, a
+
+{2}------------------------------------------------
+
+backbone module $g$ followed by a classifier $h$ : $f = h \circ g$ . In this paper, we focus on convolutional neural networks, i.e., the backbone $g$ is convolutional. We denote the output of the backbone $g$ as $\mathbf{A} \in \mathbb{R}^{d_0 \times d_1 \times d_2}$ , termed as feature embedding (a.k.a. feature maps) of the image, where $d_0$ is the number of features (a.k.a. channels) and $d_1$ and $d_2$ are the spatial dimensions of the final convolutional layer. The feature embedding $\mathbf{A}$ is then reduced to a vector $\mathbf{z}$ , either by flattening $\mathbf{z} = \text{vec}(\mathbf{A})$ , or by Global Average Pooling (GAP). $\mathbf{z}$ is then processed by the classifier $h$ , which outputs the logits $f$ , that are passed through *softmax* to obtain the class prediction vector, denoted $\hat{f}$ .
+
+The recent trend is that the classifier $h$ becomes as simple as a single layer, such as in ConvNext (Liu et al., 2022), ViT (Dosovitskiy et al., 2020), EfficientNet (Tan and Le, 2019), ResNet (He et al., 2016) & DenseNet (Iandola et al., 2014):
+
+$$h(\mathbf{z}) = W\mathbf{z} + \mathbf{b}, \quad (1)$$
+
+This simplification of $h$ is largely due to the fact that the backbone $g$ , which encapsulates the bulk of the model's predictive power, extracts high quality and comprehensive features $\mathbf{A}$ , based on which a single layer is enough to obtain accurate final predictions. In this paper, we assume that the classifier is of the form in Eq. (1).
+
+**HiResCAMs.** HiResCAMs (short for High-Resolution Class Activation Maps), introduced in (Draelos and Carin, 2020), is a method designed to provide interpretable explanations of convolutional neural networks. It renders the contribution of each spatial location in an image to the final logit output $f_c$ , thereby revealing which regions are most critical to the models prediction. Specifically, given a feature embedding $\mathbf{A}$ of an image $\mathbf{X}$ and a class index $c \in [C]$ , the HiResCAM is defined as:
+
+$$\text{CAM}_c^{\text{HiRes}} = \sum_{j=1}^{d_0} (\nabla_{\mathbf{A}_j} f_c) \odot \mathbf{A}_j, \quad \text{CAM}_c^{\text{HiRes}} \in \mathbb{R}^{d_1 \times d_2} \quad (2)$$
+
+$\text{CAM}_c^{\text{HiRes}}$ shares spatial dimensions with the backbone output $\mathbf{A}$ . Each element within $\text{CAM}_c^{\text{HiRes}}$ represents a contribution to the logit output $f_c$ , from a corresponding patch within the original image. A higher absolute value implies a greater contribution.
+
+HiResCAMs have been widely used for incorporating explainability in a variety of tasks, such as CT scan abnormality classification (Draelos and Carin, 2022), malware visualization (Brosolo et al., 2025), coffee leaf rust classification (Chavarro et al., 2024), counterfeit banknote detection (Pachón et al., 2023) & flow estimation (Chen and Wu, 2025).
+
+Particularly, for single-layer classifiers $h$ , Draelos and Carin (2020) show that the expression of HiResCAMs, Eq. (2), can be simplified and has the following close connection with output logits $f_c$ :
+
+$$f_c(\mathbf{X}) = \sum_{i=1, j=1}^{d_1, d_2} \text{CAM}_{c, i, j}^{\text{HiRes}}(\mathbf{X}) + b_c, \quad c \in [C]. \quad (3)$$
+
+Each logit $f_c$ is the summation of the HiResCAM over its spatial dimensions, up to a scalar $b_c$ .
+
+## 3 CONTRASTIVE CLASS ACTIVATION MAPS
+
+In this section, we first discuss the theoretical limitations of HiResCAM in explaining model predictions, and then introduce a surrogate method, ContrastiveCAM, which offers more faithful and class-specific explanations.
+
+**HiResCAMs Admit Spurious Shifts.** A key observation is that HiResCAMs are only related to logits $f$ , not probability predictions $\hat{f} = \sigma(f)$ belonging to each class, see Eq. (3). The drawback is that, for the same probability prediction $\hat{f}$ , there are infinitely many possible logit outputs $f$ , hence infinitely many HiResCAMs, each of which explain the same prediction differently. This drawback arises intrinsically from the nature of the *softmax* function.
+
+**Proposition 3.1** (Contrastiveness of *softmax*). *The softmax function is invariant to a universal shift of all its input components:*
+
+$$\sigma(\mathbf{x}) = \sigma(\mathbf{x} + a\mathbf{1}_C) \quad \forall \mathbf{x} \in \mathbb{R}^C, a \in \mathbb{R} \quad (4)$$
+
+{3}------------------------------------------------
+
+*Proof.* All proofs are deferred to Appendix A. □
+
+This invariance to $a \in \mathbb{R}$ is amplified to a matrix $M \in \mathbb{R}^{d_1 \times d_2}$ when assessing HiResCAMs.
+
+**Theorem 3.2.** *HiResCAM explanations $\text{CAM}^{\text{HiRes}} \in \mathbb{R}^{C \times d_1 \times d_2}$ corresponding to probability predictions $\tilde{f}(\mathbf{X}) \in \mathbb{R}^C$ are not uniquely determined, admitting a universal shift of class-level explanations $\text{CAM}_c^{\text{HiRes}}$ by an arbitrary matrix $M \in \mathbb{R}^{d_1 \times d_2} \forall c \in [C]$ .*
+
+$$\tilde{f}(\mathbf{X}) = \sigma \left( \sum_{i=1, j=1}^{d_1, d_2} \text{CAM}_{:, i, j}^{\text{HiRes}} + \mathbf{b} \right) = \sigma \left( \sum_{i=1, j=1}^{d_1, d_2} \overline{\text{CAM}}_{:, i, j}^{\text{HiRes}} + \mathbf{b} \right) \quad \forall M \in \mathbb{R}^{d_1 \times d_2} \quad (5)$$
+
+Where $\overline{\text{CAM}}^{\text{HiRes}}$ is defined as:
+
+$$\overline{\text{CAM}}_c^{\text{HiRes}} := \text{CAM}_c^{\text{HiRes}} + M \quad \forall c \in [C] \quad (6)$$
+
+Thus explanations from HiResCAMs are accurate only upto a summand $M$ which is unknown. These explanations may be misleading, and *fail to guarantee a faithful interpretation* of the model prediction. An example of such a misinterpretation is illustrated in Figure 1.
+
+
+
+The diagram illustrates the effect of adding an arbitrary matrix $M$ to the CAMHiRes explanations. On the left, a 4x4 matrix $M$ is shown. An arrow points from $M$ to two sets of CAMHiRes matrices. The top set shows two 4x4 matrices labeled CAMHiRes. The bottom set shows two 4x4 matrices labeled $\overline{\text{CAM}}_1^{\text{HiRes}}$ and $\overline{\text{CAM}}_2^{\text{HiRes}}$ , which are the top set plus $M$ . Arrows from the CAMHiRes matrices point to a logit vector $f$ with values [4, 0]. Arrows from the $\overline{\text{CAM}}_1^{\text{HiRes}}$ and $\overline{\text{CAM}}_2^{\text{HiRes}}$ matrices point to a logit vector $f$ with values [16, 12]. Both logit vectors $f$ are then passed through a softmax function (indicated by the arrow to the final probabilities) to produce the same probability distribution $\tilde{f} = [.98, .02]$ .
+
+Figure 1: Shifting CAM^HiRes by arbitrary matrix M results in a change to explanations CAM^HiRes which subsequently changes the corresponding logit vector. However, the model's final prediction probabilities are identical and remain unchanged.
+
+Figure 1: Shifting $\text{CAM}^{\text{HiRes}}$ by arbitrary matrix $M$ results in a change to explanations $\overline{\text{CAM}}^{\text{HiRes}}$ which subsequently changes the corresponding logit vector. However, the model's final prediction probabilities are identical and remain unchanged.
+
+To remove this redundancy, we define a contrastive representation of HiResCAMs, which recovers faithful attention maps at the class probability level.
+
+**Definition 3.3** (ContrastiveCAMs). Given a set of classes $[C]$ with $c_t$ being the index of the target class for a given image, ContrastiveCAM is defined as follows:
+
+$$\text{CAM}_{c_t}^{\text{Cntrst}} := \left\{ \text{CAM}_{(c_t, c')}^{\text{Cntrst}} : c' \in [C] \setminus c_t \right\}, \quad \text{CAM}_{(c_t, c')}^{\text{Cntrst}} := \text{CAM}_{c_t}^{\text{HiRes}} - \text{CAM}_{c'}^{\text{HiRes}} \quad (7)$$
+
+Further, we also reconstruct single-class interpretations of ContrastiveCAMs:
+
+**Definition 3.4** (Class-Reconstructed ContrastiveCAMs). Given a set of classes $[C]$ with $c_t$ being the index of the target class for a given image, reconstructed ContrastiveCAMs are defined as follows:
+
+$$\text{CAM}_{c_t}^{\text{Recon}} := \frac{1}{C} \sum_{c=1}^C \text{CAM}_{(c_t, c)}^{\text{Cntrst}} = \text{CAM}_{c_t}^{\text{HiRes}} - \frac{1}{C} \sum_{c=1}^C \text{CAM}_c^{\text{HiRes}} \quad (8)$$
+
+$\text{CAM}_{c_t}^{\text{Recon}}$ thus removes redundancy $R = -1/C \cdot \sum_{c=1}^C \text{CAM}_c^{\text{HiRes}}$ . We report the ratio of redundancy to the original explanation as $\gamma = \|R\|_F / \|\text{CAM}_{c_t}^{\text{HiRes}}\|_F$ for various datasets in Table 1.
+
+Crucially, ContrastiveCAMs are invariant to spurious contributions as exposed by Theorem 3.2.
+
+{4}------------------------------------------------
+
+**Theorem 3.5** (ContrastiveCAMs are $M$ -invariant). Let $\text{CAM}_c^{\text{HiRes}}$ and $\overline{\text{CAM}}^{\text{HiRes}}$ be two HiResCAMs corresponding to probability predictions $\hat{f}(\mathbf{X}) \in \mathbb{R}^C$ such that:
+
+$$\overline{\text{CAM}}_c^{\text{HiRes}} = \text{CAM}_c^{\text{HiRes}} + M \quad \forall c \in [C] \quad (9)$$
+
+Then, for every $M \in \mathbb{R}^{d_1 \times d_2}$ , it holds that:
+
+$$\text{CAM}^{\text{Cntrst}} = \overline{\text{CAM}}^{\text{Cntrst}} \quad \text{and} \quad \text{CAM}^{\text{Recon}} = \overline{\text{CAM}}^{\text{Recon}} \quad (10)$$
+
+**Class-versus-Class Explanations.** While explanations from the CAM-family only involve visualizing $f_{c_i}$ , softmax activation uses every logit in computing class probabilities. Making inferences based on individual logits may thus misinterpret the internal model state, as the training objective induced by cross-entropy loss over softmax activation is to maximize the **difference between class logits**, see Eq. (44). We demonstrate the value of additional granularity provided by pairwise explanations by reporting observations on a three-class subset of Hard-ImageNet in Figure 2.
+
+
+
+Figure 2 displays a 2x3 grid of images and their corresponding explanations. The columns represent three classes: 'dog sled' (c1), 'volleyball' (c2), and 'baseball player' (c3). The rows show different explanation methods:
+
+- Top row: Original images and their HiResCAM explanations (labeled CAMciHiRes).
+- Bottom row: ContrastiveCAM explanations. The first column shows CAMc1Contrastive (1/2) and CAMc1Contrastive (1/3). The second and third columns show CAMciContrastive (1/3) for i=2 and i=3 respectively.
+
+The figure illustrates that ContrastiveCAMs reveal regions that are hidden by HiResCAMs (e.g., environmental cues in the 'dog sled' image) and that different parts of the image contribute to various class-versus-class predictions.
+
+Figure 2: ContrastiveCAM and HiResCAM explanations for 'dog sled', 'volleyball', and 'baseball player'.
+
+Figure 2: We plot ContrastiveCAM and HiResCAM explanations on a ResNet-18 model trained to classify: ('dog sled', 'volleyball', 'baseball player'), ordered by label index. ContrastiveCAMs reveal circumstances wherein: a) regions that contribute towards prediction are hidden by HiResCAMs, and b) differing parts of the image contribute towards various class-versus-class predictions.
+
+From Figure 2, we also observe that the model often leverages irrelevant regions (e.g., environmental cues), to inform predictions. Following Moayeri et al. (2022), we refer to these regions as *non-core regions*. In principle, *core regions* are those that causally influence the prediction (modification of this region could mean the ground truth itself may change), while *non-core regions* represent spurious correlations – modifications to these regions do not change the ground truth labels.
+
+Table 1: ContrastiveCAM explanations bifurcated by core-region maps across various datasets. The average contributions of core / non-core regions and ratio of redundancy removed is reported below.
+
+| Dataset | Core (↑) | Non-Core (↓) | Core/Total (↑) | Redundancy (γ) | Accuracy (%) |
+|-|-|-|-|-|-|
+| Hard-ImageNet | 14.817 | 42.138 | .2601 | .201 | 95.73 |
+| Oxford-IIIT Pets | 3.925 | 2.150 | .6461 | .367 | 99.34 |
+| PASCAL VOC | 1.581 | 1.719 | .4791 | — 1 | 87.32 |
+
+This undesired influence is consistently observed, as evidenced by high overall non-core contribution in Table 1 above. Despite strong accuracy, large contributions arise from non-core regions.
+
+## 4 LEARNING WITH CONTRASTIVECAMs
+
+The dependency on non-core regions observed above is evidence of misalignment, which inhibits generalization. In this section, we prove a desirable theoretical property of ContrastiveCAMs and leverage it to incorporate interpretability within model optimization, mitigating this weakness.
+
+{5}------------------------------------------------
+
+Specifically, we prove that any *input-dependent* change to probability predictions $\tilde{f}$ (e.g., caused by updating model weights) is precisely reflected by a proportionate change to $\text{CAM}_{c_i}^{\text{Cntrst}}$ .
+
+**Proposition 4.1** (Correctness of ContrastiveCAMs). *Softmax-activated class probabilities $\tilde{f}$ can be expressed as a direct function of ContrastiveCAMs and the bias vector*
+
+$$\tilde{f}_{c_i}(\mathbf{X}) = \left( \sum_{c=1}^C \exp \left( \mathbf{b}_c - \mathbf{b}_{c_i} - \sum \text{CAM}_{(c_i, c)}^{\text{Cntrst}} \right) \right)^{-1} \quad \forall c_i \in [C] \quad (11)$$
+
+Where $\text{CAM}_{(c_i, c_i)}^{\text{Cntrst}} = \mathbf{0}_{d_1 \times d_2}$ .
+
+By zero-ing the final bias vector (i.e., $\mathbf{b} := \mathbf{0}_C$ for $h$ only), we can precisely dissociate the role of specific regions in computing cross-entropy. We leverage this property to study feature misalignment, and later in our proposed modification of cross-entropy to penalize the use of non-core regions.
+
+### 4.1 CROSS-ENTROPY CAN MOTIVATE FEATURE MISALIGNMENT
+
+To encode core-region information, for each sample from our dataset of size $N$ , we extend dataset $\mathcal{D}$ by specifying a binary mask $H$ , which indicates whether or not downsampled regions from the input image may be used to determine the prediction.
+
+$$\mathcal{D} := \{(\mathbf{X}^{(i)}, (H^{(i)}, \mathbf{y}^{(i)}))\}_{i=1}^N \quad \text{where} \quad H_{jk} := \begin{cases} 1 & \text{region contains target} \\ 0 & \text{region doesn't contain target} \end{cases} \quad \forall j, k \in [d_1], [d_2]$$
+
+We can restate cross-entropy as a function of ContrastiveCAMs and core-region information in $\mathcal{D}$ .
+
+**Proposition 4.2.** *Given bias-free classifier $h$ , we can precisely associate the impact of specific regions, encoded by binary mask $H$ , to the computation of cross-entropy loss.*
+
+$$\mathcal{L}_{\text{CE}}(f(\mathbf{X}), \mathbf{y}, H) = \log \left( \sum_{c=1}^C \exp \left( - \sum H \odot \text{CAM}_{(c_i, c)}^{\text{Cntrst}} - \sum (1 - H) \odot \text{CAM}_{(c_i, c)}^{\text{Cntrst}} \right) \right) \quad (12)$$
+
+**Remark 4.3.** *Equivalently, we dissociate the logit and use the standard cross-entropy formulation:*
+
+$$\mathcal{L}_{\text{CE}}(f(\mathbf{X}), \mathbf{y}, H) = \mathcal{L}_{\text{CE}} \left( \sigma \left( - \sum_{i=1, j=1}^{d_1, d_2} \underbrace{H \odot \text{CAM}_{(c_i, :), i, j}^{\text{Cntrst}}}_{\text{core}} + \underbrace{(1 - H) \odot \text{CAM}_{(c_i, :), i, j}^{\text{Cntrst}}}_{\text{non-core}} \right), \mathbf{y} \right) \quad (13)$$
+
+We observe from Proposition 4.2 that cross-entropy loss does not inherently favor using the core or non-core regions for classification. Provided the prediction is accurate with high confidence, error remains low. This presents a theoretical basis for feature misalignment in convolutional networks.
+
+**Scale-Sensitivity of Convolutional Approaches.** In training classification models, an implicit assumption is that the strongest indicator of the class label is the target itself (i.e., the core regions). From Table 1, we observe through the significant influence of non-core regions that this assumption does not universally hold. In cases where the target is far from the camera, as commonly observed in Hard-ImageNet, the emphasis is placed on **learning the best non-core surrogate to the actual target**, rather than obtaining an accurate feature representation using just the fewer relevant regions.
+
+Learning a non-core surrogate does reduce cross-entropy loss, but at the cost of misrepresenting the underlying classification target, thus inducing feature misalignment. The model should, through the course of training, distinguish and ignore non-core regions in determining the final prediction.
+
+This leads us to propose an alignment-motivated constraint to empirical risk minimization.
+
+**Definition 4.4** (Core-Constrained Risk Minimization).
+
+$$\mathcal{R}_{\text{CCRM}}(f) := \mathbb{E}_{(\mathbf{X}, (H, \mathbf{y})) \sim \mathcal{D}} \left[ \ell(\tilde{f}(\mathbf{X}), \mathbf{y}) \right] \quad \text{s.t.} \quad \sum_{c=1}^C \left\| (1 - H) \odot \text{CAM}_{(c_i, c)}^{\text{Cntrst}} \right\| = 0 \quad (14)$$
+
+Where $\ell(f(\mathbf{X}), \mathbf{y}) = \mathbb{1}(\arg \max(\tilde{f}(\mathbf{X})) \neq \arg \max(\mathbf{y}))$ is 0/1 loss for the multiclass setting.
+
+{6}------------------------------------------------
+
+### 4.2 CORE-FOCUSED CROSS-ENTROPY
+
+We have shown that cross-entropy motivates generating predictions using either core or non-core features. To correct this, we propose Core-Focused Cross-Entropy, which penalizes the contribution from non-core regions to the final classification.
+
+**Definition 4.5** (Core-Focused Cross-Entropy). We integrate masked region suppression to the definition of cross-entropy using the following formulation:
+
+$$\mathcal{L}_{\text{CFCE}}(f(\mathbf{X}), \mathbf{y}, H) := \log \left( \sum_{c=1}^C \exp \left( - \sum H \odot \text{CAM}_{(c_t, c)}^{\text{Cntrst}} + \sum (1 - H) \odot |\text{CAM}_{(c_t, c)}^{\text{Cntrst}}| \right) \right) \quad (15)$$
+
+We can show that the above loss function is consistent with our constrained optimization objective.
+
+**Theorem 4.6** (Consistency of Core-Focused Cross-Entropy). *A sequence of predictors $f_n$ that converges to the optimal $\mathcal{R}_{\text{CFCE}}$ -risk also converges to the Bayes-optimal $\mathcal{R}_{\text{CCRM}}$ -risk. Equivalently, in the realizable setting, $\mathcal{L}_{\text{CFCE}}$ is classification-calibrated.*
+
+$$\mathcal{R}_{\text{CFCE}}(f_n) \rightarrow \mathcal{R}_{\text{CFCE}}^* \implies \mathcal{R}_{\text{CCRM}}(f_n) \rightarrow \mathcal{R}_{\text{CCRM}}^* \quad (16)$$
+
+Where $\mathcal{R}_{\text{CFCE}}(f)$ is defined as:
+
+$$\mathcal{R}_{\text{CFCE}}(f) := \mathbb{E}_{(\mathbf{X}, (H, y)) \sim \mathcal{D}} [\mathcal{L}_{\text{CFCE}}(f(\mathbf{X}), \mathbf{y}, H)] \quad (17)$$
+
+**Divergence Regularization.** Using ContrastiveCAMs, we observe a tendency for cross-entropy to only generate contrast in regions where feature differences are prominent within the training set. Successful test predictions rely on the prominence of the same set of differing features even if there exist subtleties in the training set that can be used to offer more nuanced classifications. We thus propose regularization by minimizing divergence between target mask $H$ and $\text{CAM}^{\text{Cntrst}}$ . This encourages contrast for every region in which the target is present, even when the difference is subtle.
+
+**Definition 4.7** (Regularized Core-Focused Cross-Entropy). We regularize $\mathcal{L}_{\text{CFCE}}$ to encourage contrast over the entire target region using KL Divergence:
+
+$$\mathcal{L}_{\text{RCFCE}}(f(\mathbf{X}), \mathbf{y}, H) := \mathcal{L}_{\text{CFCE}} + \frac{\lambda_1}{C-1} \sum_{c \in [C] \setminus c_t} D_{\text{KL}} \left( \sigma(\lambda_2 H) \parallel \sigma \left( \lambda_3 \text{CAM}_{(c_t, c)}^{\text{Cntrst}} \right) \right) \quad (18)$$
+
+The divergence term motivates similarity in the *shape* of ContrastiveCAMs to $H$ . The normalizing behavior of softmax, analogous to its effect on the logits, means that absolute scale is invariant; that information comes exclusively from $\mathcal{L}_{\text{CFCE}}$ .
+
+Supplemental formulations and adaptations of core-focused optimization are deferred to Appendix B.
+
+## 5 EXPERIMENTS
+
+For our experiments, we evaluate the performance of ResNet-50 with a set of interpretability-motivated modifications. These are detailed in Appendix C. For consistency, we include baselines with (denoted by ‘w/ Arch’) and without these modifications. We initialize each training run on ImageNet pre-trained weights, and report fine-tuning performance.
+
+**Datasets.** We present training results for Oxford IIIT-Pets (Parkhi et al., 2012), Hard-ImageNet (Moayeri et al., 2022), and the Semantic Boundaries Dataset (Hariharan et al., 2011). These datasets span image classification tasks with binary, multiclass & multilabel targets. In addition to reporting raw prediction performance, we also report intersection-over-union (IoU) scores, indicating the overlap between ground-truth core regions and those used by the models for classification.
+
+### 5.1 HARD-IMAGENET
+
+Hard-ImageNet (Moayeri et al., 2022) is a subset of ImageNet (Deng et al., 2009) that only contains classes that have been observed to use spurious features to inform predictions (Singla and Feizi, 2022).
+
+{7}------------------------------------------------
+
+The core regions from these classes typically constitute a minority of the overall image (13.96% on average), lending further evidence to the scale-sensitivity of convolutional models (Section 4.1).
+
+To evaluate the performance of models using core regions only, Moayeri et al. (2022) introduces an evaluation suite that reports a) accuracy when core regions are removed from the image using segmentation masking, bounding-box masking and tiling over the foreground; b) *relative foreground sensitivity* (RFS) which evaluates performance degradation under corruption of the foreground; and c) saliency alignment measured by intersection over union of core masks to regions used for prediction.
+
+Table 2: Hard-ImageNet benchmarks on finetuned ResNet-50 models trained using varying approaches. Models trained using our proposed core-focused loss functions show significant improvement across all evaluations, at the cost of some un-ablated performance.
+
+| Method | Accuracy under Core-Region Ablation (%) | | | | RFS (↑) | GradCAM IoU (↑) | Contrastive-CAM IoU (↑) |
+|-|-|-|-|-|-|-|-|
+| | None (↑) | Gray Mask (↓) | Gray BBOX (↓) | Tile (↓) | | | |
+| Cross-Entropy | 94.25 | 75.94 | 69.39 | 67.38 | -0.18 | 18.44 | — |
+| CORM (Singla et al., 2022) | 92.91 | 76.20 | 69.12 | 68.32 | -0.08 | 20.43 | — |
+| DFR (Krichenko et al., 2022) | 94.39 | 73.53 | 67.51 | 66.71 | -0.27 | 18.39 | — |
+| CORM + DFR | 91.31 | 72.59 | 63.64 | 63.90 | -0.23 | 20.35 | — |
+| CE w/ Arch | 93.69 $\pm_{0.37}$ | 76.53 $\pm_{0.15}$ | 72.49 $\pm_{0.19}$ | 71.02 $\pm_{0.24}$ | -0.23 $\pm_{0.05}$ | 16.25 $\pm_{0.07}$ | 30.27 $\pm_{0.39}$ |
+| CFCE (Ours) | 90.53 $\pm_{0.69}$ | 41.78 | 31.66 | 34.31 | .224 | 18.88 | 89.22 |
+| CFCE + KL (Ours) | 90.35 $\pm_{1.59}$ | 45.49 $\pm_{0.15}$ | 37.07 $\pm_{0.57}$ | 39.47 $\pm_{0.12}$ | .236 | 51.52 | 93.39 |
+
+IoU for this benchmark was computed using GradCAMs (Selvaraju et al., 2017) only for consistency with baselines, as GradCAMs have been shown to present unfaithful explanations (Draelos and Carin, 2020). We thus include additional evaluations using ContrastiveCAMs for core-focused models. We also qualitatively evaluate improvements using core-focused approaches in Figure 3 below.
+
+
+
+Figure 3 displays three examples of images (Balance Beam, Howler Monkey, Seahorse) and their corresponding heatmaps. For each image, the top row shows the original image with a bounding box around the core region, and the bottom row shows the corresponding heatmaps. The heatmaps are generated using CAMcore (CE) and CAMcore (CFCE). The CFCE heatmaps show more concentrated, localized contributions to the core region compared to the CE heatmaps, which are more diffuse and cover more of the image.
+
+| Image | Model | CE | CFCE |
+|-|-|-|-|
+| Balance Beam | $\mathcal{L}_{core}(\uparrow)$ | 0.7135 | 2.4671 |
+| | $\mathcal{L}_{Non-Core}(\downarrow)$ | 1.062 | 0.0378 |
+| | $\frac{C}{C+NC}(\uparrow)$ | 0.4078 | 0.9849 |
+| Howler Monkey | $\mathcal{L}_{core}(\uparrow)$ | 0.0647 | 2.8670 |
+| | $\mathcal{L}_{Non-Core}(\downarrow)$ | 2.3771 | 0.0853 |
+| | $\frac{C}{C+NC}(\uparrow)$ | 0.0265 | 0.9652 |
+| Seahorse | $\mathcal{L}_{core}(\uparrow)$ | 0.0490 | 3.3287 |
+| | $\mathcal{L}_{Non-Core}(\downarrow)$ | 1.4838 | 0.5957 |
+| | $\frac{C}{C+NC}(\uparrow)$ | 0.0320 | 0.8482 |
+
+Figure 3: Models trained using CFCE exhibit suppressed contributions from non-core regions. The figure shows three examples: 'Balance Beam', 'Howler Monkey', and 'Seahorse'. For each example, there are two rows of visualizations. The top row shows the original image with a bounding box around the core region, and a table of metrics for CE and CFCE models. The bottom row shows two heatmaps: CAM^core (CE) and CAM^core (CFCE). The CFCE heatmaps show more concentrated, localized contributions to the core region compared to the CE heatmaps, which are more diffuse and cover more of the image.
+
+Figure 3: Models trained using CFCE exhibit suppressed contributions from non-core regions.
+
+### 5.2 OXFORD IIIT-PETS
+
+The Oxford IIIT-Pets dataset contains images of 37 breeds of cats and dogs, paired with segmentation trims that denote the foreground and background regions within the image. In the binary setting, the objective is to classify cats and dogs; individual breed labels are merged. This creates a class imbalance (4978 dogs to 2371 cats), however no training modifications are made to account for this. There is virtually no class imbalance in the multiclass setting.
+
+**Applicability of Approximate Masks.** Core-region masks $H$ have a smaller resolution compared to input $\mathbf{X}$ as a consequence of the convolutional backbone $g$ . Thus, in the absence of ground-truth core-region masks, approximate pixel-level masks or weaker supervision such as bounding boxes can be used to effectively suppress contributions from non-core regions. We demonstrate this empirically through competitive alignment achieved both with auto-generated masks obtained using Segment Anything (Kirillov et al., 2023) (SAM), and with weaker supervision via bounding boxes (BBOX).
+
+{8}------------------------------------------------
+
+432
+433
+434
+435
+436
+437
+438
+439
+440
+441
+442
+443
+444
+445
+446
+447
+448
+449
+450
+451
+452
+453
+454
+455
+456
+457
+458
+459
+460
+461
+462
+463
+464
+465
+466
+467
+468
+469
+470
+471
+472
+473
+474
+475
+476
+477
+478
+479
+480
+481
+482
+483
+484
+485
+
+| Method | Core Region Masks | Binary | | | | Multiclass | | | |
+|-|-|-|-|-|-|-|-|-|-|
+| | | Accuracy (%) | | IoU (%) | | Accuracy (%) | | IoU (%) | |
+| | | Train | Valid | Train | Valid | Train | Valid | Train | Valid |
+| Cross-Entropy | – | 99.82 $\pm$ 0.28 | 99.40 $\pm$ 0.07 | 78.37 $\pm$ 1.12 | 78.37 $\pm$ 1.14 | 99.92 $\pm$ 0.21 | 94.41 $\pm$ 1.07 | 80.04 $\pm$ 0.86 | 80.16 $\pm$ 0.48 |
+| CE w/ Arch | – | 99.99 $\pm$ 0.02 | 99.4 $\pm$ 0.22 | 38.58 $\pm$ 0.95 | 39.07 $\pm$ 16.98 | 100 $\pm$ 0 | 95.5 $\pm$ 0.83 | 59.86 $\pm$ 17.09 | 60.6 $\pm$ 0.2 |
+| CFCE | GT | 99.88 $\pm$ 0.10 | 99.32 $\pm$ 0.25 | 83.22 $\pm$ 1.13 | 82.92 $\pm$ 1.18 | 99.96 $\pm$ 0.03 | 92.96 $\pm$ 0.15 | 87.93 $\pm$ 0.34 | 88.16 $\pm$ 0.33 |
+| CFCE + KL | GT | 99.71 $\pm$ 0.27 | 99.32 $\pm$ 0.15 | 94.93 $\pm$ 0.88 | 92.72 $\pm$ 0.55 | 99.74 $\pm$ 0.13 | 90.08 $\pm$ 1.47 | 96.22 $\pm$ 1.88 | 93.12 $\pm$ 2.22 |
+| CFCE | SAM | 99.92 $\pm$ 0.06 | 99.37 $\pm$ 0.15 | 83.96 $\pm$ 2.1 | 83.95 $\pm$ 2.33 | 99.6 $\pm$ 0.19 | 93.26 $\pm$ 0.67 | 84.79 $\pm$ 1.26 | 85.26 $\pm$ 1.22 |
+| CFCE + KL | SAM | 99.88 $\pm$ 0.07 | 99.19 $\pm$ 0.24 | 83.46 $\pm$ 1.73 | 83.54 $\pm$ 1.96 | 99.6 $\pm$ 0.2 | 93.7 $\pm$ 0.28 | 84.67 $\pm$ 1.16 | 85.16 $\pm$ 1.2 |
+| CFCE | BBOX | 100 $\pm$ 0.01 | 99.42 $\pm$ 0.22 | 79.09 $\pm$ 2.26 | 79.13 $\pm$ 2.28 | 99.98 $\pm$ 0 | 93.83 $\pm$ 0.33 | 84.26 $\pm$ 1.86 | 84.61 $\pm$ 1.91 |
+
+Notably, KL regularization must not be applied when bounding boxes are used in place of masks, as fitting to the shape of the box mischaracterizes the target. Also note that ground-truth (GT) masks are used for validation in every setting to ensure a fair comparison.
+
+### 5.3 SEMANTIC BOUNDARIES DATASET (PASCAL VOC)
+
+The Semantic Boundaries Dataset introduces segmentation annotations to the entire Pascal VOC 2011 Dataset (Everingham et al., 2011). We use this dataset to demonstrate performance improvements for both classification and downstream detection settings.
+
+**Classification.** PASCAL VOC encodes a 20-class *multilabel* classification task; thus input image may contain multiple positive classifications. We report a pareto improvement with increased Average Precision (AP) and Intersection-over-Union (IoU) scores when using core-focused loss formulations.
+
+| Method | AP (%) | | IoU (%) | |
+|-|-|-|-|-|
+| | Train | Valid | Train | Valid |
+| Cross-Entropy | 99.75 $\pm$ 0.30 | 87.32 $\pm$ 2.58 | 46.08 $\pm$ 16.54 | 44.50 $\pm$ 16.57 |
+| CE w/ Arch | 99.57 $\pm$ 0.74 | 88.85 $\pm$ 0.79 | 40.69 $\pm$ 16.37 | 38.55 $\pm$ 16.43 |
+| CFBCE | 98.38 $\pm$ 2.49 | 88.39 $\pm$ 1.23 | 85.00 $\pm$ 1.32 | 82.07 $\pm$ 0.91 |
+| CFBCE + KL | 97.92 $\pm$ 1.00 | 87.19 $\pm$ 0.46 | 89.53 $\pm$ 1.89 | 85.39 $\pm$ 0.60 |
+
+**Segmentation.** We also report improvements in IoU performance of core-focused backbones on downstream segmentation, both when fine-tuned (i.e., with a frozen backbone) and trained end-to-end.
+
+
+
+Bar chart showing Intersection-over-Union (IoU) for 20 classes on the Semantic Boundaries Dataset. The chart compares four methods: Fine-tune with CE-Trained Init (blue), Fine-tune with CFCE-KL-Trained Init (green), E2E with CE-Trained Init (red), and E2E with CFCE-KL-Trained Init (purple). The classes are: Mean, Background, Aeroplane, Bicycle, Boat, Bus, Car, Cat, Chair, Cow, Dining Table, Dog, Horse, Motorbike, Person, Potted Plant, Sheep, Sofa, Train, TV/Monitor. The CFCE-KL methods consistently show higher IoU scores across most classes, particularly in the E2E setting.
+
+## 6 DISCUSSION
+
+In this work, we establish a connection between interpretability and feature alignment. We demonstrate the impact of utilizing *post-hoc* (i.e., post-training) explainability methods, primarily used as sanity checks, as a guiding factor during training to improve feature alignment with encouraging effect. Core-Focused Cross Entropy is a direct result of the desirable theoretical properties of ContrastiveCAMs, establishing the value of correctness guarantees in interpretability. Reductive metrics inevitably present a partial view of factors that influence model prediction, and comprehensively ensuring that deep neural networks faithfully learn to solve the intended, underlying objective remains a significant challenge for the research community. We hope that our work motivates further exploration towards connections between interpretability and alignment of deep neural networks.
+
+{9}------------------------------------------------
+
+486
+487
+488
+489
+490
+491
+492
+493
+494
+495
+496
+497
+498
+499
+500
+501
+502
+503
+504
+505
+506
+507
+508
+509
+510
+511
+512
+513
+514
+515
+516
+517
+518
+519
+520
+521
+522
+523
+524
+525
+526
+527
+528
+529
+530
+531
+532
+533
+534
+535
+536
+537
+538
+539
+
+## REFERENCES
+
+- Ananthu Aniraj, Cassio F Dantas, Dino Ienco, and Diego Marcos. Masking strategies for background bias removal in computer vision models. In *Proceedings of the IEEE/CVF International Conference on Computer Vision*, pages 4397–4405, 2023.
+- Martin Arjovsky, Léon Bottou, Ishaaan Gulrajani, and David Lopez-Paz. Invariant risk minimization, 2020. URL .
+- David Bau, Bolei Zhou, Aditya Khosla, Aude Oliva, and Antonio Torralba. Network dissection: Quantifying interpretability of deep visual representations. In *Proceedings of the IEEE conference on computer vision and pattern recognition*, pages 6541–6549, 2017.
+- Matteo Brosolo, P Vinod, and Mauro Conti. Through the static: Demystifying malware visualization via explainability. *Journal of Information Security and Applications*, 91:104063, 2025.
+- Aditya Chattopadhyay, Anirban Sarkar, Prantik Howlader, and Vineeth N Balasubramanian. Grad-cam++: Generalized gradient-based visual explanations for deep convolutional networks. In *2018 IEEE Winter Conference on Applications of Computer Vision (WACV)*. IEEE, March 2018. doi: 10.1109/wacv.2018.00097. URL .
+- Adrian Chavarro, Diego Renza, and Ernesto Moya-Albor. Connvnet as a basis for interpretability in coffee leaf rust classification. *Mathematics* (2227-7390), 12(17), 2024.
+- Yu-Hsi Chen and Chin-Tien Wu. Reynoldsflow: Exquisite flow estimation via reynolds transport theorem, 2025. URL .
+- Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In *2009 IEEE conference on computer vision and pattern recognition*, pages 248–255. Ieee, 2009.
+- Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, et al. An image is worth 16x16 words: Transformers for image recognition at scale. *arXiv preprint arXiv:2010.11929*, 2020.
+- Rachel Lea Draelos and Lawrence Carin. Use hirescam instead of grad-cam for faithful explanations of convolutional neural networks. *arXiv preprint arXiv:2011.08891*, 2020.
+- Rachel Lea Draelos and Lawrence Carin. Explainable multiple abnormality classification of chest ct volumes. *Artificial Intelligence in Medicine*, 132:102372, 2022.
+- M. Everingham, L. Van Gool, C. K. I. Williams, J. Winn, and A. Zisserman. The PASCAL Visual Object Classes Challenge 2011 (VOC2011) Results. , 2011.
+- Yuyang Gao, Siyi Gu, Junji Jiang, Sungsoo Ray Hong, Dazhou Yu, and Liang Zhao. Going beyond xai: A systematic survey for explanation-guided learning. *ACM Computing Surveys*, 56(7):1–39, 2024.
+- Robert Geirhos, Jörn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel, Matthias Bethge, and Felix A Wichmann. Shortcut learning in deep neural networks. *Nature Machine Intelligence*, 2(11):665–673, 2020.
+- Bharath Hariharan, Pablo Arbeláez, Lubomir Bourdev, Subhransu Maji, and Jitendra Malik. Semantic contours from inverse detectors. In *2011 international conference on computer vision*, pages 991–998. IEEE, 2011.
+- Stefan Haufe, Rick Wilming, Benedict Clark, Rustam Zhumagambetov, Danny Panknin, and Ahcene Boubekki. Position: Xai needs formal notions of explanation correctness. In *Interpretable AI: Past, Present and Future*, 2024.
+- Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In *Proceedings of the IEEE conference on computer vision and pattern recognition*, pages 770–778, 2016.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/D5PJX02Jki.txt b/papers/D5PJX02Jki.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1a4b5b7312da7a42534527f47a273f72e13298f3
--- /dev/null
+++ b/papers/D5PJX02Jki.txt
@@ -0,0 +1,277 @@
+
+
+{0}------------------------------------------------
+
+# BEYOND REAL: IMAGINARY EXTENSION OF ROTARY POSITION EMBEDDINGS FOR LONG-CONTEXT LLMs
+
+Xiaoran Liu1,2\*, Yuerong Song1,2\*, Zhigeng Liu1,2, Zengfeng Huang1,2,
+Qipeng Guo2,3, Zhaoxiang Liu4, Shiguo Lian4, Ziwei He2†, Xipeng Qiu1,2†
+
+1Fudan University, 2Shanghai Innovation Institute, 3Shanghai AI Lab, 4China Unicom
+
+xrliu24@m.fudan.edu.cn, ziwei.he@sii.edu.cn, xpqiu@fudan.edu.cn
+
+## ABSTRACT
+
+Rotary Position Embeddings (RoPE) have become a standard for encoding sequence order in Large Language Models (LLMs) by applying rotations to query and key vectors in the complex plane. Standard implementations, however, utilize only the real component of the complex-valued dot product for attention score calculation. This simplification discards the imaginary component, which contains valuable phase information, leading to a potential loss of relational details crucial for modeling long-context dependencies. In this paper, we propose an extension that re-incorporates this discarded imaginary component. Our method leverages the full complex-valued representation to create a dual-component attention score. We theoretically and empirically demonstrate that this approach enhances the modeling of long-context dependencies by preserving more positional information. Furthermore, evaluations on a suite of long-context language modeling benchmarks show that our method consistently improves performance over the standard RoPE, with the benefits becoming more significant as context length increases. The code is available at [https://github.com/OpenMOSS/rope\\_pp](https://github.com/OpenMOSS/rope_pp).
+
+## 1 INTRODUCTION
+
+Large Language Model (LLM) based on attention mechanism (Vaswani et al., 2017) now dominates Natural Language Processing (NLP) (OpenAI, 2023; Sun et al., 2024; OpenAI, 2024; Yang et al., 2025a), particularly in the long-context arena (Hassabis & Kavukcuoglu, 2024; Young et al., 2024; ?), where attention overcomes the long-dependency bottlenecks of earlier architectures (LeCun et al., 1995; Schmidhuber et al., 1997). Recent work extends their context length to the million-token scale (Liu et al., 2024b; InternLM, 2025), and the key driver is position-embedding design (Su et al., 2024; Press et al., 2022; Peng et al., 2024). Among current LLMs, Rotary Position Embedding (RoPE) (Su et al., 2024) has become the canonical choice (Dubey et al., 2024; Meta, 2024a;b). It encodes the absolute position of every query and key vector $q_t, k_s$ , namely token indices $s, t$ with a rotary matrix or complex multiplication, and when the two vectors make a dot product, it injects their relative position $t - s$ , namely the relative distance, into the attention scores, thus combining the merits of traditional absolute and relative position embeddings (Vaswani et al., 2017; Dai et al., 2019; Yan et al., 2019) and securing widespread adoption.
+
+Nevertheless, RoPE also has notable shortcomings, including poor length extrapolation (Press et al., 2022; Chen et al., 2023; bloc97, 2023), lack of data-sensitivity (Golovneva et al., 2024; Yang et al., 2025b), and no design for heterogeneous multi-modal input (Su, 2024a), prompting extensive research into its improvement. Most efforts concentrate on refining RoPE through interpolation designs (Peng et al., 2024; Liu et al., 2024d; Su, 2023), data-awareness (Zheng et al., 2024a;b), and feature-dimension partitioning (Wang et al., 2024; Wei et al., 2025). However, few work revisits the intrinsic computation of RoPE or analyze its inherent limitations (Hua et al., 2024; Dai et al., 2025). Re-examining RoPE in its complex-multiplication form reveals that the standard implementation keeps only the real part of the resulting complex attention score and discards the imaginary part outright (Su et al., 2024). Although taking the real part preserves the direct equivalence between complex multiplication and vector rotation, it incurs an irreversible information loss.
+
+\* Equal contribution.
+
+† Corresponding Author.
+
+{1}------------------------------------------------
+
+![Figure 1: Overview of RoPE++. The diagram is split into two horizontal sections. The top section, 'Real Attention', shows the cosine integral function: E_qk[A_{t,s}^{Re}] = K [ 2/d sum_{n=0}^{d/2-1} cos(10^{-d}(t-s)) ]. It lists advantages: 'Stronger Semantic Locality', 'No Efficiency Design on Cache', and 'Limited Position Information'. A graph shows 'cos(Δt)' decaying towards zero. The bottom section, 'Imaginary Attention', shows the sine integral function: E_qk[A_{t,s}^{Im}] = K [ 2/d sum_{n=0}^{d/2-1} sin(10^{-d}(t-s)) ]. It lists advantages: 'Capture Longer Dependency', 'Cache & Parametric Efficiency', and 'Enhance Length Extrapolation'. A graph shows 'sin(Δt)' oscillating. A central equation shows the decomposition: q_t k_s^T = sum_{n=0}^{d/2-1} q_t k_s^T e^{-iθ_n(s-t)} = q_t^T R_{θ,s-t} k_s - i (R_{θ,s-t} q_t)^T R_{θ,s-t} k_s. Arrows indicate that RoPE++ re-incorporates the imaginary part, which is discarded in standard RoPE.](49ad3a646d84bcfeac02bdf2b3792a3e_img.jpg)
+
+Figure 1: Overview of RoPE++. The diagram is split into two horizontal sections. The top section, 'Real Attention', shows the cosine integral function: E\_qk[A\_{t,s}^{Re}] = K [ 2/d sum\_{n=0}^{d/2-1} cos(10^{-d}(t-s)) ]. It lists advantages: 'Stronger Semantic Locality', 'No Efficiency Design on Cache', and 'Limited Position Information'. A graph shows 'cos(Δt)' decaying towards zero. The bottom section, 'Imaginary Attention', shows the sine integral function: E\_qk[A\_{t,s}^{Im}] = K [ 2/d sum\_{n=0}^{d/2-1} sin(10^{-d}(t-s)) ]. It lists advantages: 'Capture Longer Dependency', 'Cache & Parametric Efficiency', and 'Enhance Length Extrapolation'. A graph shows 'sin(Δt)' oscillating. A central equation shows the decomposition: q\_t k\_s^T = sum\_{n=0}^{d/2-1} q\_t k\_s^T e^{-iθ\_n(s-t)} = q\_t^T R\_{θ,s-t} k\_s - i (R\_{θ,s-t} q\_t)^T R\_{θ,s-t} k\_s. Arrows indicate that RoPE++ re-incorporates the imaginary part, which is discarded in standard RoPE.
+
+Figure 1: Overview of RoPE++. RoPE retains only the real part of the complex-valued attention score, whereas RoPE++ exploits the full complex representation to produce both real and imaginary attention. The real attention exhibits stronger semantic locality, while the imaginary attention preferentially captures long-context dependencies. RoPE++ combines the two, yielding multiple advantages.
+
+A closer look at the imaginary attention, strictly, the negative imaginary part of attention, shows that, compared with the real attention exhibiting stronger semantic locality, the imaginary heads attend more to long-context information as shown in Figure 1, promising gains on long-context tasks. Moreover, adding imaginary attention also exposes $q_t, k_s$ to a wider positional information range, implicitly improving length extrapolation. Therefore, we propose RoPE++, as illustrated in Figure 1, which re-injects the discarded imaginary component as a new group of attention heads computed in parallel with the real attentions. Particularly, we introduce RoPE++EH that keeps equal attention head number while halving QKV parameters as well as KV cache, and RoPE++EC that keeps equal cache size and doubles the number of attention heads. Theoretical analysis and pre-training experiments validate the above advantages. Both RoPE++EH and RoPE++EC outperform vanilla RoPE and other position embeddings on general tasks. On long-context benchmarks, RoPE++EH achieves comparable results with vanilla RoPE with half the cache, whereas RoPE++EC outperforms significantly at the same cache cost. Our contributions can be summarized as follows:
+
+- We first identify the loss of imaginary information in standard RoPE and find it advantageous for capturing long-context dependencies by analyzing the properties of imaginary attention.
+- Building on this, we propose RoPE++, which reintroduces the imaginary computation into attention in two configurations, RoPE++EH with equal head number and halved KV cache, and RoPE++EC with equal cache size and doubled attention heads. Both preserve the unified absolute–relative position-embedding format.
+- Pre-training and evaluation at 376M and 776M sizes show that RoPE++EH and RoPE++EC outperform vanilla RoPE and other position embeddings on average across short- and long-context benchmarks. Further analysis reveals that the imaginary attentions play a dominant role in modeling long-context dependencies, confirming the effectiveness of introducing imaginary attention for improved long-context capability.
+
+## 2 RELATED WORK
+
+Rotary Position Embedding (RoPE) is the dominant position embedding in current LLMs (Dubey et al., 2024; Meta, 2024a;b; Yang et al., 2025a). We analyze its good properties in Appendix B, including unifying relative and absolute information via rotation matrices and complex multiplication, and semantic aggregation as well as long-context decay. Yet it still faces many other challenges,
+
+{2}------------------------------------------------
+
+attracting a great deal of effort to its improvement as mentioned above. A large body of work targets length extrapolation, scaling the rotary base (bloc97, 2023; Liu et al., 2024d; Xiong et al., 2024), interpolating or compressing index ranges (Press et al., 2022; Peng et al., 2024; Jin et al., 2024), or coupling RoPE with sparse attention (Lu et al., 2024; Xiao et al., 2024a; Liu et al., 2024c) to let models process contexts far longer than the training window. Other efforts extend RoPE to heterogeneous, cross-modal inputs (Su, 2024a), especially text-video sequences (Wang et al., 2024; Wei et al., 2025). Parallel lines design parametric schemes that encode contextual cues (Golovneva et al., 2024; Zheng et al., 2024a; Lin et al., 2025), refining or replacing RoPE to yield data-dependency.
+
+However, few works revisit RoPE’s intrinsic computation or analyze its inherent limitations (Hua et al., 2024; Yang et al., 2025b; Dai et al., 2025). Particularly, the imaginary information loss of RoPE in rotation format compared with the complex multiplication format remains overlooked. Although prior work has tried to incorporate the full complex computation into the self-attention mechanism or neural networks (Wang et al., 2025; Lee et al., 2022), the characteristics and functionality of the imaginary component in position embedding remain unexplored. Therefore, we propose RoPE++ and close this gap through a deep analysis of the mathematical properties of imaginary attention and extensive validation on both short- and long-context downstream tasks.
+
+## 3 METHODOLOGY
+
+We begin our method by revisiting the complex form of RoPE. Only the real part of the complex product is retained, and the imaginary part is discarded, as shown in Equation 1. Although current LLMs perform well with this real-only attention, omitting the imaginary component may remove physical information. LLM no longer sees the full magnitude and phase of the complex attention result. This raises the question: can the imaginary part be re-incorporated into the attention computation?
+
+$$\begin{aligned} \mathbf{A}_{t,s} &= \operatorname{Re} \left[ \sum_{n=0}^{d/2-1} \tilde{q}_t^{(n)} \tilde{k}_s^{(n)*} e^{-i\theta_n(t-s)} \right] = \operatorname{Re} \left[ \sum_{n=0}^{d/2-1} \left( \tilde{q}_t^{(n)} e^{-i\theta_n t} \right) \left( \tilde{k}_s^{(n)} e^{-i\theta_n s} \right)^* \right] \\ &= \sum_{n=0}^{d/2-1} \left( \tilde{q}_t^{(2n)} \tilde{k}_s^{(2n)} + \tilde{q}_t^{(2n+1)} \tilde{k}_s^{(2n+1)} \right) \cos \theta_n(t-s) + \\ &\quad \sum_{n=0}^{d/2-1} \left( \tilde{q}_t^{(2n)} \tilde{k}_s^{(2n+1)} - \tilde{q}_t^{(2n+1)} \tilde{k}_s^{(2n)} \right) \sin \theta_n(t-s) \end{aligned} \quad (1)$$
+
+In this section, we will first propose our RoPE++ by re-introducing the imaginary information, in Section 3.1, as a new group of attention heads, namely imaginary attentions, compared with original real attentions. We then analyze the strengths from three aspects, the imaginary heads’ stronger capture of long-context dependencies in Section 3.2, the cache and parameter reduction by combining imaginary and real heads in Section 3.3, and the impact on length extrapolation in Section 3.4.
+
+### 3.1 IMAGINARY EXTENSION OF ROPE
+
+We first recover the imaginary part that is discarded in Equation 1. The resulting expression is given in Equation 2. Strictly speaking, it is the negative imaginary part, and the reason will be detailed in Section 3.2. Similar to the real part, the imaginary part carries relative position information between $q_t, k_s$ , so the formula can be rearranged into a vector form as shown in Equation 2.
+
+$$\begin{aligned} \mathbf{A}_{t,s}^{\text{Im}} &= -\operatorname{Im} \left[ \sum_{n=0}^{d/2-1} \tilde{q}_t^{(n)} \tilde{k}_s^{(n)*} e^{-i\theta_n(t-s)} \right] = -\operatorname{Im} \left[ \sum_{n=0}^{d/2-1} \left( \tilde{q}_t^{(n)} e^{-i\theta_n t} \right) \left( \tilde{k}_s^{(n)} e^{-i\theta_n s} \right)^* \right] \\ &= \sum_{n=0}^{d/2-1} \left( \tilde{q}_t^{(2n)} \tilde{k}_s^{(2n)} + \tilde{q}_t^{(2n+1)} \tilde{k}_s^{(2n+1)} \right) \sin \theta_n(t-s) - \\ &\quad \sum_{n=0}^{d/2-1} \left( \tilde{q}_t^{(2n)} \tilde{k}_s^{(2n+1)} - \tilde{q}_t^{(2n+1)} \tilde{k}_s^{(2n)} \right) \cos \theta_n(t-s) \end{aligned} \quad (2)$$
+
+We observe that the imaginary attention still follows a rotation form and can be decomposed into absolute position embeddings on $q_t, k_s$ , as shown in Equation 3. Specifically, the embedding applied
+
+{3}------------------------------------------------
+
+to $k_s$ is identical to that used in the real attention in Equation 6 in Appendix B. For $q_t$ , the embedding is equivalent to rotating the vector by $-\pi/2$ before applying the same embedding in the real case.
+
+$$\begin{aligned} A_{t,s}^{\text{Im}} &= \sum_{n=0}^{d/2-1} \underbrace{\begin{bmatrix} q_t^{(2n+1)} \\ -q_t^{(2n)} \end{bmatrix} \begin{bmatrix} \cos \theta_n(t-s) & \sin \theta_n(t-s) \\ -\sin \theta_n(t-s) & \cos \theta_n(t-s) \end{bmatrix} \begin{bmatrix} k_s^{(2n)} \\ k_s^{(2n+1)} \end{bmatrix}}_{\text{Relative PE}} \\ &= \sum_{n=0}^{d/2-1} \underbrace{\left( \begin{bmatrix} \cos \theta_n t & -\sin \theta_n t \\ \sin \theta_n t & \cos \theta_n t \end{bmatrix} \begin{bmatrix} q_t^{(2n+1)} \\ -q_t^{(2n)} \end{bmatrix} \right) \left( \begin{bmatrix} \cos \theta_n s & -\sin \theta_n s \\ \sin \theta_n s & \cos \theta_n s \end{bmatrix} \begin{bmatrix} k_s^{(2n)} \\ k_s^{(2n+1)} \end{bmatrix} \right)}_{\text{Absolute PE}} \end{aligned} \quad (3)$$
+
+We thus obtain an expression for the imaginary attention, strictly speaking, the negative imaginary attention. If we denote the rotation matrix as $\mathcal{R}$ , and $\mathcal{R}_{\Theta, \cdot}$ . The latter is parameterized with $\theta_0, \dots, \theta_{d/2-1}$ . The computation of real and imaginary attention can be summarized in Equation 4.
+
+$$\begin{aligned} A_{t,s}^{\text{Re}} &= \text{Re} \left[ \sum_{n=0}^{d/2-1} q_t^{(n)} \tilde{k}_s^{(n)*} e^{i\theta_n(s-t)} \right] = (\mathcal{R}_{\Theta,t} q_t)^\top \mathcal{R}_{\Theta,s} k_s = q_t^\top \mathcal{R}_{\Theta,s-t} k_s \\ A_{t,s}^{\text{Im}} &= -\text{Im} \left[ \sum_{n=0}^{d/2-1} q_t^{(n)} \tilde{k}_s^{(n)*} e^{i\theta_n(s-t)} \right] = (\mathcal{R}_{\Theta,t} \mathcal{R}_{-\frac{\pi}{2}} q_t)^\top \mathcal{R}_{\Theta,s} k_s = (\mathcal{R}_{-\frac{\pi}{2}} q_t)^\top \mathcal{R}_{\Theta,s-t} k_s \end{aligned} \quad (4)$$
+
+Notably, the newly introduced imaginary component retains the key property of the original RoPE, that it can still be formulated either as a relative position or as an absolute position embedding. The only required adjustment is to rotate $q_t$ by $-\pi/2$ and then apply the standard position embedding to obtain the imaginary term. We refer to RoPE augmented with this imaginary extension as **RoPE++**. This augmentation raises further questions: what semantics does the imaginary attention convey, does it introduce additional overhead, and can it enhance model performance?
+
+### 3.2 CAPTURE LONGER DEPENDENCY
+
+As stated in Preliminary in Appendix B, the original RoPE-based attention or real attention exhibits *semantic aggregation* and *long-context decay*, both governed by its characteristic curve, as shown in Equation 7 and Figure 1. Similarly, we can derive the characteristic curve for the imaginary attention in RoPE++. It is the average of $\sin(\theta\Delta t)$ over the same frequency distribution, approximating a sine integral function as shown in Equation 5 and Figure 1.
+
+$$c_{\text{Im}}(\Delta t) = \frac{2}{d} \sum_{n=0}^{d/2-1} \sin(10^{-\frac{n}{d}} \Delta t), \quad \tilde{c}_{\text{Im}} = \int_{10^{-4}}^1 \frac{\sin \theta t}{\theta \ln 10^4} d\theta = \text{Si}(\Delta t) - \text{Si}\left(\frac{\Delta t}{10^4}\right) \quad (5)$$
+
+Although modeling distance with $\sin(\theta\Delta t)$ is counter-intuitive, since $\sin(\theta\Delta t)$ is zero at zero relative distance, rises, then falls, unlike $\cos(\theta\Delta t)$ 's monotonic drop in the first half-period, the characteristic curve of the imaginary attention still shares the semantic-aggregation property of the real part. For $\Delta t > 0$ , when $q_t, k_s$ are similar, their attention is on average larger regardless of relative distance, which is the reason why we take the negative imaginary part as imaginary attention. Moreover, on average, this component attends more to distant positions. As shown in Figure 1, its characteristic curve declines very slowly beyond a certain distance. Consequently, the imaginary part assigns more weight to the long-context region than the real part, helping LLM retrieve long-context information.
+
+### 3.3 CACHE AND PARAMETRIC EFFICIENCY
+
+As described earlier, computing the imaginary attention requires only rotating the $q_t$ by $-\pi/2$ , while every other operation is identical to the original RoPE. Because the positional embedding of $k_s$ is unchanged, we can interleave the $-\pi/2$ -rotated $q_t$ with the original $q_t$ and perform the real and imaginary attention in a single pass in FlashAttention (Dao, 2024). Consequently, no extra KV
+
+{4}------------------------------------------------
+
+
+
+Figure 2: Visualization of GQA with different RoPE schema. (a) GQA with RoPE: Shows a standard GQA structure with two query heads (q1, q2) and two key heads (k1, k2) sharing a single value head (v). (b) GQA with RoPE++EC: Shows a structure where the query heads are doubled (q1, q2, q3, q4) and the key heads are halved (k1, k2), sharing a single value head (v). (c) GQA with RoPE++EH: Shows a structure where the query heads are halved (q1, q2) and the key heads are doubled (k1, k2), sharing a single value head (v).
+
+Figure 2: Visualization of GQA with different RoPE schema. RoPE++EC shares equal cache and twice the attention head with RoPE, while RoPE++EH has equal attention head and half the KV cache.
+
+
+
+Figure 3: Comparison of trained position embedding interval between RoPE and RoPE++. The figure shows four plots: (a) Position embedding of q^(2n), k^(2n+1) in RoPE; (b) Position embedding of q^(2n), k^(2n+1) in RoPE++; (c) Position embedding of q^(2n+1), k^(2n) in RoPE; (d) Position embedding of q^(2n+1), k^(2n) in RoPE++. Each plot shows cosine (cos) and sine (sin) components of position embeddings over relative positions from -2048 to 12288. A dashed line indicates the trained interval, and the area beyond it is shaded yellow (learned) or gray (extrapolated).
+
+(a) Position embedding of $q^{(2n)}, k^{(2n+1)}$ in RoPE (b) Position embedding of $q^{(2n)}, k^{(2n+1)}$ in RoPE++ (c) Position embedding of $q^{(2n+1)}, k^{(2n)}$ in RoPE (d) Position embedding of $q^{(2n+1)}, k^{(2n)}$ in RoPE++
+
+Figure 3: Comparison of trained position embedding interval between RoPE and RoPE++. The area within the dashed line represents trained relative position, and that beyond is in length extrapolation, with learned position embedding values colored in yellow and the opposite in gray.
+
+cache is introduced, and the method plugs directly into MHA or GQA (Ainslie et al., 2023), merely doubling the attention head group size, as shown in Figure 2b. We refer to this configuration as **RoPE++EC**, namely RoPE++ with equal cache size. The only cost of RoPE++EC is an additional imaginary attention computed alongside the real one under the fixed QKV parameter budget.
+
+Conversely, if the total head number is kept fixed, both QKV parameters and KV cache sizes are halved. We refer to this configuration as **RoPE++EH**, namely RoPE++ with equal attention head number, as shown in Figure 2c. In long-context scenarios, RoPE++EH halves the cache and raises throughput. Because the imaginary attention doubles the number of output heads, $W_o$ must be twice as large as $W_q$ . Therefore, $W_o$ in RoPE++EH equals the original RoPE size, whereas $W_o$ in RoPE++EC is double-sized. Experiments in Section 4 show that RoPE++EC outperforms the original RoPE, especially on long-context tasks, and RoPE++EH delivers comparable or even superior results.
+
+Importantly, the imaginary and real attention, though computed independently and treated as separate heads, must share the same parameter. Both RoPE++EH and RoPE++EC share $W_q$ between the real and imaginary attention. Allocating distinct subsets of heads to imaginary and real attention would effectively collapse back to standard RoPE, since rotating $q_i$ in imaginary attention by $\pi/2$ yields real attention, with no architecture modification. In other words, imaginary attention is defined relative to real attention and cannot exist independently. Therefore, configurations such as 75% imaginary vs. 25% real or 100% imaginary (applying only the imaginary part) are impossible under RoPE++.
+
+### 3.4 IMPACT ON LENGTH EXTRAPOLATION
+
+A closer inspection of the real and imaginary attention computations reveals an interesting discovery. In vanilla RoPE-based attention, or real attention, as shown in Equation 6, even-index query dimensions $q^{(2n)}$ and odd-index key dimensions are multiplied only by $\cos \theta_n(t-s)$ and $\sin \theta_n(t-s)$
+
+{5}------------------------------------------------
+
+whose values are always non-negative when $\theta_n$ is small. Once the input length exceeds the pre-training context length, these dimensions encounter out-of-distribution (OOD) negative embeddings as shown in Figure 5f and thus extrapolate poorly (Liu et al., 2024d; Peng et al., 2024). In RoPE++, as shown in Equation 3, these dimensions are multiplied by $-\cos \theta_n(t - s)$ and $\sin \theta_n(t - s)$ in the imaginary attention, so during pre-training, they have already observed both negative and positive position embedding as well as their maximum and minimum value $\pm 1$ . Consequently, these dimensions no longer suffer from the length extrapolation problem in longer contexts (Liu et al., 2025b).
+
+Likewise, odd-index query dimensions $q^{(2n+1)}$ and even-index key dimensions $k^{(2n)}$ encounter only $\cos \theta_n(t - s)$ and $-\sin \theta_n(t - s)$ in the real attention, and the imaginary attention further exposes them to $\cos \theta_n(t - s)$ and $\sin \theta_n(t - s)$ . Yet this alone does not expand the position embedding range trained in pre-training, as shown in Figure 5h and Figure 5j. However, when real and imaginary attention are combined, $q_t, k_s$ in RoPE++ attains the full cos and sin value range, once the training length exceeds half the sinusoidal period, whereas the vanilla RoPE requires a full period. Consequently, more dimensions in RoPE++ observe complete positional information. Therefore, perplexity grows more slowly beyond the maximum supported context length (Liu et al., 2024d; Men et al., 2024).
+
+## 4 EXPERIMENT
+
+### 4.1 SETUP
+
+We validate RoPE++ at both 776M and 376M model sizes, with architectural details in Appendix C. Both models are pre-trained on DCLM-Baseline-1.0 corpus (Li et al., 2024) by HuggingFace Transformers (Wolf et al., 2020) on 8 NVIDIA H200 160 GB GPUs. For each size, we use a batch size of 0.5M tokens and pre-train for 50B tokens. We use AdamW (Loshchilov et al., 2017) optimizer with weight decay 0.1, a maximum learning rate of 5e-4, and a warmup-stable-decay scheduler. We use the first 0.5B tokens for warmup, and the final 5B tokens for decay, and the learning rate ends at 0.
+
+We compare our RoPE++ with standard RoPE (Su et al., 2024) and other well-known position embedding designs, including FoPE (Hua et al., 2024), Pythia (namely, partial RoPE with only last 1/4 dimensions being rotated) (Biderman et al., 2023), as well as ALiBi (Press et al., 2022). We pre-train all methods on 4k context length with an initial rotary base of 10000. For RoPE and RoPE++, we conduct continuous long-context pre-training. Following Xiong et al. (2024); Lv et al. (2024), we scale the rotary base from 10000 to 500000 and train for 10B tokens from DCLM on 32k context length, using a cosine-annealing learning rate scheduler and keeping all other settings.
+
+### 4.2 SHORT-CONTEXT EVALUATION
+
+We evaluate both short-context and long-context tasks based on OpenCompass (Contributors, 2023). For short-context evaluation, we measure perplexity on WikiText (Merity et al., 2017) and LAMBADA (Paperno et al., 2016) and assess downstream tasks mainly in Open LLM Leaderboard (HuggingFace, 2023), including TruthfulQA (Lin et al., 2022), PIQA (Bisk et al., 2020), HellaSwag (Zellers et al., 2019), Winogrande (Sakaguchi et al., 2020), ARC-e (Clark et al., 2018), GPQA (Rein et al., 2023), SocialIQA (Sap et al., 2019), OpenBookQA (Mihaylov et al., 2018), and SuperGLUE (Wang et al., 2019). All models are tested within a 4k context length.
+
+The results are shown in Table 1. Our RoPE++EC and RoPE++EH achieve the best average scores on short-context tasks compared with RoPE and every other position embedding design. Notably, RoPE++EH surpasses standard RoPE with only half the KV-cache and QKV parameters. After further long-context pre-training, RoPE++ still retains this edge over RoPE on short-text benchmarks.
+
+### 4.3 LONG-CONTEXT EVALUATION
+
+For long-context evaluation, we evaluate downstream performance at varying lengths with the classical synthetic benchmarks, RULER (Hsieh et al., 2024) and BABILong (Kuratov et al., 2024). The results are shown in Table 2 and Figure 6. We highlight the comparison with RoPE in long-context training because RoPE is the position embedding currently most widely used by long-context LLMs.
+
+On RULER and BABILong up to 64k context, our RoPE++ again acquires the highest scores. Particularly, RoPE++EH achieves comparable performance with vanilla RoPE using half the KV-
+
+{6}------------------------------------------------
+
+| | Wiki ppl ↓ | LMB ppl ↓ | TQA acc ↑ | PIQA acc ↑ | Hella acc ↑ | Wino acc ↑ | ARC-e acc ↑ | GPQA acc ↑ | SIQA acc ↑ | OBQA acc ↑ | SG acc ↑ | Avg. |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| 376M Short | | | | | | | | | | | | |
+| RoPE | 19.9 | 32.7 | 35.5 | 66.3 | 34.8 | 50.9 | 39.3 | 24.8 | 38.6 | 27.4 | 43.7 | 40.1 |
+| FoPE | 19.3 | 33.0 | 33.8 | 65.9 | 34.5 | 53.0 | 37.0 | 28.8 | 39.5 | 24.2 | 43.6 | 40.0 |
+| Pythia | 19.2 | 32.9 | 34.7 | 65.8 | 34.9 | 51.5 | 41.3 | 21.2 | 39.7 | 25.6 | 42.5 | 39.7 |
+| ALiBi | 21.2 | 34.6 | 33.8 | 66.1 | 34.2 | 51.1 | 44.4 | 24.8 | 38.7 | 27.4 | 43.9 | 40.5 |
+| RoPE++ EH | 20.8 | 33.6 | 36.3 | 66.4 | 34.5 | 52.5 | 40.9 | 23.7 | 40.5 | 24.8 | 43.2 | 40.3 |
+| RoPE++ EC | 19.4 | 32.6 | 37.3 | 68.0 | 35.6 | 53.0 | 41.3 | 25.8 | 40.3 | 23.2 | 44.8 | 41.0 |
+| 376M Long | | | | | | | | | | | | |
+| RoPE | 20.4 | 33.8 | 35.4 | 64.9 | 34.1 | 50.6 | 40.4 | 21.2 | 39.4 | 27.4 | 43.5 | 39.6 |
+| RoPE++ EH | 21.7 | 34.8 | 35.2 | 64.5 | 34.3 | 49.9 | 41.5 | 22.7 | 40.0 | 27.0 | 43.1 | 39.8 |
+| RoPE++ EC | 20.0 | 33.9 | 37.1 | 66.1 | 34.1 | 53.4 | 38.1 | 21.2 | 39.2 | 28.4 | 43.7 | 40.1 |
+| 776M Short | | | | | | | | | | | | |
+| RoPE | 14.8 | 27.3 | 35.5 | 70.1 | 43.7 | 52.3 | 43.4 | 25.8 | 41.3 | 21.8 | 43.6 | 42.0 |
+| FoPE | 14.7 | 27.1 | 33.6 | 68.7 | 43.4 | 52.9 | 45.0 | 24.8 | 39.7 | 24.8 | 45.4 | 42.0 |
+| Pythia | 14.8 | 26.9 | 35.8 | 68.8 | 42.9 | 52.1 | 39.5 | 22.2 | 42.0 | 21.2 | 43.6 | 40.9 |
+| ALiBi | 15.2 | 28.3 | 35.2 | 70.2 | 43.7 | 53.6 | 43.2 | 23.7 | 40.6 | 27.6 | 45.9 | 42.6 |
+| RoPE++ EH | 15.6 | 28.1 | 35.6 | 69.6 | 42.7 | 53.5 | 45.0 | 15.8 | 41.6 | 26.8 | 42.4 | 42.5 |
+| RoPE++ EC | 14.8 | 27.3 | 36.1 | 69.3 | 43.6 | 52.3 | 43.7 | 28.3 | 40.1 | 27.6 | 44.4 | 42.8 |
+| 776M Long | | | | | | | | | | | | |
+| RoPE | 14.6 | 27.3 | 35.1 | 68.9 | 43.1 | 51.5 | 47.6 | 21.7 | 40.7 | 20.2 | 42.6 | 41.3 |
+| RoPE++ EH | 15.3 | 28.1 | 35.4 | 69.9 | 41.9 | 52.6 | 43.2 | 28.3 | 41.0 | 22.2 | 43.4 | 42.0 |
+| RoPE++ EC | 14.4 | 27.1 | 35.2 | 70.4 | 43.7 | 52.6 | 44.8 | 31.8 | 40.8 | 27.6 | 44.3 | 43.5 |
+
+Table 1: Results on short-context tasks for 776M and 376M models pre-trained in 4k context length and further trained on 32k. Best results are highlighted in bold, with the second best underlined for broader comparison. Our RoPE++ achieves the best average performance on different model sizes.
+
+| | RULER | | | | | | BABILong | | | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | 4k | 8k | 16k | 32k | 64k | Avg. | 2k | 4k | 8k | 16k | 32k | 64k | Avg. |
+| 376M Long | | | | | | | | | | | | | |
+| RoPE | 31.6 | 25.6 | 22.0 | 9.5 | 5.5 | 18.8 | 17.7 | 16.1 | 9.1 | 9.4 | 5.9 | 7.8 | 11.0 |
+| RoPE++ EH | 29.9 | 28.4 | 17.6 | 9.4 | 5.9 | 18.2 | 14.1 | 15.6 | 12.2 | 9.9 | 8.3 | 9.7 | 11.6 |
+| RoPE++ EC | 36.1 | 33.0 | 29.1 | 17.7 | 9.0 | 25.0 | 19.8 | 19.8 | 16.1 | 15.8 | 12.3 | 12.8 | 16.1 |
+| 776M Long | | | | | | | | | | | | | |
+| RoPE | 37.4 | 35.1 | 33.0 | 21.2 | 10.4 | 27.4 | 33.5 | 30.7 | 23.6 | 22.0 | 15.1 | 12.1 | 22.8 |
+| RoPE++ EH | 38.7 | 35.4 | 33.8 | 24.6 | 10.7 | 28.6 | 31.9 | 26.5 | 18.6 | 16.2 | 11.0 | 12.2 | 19.4 |
+| RoPE++ EC | 42.7 | 38.6 | 33.4 | 21.7 | 10.9 | 29.4 | 32.4 | 29.9 | 24.4 | 24.5 | 18.6 | 14.8 | 24.1 |
+
+Table 2: Results on long-context tasks, including RULER and BABILong for 776M and 376M models further trained with 5B tokens in 32k context length. Best results are highlighted in bold. Our RoPE++ achieves the best performance on average, especially in long-context scenarios.
+
+cache and QKV parameters, while RoPE++EC delivers significant gains at the same cache size. Although RoPE occasionally edges ahead at a few shorter context lengths, RoPE++, including both RoPE++EC and RoPE++EH, maintains more stable performance as context length grows and achieves best performance in 64k context length extrapolation consistently.
+
+## 5 DISCUSSION
+
+### 5.1 ROPE++ AS CACHE OPTIMIZATION
+
+As mentioned in Section 3.3, RoPE++EH halves KV cache and QKV parameters while keeping the attention head number equal, yielding evident efficiency gains. We validate this efficiency strength by assessing the memory cost as well as Time-Per-Output-Token (TPOT) of 376M and 776M models,
+
+{7}------------------------------------------------
+
+
+
+Figure 4: Efficiency comparison between RoPE and RoPE++\_EH in 376M and 776M model. The figure contains four subplots: (a) Memory Cost of 376M, (b) TPOT of 376M, (c) Memory Cost of 776M, and (d) TPOT of 776M. Each subplot shows the performance of RoPE (blue line with circles) and RoPE++\_EH (orange line with circles) across context lengths of 32, 48, 64, 96, and 128. In all cases, RoPE++\_EH consistently shows lower memory cost and higher TPOT (Time Per Output Token) compared to RoPE, with the performance gap increasing as context length increases.
+
+Figure 4: Efficiency comparison between RoPE and RoPE++EH in 376M and 776M model. RoPE++EH lowers memory cost and accelerates decoding, and the margin widens as context grows.
+
+
+
+Figure 5: Attention-score patterns and long-context performance in 376M and 776M RoPE++ models. The figure is a 2x5 grid of subplots. The top row (a-e) shows attention patterns for the 376M model: (a) Layer 2 Head 10 (Real), (b) Layer 2 Head 11 (Imag), (c) Layer 6 Head 10 (Real), (d) Layer 6 Head 11 (Imag), and (e) Average RULER-4k score. The bottom row (f-j) shows the same for the 776M model: (f) Layer 5 Head 10 (Real), (g) Layer 5 Head 11 (Imag), (h) Layer 11 Head 10 (Real), (i) Layer 11 Head 11 (Imag), and (j) Average RULER-4k curve. The attention patterns are heatmaps of query vs key indices. The RULER-4k curves show accuracy vs standard deviation of noise for real (blue) and imaginary (red) attention components.
+
+Figure 5: Attention-score patterns and long-context performance in 376M and 776M RoPE++ models. Imaginary heads attend markedly to global information, whereas real heads focus more on local context. Adding Gaussian noise to imaginary attention degrades long-context performance more severely, over 8 points, than the same perturbation applied to real attention.
+
+from 2k to 32k context length. We conduct the efficiency evaluation on a single NVIDIA H200 160BG GPU, with a batch size of 8 samples. The results are shown in Figure 4. At both 376M and 776M, RoPE++EH consistently reduces memory cost and speeds up decoding, with the margin widening as context length increases.
+
+### 5.2 ATTENTION PATTERN OF RoPE++
+
+To verify how imaginary attention captures long-context dependencies and to contrast it with real attention in RoPE++, we inspect the attention patterns of short-context-trained RoPE++EC at 376M and 776M as shown in Figure 5. Odd-index imaginary attention highlights the initial positions more strongly than even-index real heads, indicating a stronger global focus. Since prior work (Liu et al., 2025a; Wei et al., 2025) shows that dimensions attending globally are more critical for long-context semantics, imaginary attention may play the dominant role in long-context tasks.
+
+For further verification, we design the following validation experiment. We add Gaussian noise with equal standard deviation to the imaginary and real attention components separately, and monitor the change in RoPE++ performance on long-context tasks, such as the average score of RULER-4k. Curves for RULER-4k versus standard deviation are plotted for both real and imaginary attention. When the standard deviation $\sigma$ is small ( $\sigma < 0.2$ ), scores with corrupted real or imaginary attentions stay close to the baseline; when it is large enough ( $\sigma = 1.5$ ), both drop sharply. Importantly, in the
+
+{8}------------------------------------------------
+
+| | Short | | RULER | | | | | BABILong | | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | ppl | score | 4k | 8k | 16k | 32k | Avg | 2k | 4k | 8k | 16k | 32k | Avg |
+| 376M Long PI | | | | | | | | | | | | | |
+| RoPE | 33.4 | 42.0 | 36.5 | 33.6 | 19.7 | 10.6 | 25.1 | 19.3 | 12.3 | 10.2 | 10.9 | 10.9 | 12.7 |
+| RoPE ++EH | 34.7 | 41.7 | 28.0 | 27.6 | 15.8 | 6.9 | 19.6 | 13.3 | 12.4 | 12.8 | 8.9 | 10.4 | 11.6 |
+| RoPE ++EC | 33.7 | 42.8 | 37.0 | 32.4 | 28.3 | 10.6 | 27.1 | 24.0 | 20.7 | 15.9 | 14.3 | 12.3 | 17.4 |
+| 376M Long YaRN | | | | | | | | | | | | | |
+| RoPE | 32.8 | 42.2 | 36.4 | 32.9 | 28.4 | 15.0 | 28.2 | 22.4 | 16.4 | 11.4 | 10.7 | 11.1 | 14.4 |
+| RoPE ++EH | 33.9 | 42.2 | 32.7 | 30.2 | 24.9 | 10.7 | 24.7 | 8.7 | 9.3 | 12.1 | 11.3 | 10.9 | 10.5 |
+| RoPE ++EC | 32.9 | 43.4 | 36.0 | 33.9 | 31.7 | 17.8 | 29.8 | 27.4 | 23.6 | 18.0 | 16.9 | 12.3 | 19.6 |
+| 776M Long PI | | | | | | | | | | | | | |
+| RoPE | 27.8 | 40.4 | 37.8 | 34.4 | 30.5 | 13.4 | 29.0 | 15.3 | 16.9 | 12.7 | 11.8 | 9.3 | 13.2 |
+| RoPE ++EH | 28.8 | 40.4 | 37.9 | 35.0 | 27.5 | 14.6 | 28.8 | 21.0 | 22.4 | 17.1 | 13.7 | 11.1 | 17.1 |
+| RoPE ++EC | 27.8 | 40.5 | 43.0 | 38.7 | 28.8 | 13.6 | 31.0 | 25.7 | 23.4 | 16.4 | 9.4 | 8.0 | 16.6 |
+| 776M Long YaRN | | | | | | | | | | | | | |
+| RoPE | 27.3 | 40.9 | 37.6 | 35.0 | 33.9 | 27.5 | 33.5 | 26.9 | 25.6 | 19.5 | 16.4 | 12.2 | 20.1 |
+| RoPE ++EH | 28.3 | 40.6 | 37.9 | 34.9 | 32.2 | 26.1 | 32.8 | 28.0 | 23.9 | 18.6 | 17.8 | 11.7 | 20.0 |
+| RoPE ++EC | 27.3 | 41.5 | 42.9 | 36.5 | 36.3 | 22.2 | 34.4 | 26.3 | 24.1 | 21.1 | 19.8 | 16.9 | 21.6 |
+
+Table 3: Results of 776M and 376M models further trained with 5B tokens in 32k context length with YaRN and Linear PI. Our RoPE++ still achieves the best performance on average.
+
+intermediate range, adding noise to the imaginary attention always performs worse than corrupting the real part. When $\sigma = 1.0$ , for example, the real-noised RoPE++ outperforms the imaginary-noised one by 5 points at 376M and 8 points at 776M, which demonstrates a significant gap. Thus, impairing the imaginary heads degrades long-context performance more, confirming that imaginary attention plays a more dominant role in long context modeling.
+
+### 5.3 COMBINATION WITH OTHER LONG-CONTEXT TECHNIQUES
+
+RoPE++ can not only be combined with NTK for context extension during long-context training, but can also be combined with other long-context techniques such as Linear PI (Chen et al., 2023) and YaRN (Peng et al., 2024). Across 376M and 776M model sizes, we conduct extensive experiments of long-context further pre-training in 32k context length, with the interpolation coefficient $s = 8$ for Linear PI and $s = 32$ for YaRN, the default values in the original paper. The results are shown in Table 3. We report the perplexity on WikiText and the average score of tasks we have presented in Table 1 as the summary of short-context performance, with the full results in Table 10. Results show that RoPE++ consistently achieves the highest scores on RULER, BABILong, and short-context average score, confirming its advantage and generalization. More analysis on larger model scale and training convergence is detailed in Appendix C. More discussion on the extrapolation performance and limitation of RoPE++ can be found in Appendix D.
+
+## 6 CONCLUSION
+
+We introduce RoPE++, which employs both real and imaginary attentions. Mathematical analysis first reveals the imaginary attention’s potential for modeling long-context dependencies. Building upon this, we re-incorporate the originally discarded imaginary attention as a new group of heads while preserving the unified absolute–relative position embedding format. Particularly, we introduce RoPE++EH, with equal head as well as halved cache, and RoPE++EC with equal cache and doubled heads. Pre-training and evaluation at 376M and 776M model sizes show that both RoPE++EH and RoPE++EC outperform vanilla RoPE and other position embeddings on average across short-context tasks and acquire even larger gains in long-context scenarios. Further analysis confirms that imaginary attentions are more dominant in long-context modeling compared with original real attention, validating their effectiveness in enhancing long-context LLMs.
+
+{9}------------------------------------------------
+
+## ACKNOWLEDGEMENT
+
+This work was supported by the National Natural Science Foundation of China (No. U24B20181) and Shanghai Pilot Program for Basic Research - Fudan University 21TQ1400100 (22TQ018). We greatly appreciate all reviewers for their constructive reviews, and thanks to Jiasheng Ye for the discussion on scaling verification of model architecture.
+
+## ETHICAL STATEMENT
+
+This research follows established ethical standards and practice principles. To our knowledge, our study processes no sensitive personal data, involves no human subjects, and targets no ethically risky applications. All experiments and analyses comply with recognized guidelines, ensuring integrity, transparency, and reliability.
+
+## REPRODUCIBILITY STATEMENT
+
+To ensure the reproducibility of and to support the open-source community, we have publicly released RoPE++, its trained checkpoints, and the complete training and evaluation code. We expect these as a reference for future work on long-context LLMs, facilitating progress in this field.
+
+## REFERENCES
+
+- Joshua Ainslie, James Lee-Thorp, Michiel de Jong, Yury Zemlyanskiy, Federico Lebrón, and Sumit Sanghai. Gqa: Training generalized multi-query transformer models from multi-head checkpoints. *arXiv preprint arXiv:2305.13245*, 2023.
+- Federico Barbero, Alex Vitvitskyi, Christos Perivolopoulos, Razvan Pascanu, and Petar Veličković. Round and round we go! what makes rotary positional encodings useful? *arXiv preprint arXiv:2410.06205*, 2024.
+- Stella Biderman, Hailey Schoelkopf, Quentin Gregory Anthony, Herbie Bradley, Kyle O’Brien, Eric Hallahan, Mohammad Aflah Khan, Shivanshu Purohit, USVSN Sai Prashanth, Edward Raff, et al. Pythia: A suite for analyzing large language models across training and scaling. In *International Conference on Machine Learning*, pp. 2397–2430. PMLR, 2023.
+- Yonatan Bisk, Rowan Zellers, Ronan Le Bras, Jianfeng Gao, and Yejin Choi. PIQA: reasoning about physical commonsense in natural language. In *The Thirty-Fourth AAAI Conference on Artificial Intelligence, AAAI 2020, The Thirty-Second Innovative Applications of Artificial Intelligence Conference, IAAI 2020, The Tenth AAAI Symposium on Educational Advances in Artificial Intelligence, EAAI 2020, New York, NY, USA, February 7-12, 2020*, pp. 7432–7439. AAAI Press, 2020. doi: 10.1609/AAAI.V34I05.6239. URL .
+- bloc97. Dynamically scaled rope further increases performance of long context llama with zero fine-tuning, July 2023. URL [https://www.reddit.com/r/LocalLLaMA/comments/14mrgrpr/dynamically\\_scaled\\_rope\\_further\\_increases/](https://www.reddit.com/r/LocalLLaMA/comments/14mrgrpr/dynamically_scaled_rope_further_increases/).
+- Shouyuan Chen, Sherman Wong, Liangjian Chen, and Yuandong Tian. Extending context window of large language models via positional interpolation. *arXiv preprint arXiv:2306.15595*, 2023.
+- Peter Clark, Isaac Cowhey, Oren Etzioni, Tushar Khot, Ashish Sabharwal, Carissa Schoenick, and Oyvind Tafjord. Think you have solved question answering? try arc, the AI2 reasoning challenge. *CoRR*, abs/1803.05457, 2018. URL .
+- OpenCompass Contributors. Opencompass: A universal evaluation platform for foundation models. , 2023.
+- Chang Dai, Hongyu Shan, Mingyang Song, and Di Liang. Hope: Hyperbolic rotary positional encoding for stable long-range dependency modeling in large language models. *arXiv preprint arXiv:2509.05218*, 2025.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/DAPcmFcqgd.txt b/papers/DAPcmFcqgd.txt
new file mode 100644
index 0000000000000000000000000000000000000000..882fc27cad38f591b1cdede6d974316daf41033b
--- /dev/null
+++ b/papers/DAPcmFcqgd.txt
@@ -0,0 +1,394 @@
+
+
+{0}------------------------------------------------
+
+# MOEP: COMPACT AND EFFICIENT SPARSITY WITH MODULAR EXPERT PATHS
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+The transition from dense model architectures to sparse ones has become a key trend in the field of Large Language Models (LLMs). Using methods like Mixture-of-Experts (MoE) allows language models to scale their representation power without overloading computation, by relying on sparse parameter activation. Despite this more lightweight activation, the standard MoE approach increases the total number of parameters. This trade-off between size and sparsity can be avoided without losing performance compared to a dense baseline architecture. We introduce MoEP (Modular Expert Paths) as a solution to add sparsity while keeping the total parameter count fixed. MoEP combines model parallelism with MoE-style linear projections to implement selective token activation, which accelerates model learning and enables it to outperform the GPT-2 baseline. This opens a promising research direction, where compact models can still benefit from sparsity.
+
+## 1 INTRODUCTION
+
+Looking at the recent landscape of open Large Language Models (LLMs) reveals a clear trend emerging among the best performing models exemplified in (OpenAI et al., 2025), Meta-AI (2025)1, DeepSeek-AI et al. (2025) and Jiang et al. (2024)). Instead of relying on dense parameter activation, where every token passes through the same route, these models benefit from a scaled representation power enabled by Mixture-of-Experts (MoE). To avoid excessive computational overhead, MoE is typically implemented in a sparse manner, where only a subset of model parameters is activated at the token level for each forward pass. Although sparsity enables the scaling of the representation with agility, it also requires managing a substantially larger total parameter count.
+
+Recent and previous work have examined **sparse and routing-based models** (DeepSeek-AI et al., 2024; Muenighoff et al., 2025; Du et al., 2022; Jiang et al., 2024; OpenAI et al., 2025) and
+
+Recent works have also examined alternative sparsity approaches to **enhance efficiency and re-thinking sparsity** novel way. Mixture of Recursions (Mor) (Bae et al., 2025) uses depth based sparsity, where different tokens communicates with different depth stack of layers to achieve efficiency. While compositional approach *PaPaformer* (Tapaninaho & Oussala, 2025), introduced method of remodeling Transformer layers into smaller **parallel sub-paths**, which can be used as independently trainable modules.
+
+These efforts highlight a broader trend to improve efficiency and flexibility by enabling tokens to follow different computation paths.
+
+This paper presents *MoEP* (Modular Expert Paths), which adds model sparsity by unifying two forms of routing within a decoder-only language model: (i) **Top-k** token routing across parallel Transformer blocks, and (ii) **Mixture-of-Experts** feed-forward layers based on lightweight linear projections and **SwiGLU** variants. As a result, each token activates only a limited set of parallel blocks and experts in forward-pass, creating more diverse computational pathways while reducing redundancy. In the training phase, a load-balanced **auxiliary loss** was used to encourage the use of stable expert and block utilization without collapse.
+
+1At the time of writing this paper, no peer-reviewed publication exists for Llama 4, which is why we cite the official announcement. More background and detailed information on the Llama family of models can be found in Touvron et al. (2023a) and Touvron et al. (2023b)
+
+{1}------------------------------------------------
+
+We train our MoEP and MoEP-SwiGLU models with the **BabyLM** strict-small track2 data and used their official evaluation pipeline.
+
+Despite of GPT-2 outdatedness, we use it as a layer-wise baseline architecture for MoEP to align with the BabyLM GPT-2 baseline model and to keep designs simple. However, MoEP is not architecture bounded and same ideology can be used as well more recent dense architectures to enabling them to employ sparsity. In addition to GPT-2, BabyLM provided GPT-BERT (Charpentier & Samuel, 2024) as alternative baseline, which combines causal and masked language modeling into masked next-token prediction.
+
+Under the official evaluation, MoEP was able to outperform all BabyLM strict-small baseline models, including the GPT-2 and GPT-BERT models as well.
+
+We also show that improving routing mechanism, increased performance within parallel architecture even though MoEP did not employ the *PaPaformer* (Tapaninaho & Oussala, 2025) style of modularity, in which independent modules are partly pre-trained separately, which prior work suggest as the major of the performance increase.
+
+The main contributions of this work are summarized below:
+
+1. We propose *MoEP*, a modular sparse decoder-only architecture that integrates layer level expert networking across parallel blocks.
+2. We provide a BabyLM-compliant evaluation on the strict-small track, comparing MoEP against GPT-2 and other baseline models under matched conditions.
+3. We analyze expert networks routing behavior and show that layer level parallelism enable fast and stable training.
+4. We introduce a SwiGLU-based MoEP variant, which show that sometimes lightweight simplicity is better than adding complexity.
+
+## 2 BACKGROUND
+
+### 2.1 PARALLEL ARCHITECTURES
+
+As an alternative to dense and sparse expert styles of architecture design, some works have demonstrated interest in parallelisation to increase expressiveness or efficiency. Despite its promising results, this trend has received little attention in the LLM research community. PaLM (Chowdhery et al., 2022) uses parallelisation within layers to achieve faster training with only minor quality degradation, while Branchformer (Peng et al., 2022) combines attention and multi-layer-perceptron (MLP) with convolutional gating into parallel components to capture both local and global context. More recently, Papaformer (Tapaninaho & Oussala, 2025) proposed an alternative approach where independently trained parallel paths are combined into a larger composite model. The aim of this work is to achieve efficiency by scaling down dimensionality across parallel layers, while maintaining performance through the increased representation enabled by parallelism. MoEP builds on this idea by maintaining parallelism but coupling it with sparse MoE-style top-k routing.
+
+### 2.2 MIXTURE-OF-EXPERTS
+
+#### 2.2.1 DENSE VS. SPARSE EXPERT ARCHITECTURES
+
+After MoE adaptation into Transformer-based language models (Vaswani et al., 2023), sparse expert architectures have become almost the standard way to increase representation power without adding density. This most often means that the model is directly pre-trained using a sparse network of experts in some part of the architecture. However, there are several works where the pre-trained model itself is dense, but in the fine-tuning phase sparsity is added using methods like Low-Rank Adaptation (LoRa) (Hu et al., 2021).
+
+These models benefit from stability in the pre-training phase, where all model parameters are activated and tuned during each step, while in the fine-tuning phase switching to sparsity enables
+
+2
+
+{2}------------------------------------------------
+
+
+
+Figure 1: Expert networks placement strategies in Transformer layer. The diagram is split into two columns. The left column, titled 'Attention or FFN', shows a sublayer-level expert network. It starts with input X entering an Attention block (Q, K, V) and an FFN block. Each block has an associated 'Gate' (represented by a histogram icon). The output of the Attention block is added to its input via a residual connection ('Add and Norm'). Similarly, the output of the FFN block is added to its input via another residual connection. The final output is Y. The right column, titled 'Layer Level', shows a layer-level MoE. It starts with input X entering a 'Parallel Layer' block. This block contains multiple parallel expert networks (represented by colored rectangles). A 'Gate' (histogram icon) selects the top-k experts. The outputs of these experts are aggregated (indicated by a summation symbol ⊕) and then added to the input via a residual connection ('Add and Norm'). The final output is Y.
+
+Figure 1: Expert networks placement strategies in Transformer layer. **Left:** sublayer-level expert networks, which routes inputs within Attention, FFN or both. **Right:** ourEx layer-level MoEP, which Parallel layer router selects top- $k$ experts among $P$ parallel blocks (identical structure, distinct parameters), and aggregates their outputs.
+
+stronger specialization and increased representation power. While the most common approach among models that are sparsely pre-trained is to replace the FeedForward network with a network of experts, there is much more variation in sparsity strategies among models that add sparsity after dense pre-training. For example, in fine-tuning phase, MoLe (Wu et al., 2024) uses LoRA weights at the layer level for a pre-trained and frozen model, while LoraMoE (Dou et al., 2024) instead of applies LoRA weights only at the FFN level. DS-MoE Pan et al. (2024) takes a different approach, where expert networks are trained as dense but, during inference, the model switches to sparse activation to achieve efficiency.
+
+Among sparse expert architectures, there are also some less typical approaches, such as THOR (Zuo et al., 2022), which randomly selects experts during training, and MoE-ECR (Zhou et al., 2022), where the FFNs selects subset of tokens instead of that token itself make selection between FFN experts.
+
+#### 2.2.2 MOE PLACEMENT WITHIN TRANSFORMER ARCHITECTURE
+
+##### FFN-LEVEL MOE
+
+Since FeedForward networks dominated the parameter count in Transformer models, most common approach is to replace the feed-forward sublayer with expert networks. Many previous works have explored different methods to optimize efficiency and improve performance. Switch Transformers Fedus et al. (2022) use top-1 routing among experts and achieve significant increases in pre-training speed. LoRAMoE (Dou et al., 2024) freezes pre-trained model weights and use LoRA to create expert networks, while AdaMix (Wang et al., 2022) uses adapter-based expert networks after the FNN. State-of-the-art-models such as DeepSeek-R1 DeepSeek-AI et al. (2025) and Llama (MetaAI, 2025) employ both routed and shared expert, whereas GPT-OSS OpenAI et al. (2025) and Mistral Jiang et al. (2024) advocate routed experts.
+
+##### ATTENTION-LEVEL MOE
+
+Typically attention level experts operate on key and value projections, enabling specialized attention heads that capture diverse relational patterns. This results as a tradeoff an increase in routing com-
+
+{3}------------------------------------------------
+
+plexity inside attention mechanism in comparison to FFN-level routing. Most of the works which used this approach is related to parameter-efficient-finetuning (PEFT). SiRA Zhu et al. (2023) uses LoRA for query and key weights in attention, while pre-trained model is kept frozen. MoA Zhang et al. (2022) on the other hand does not use trainable weights, instead, it uses heterogeneous elastic rules for sparse pattern selection.
+
+##### ATTENTION + FFN
+
+Models such as JetMoE Shen et al. (2024) use expert network concurrently at both Attention and FFN levels and outperform Llama and DeepSeek model of comparable size. Mov Zadouri et al. (2023) introduces an interesting approach, where instead of using LoRA directly to model weights, it employs a mixture-of-vectors that are added to the intermediate results in Attention and FFN sublayers.
+
+##### LAYER-LEVEL MOE
+
+Instead of replacing the Attention or FFN sublayer, layer-level MoE uses parallel layers as experts as illustrated in Figure 1. This approach provides flexible and sparse pathway selection at the block level. Layer-level expert networks remain a relatively unexplored area, with the exception of MoLE (Wu et al., 2024), which applies LoRa weights at the layer level to a frozen pre-trained model.
+
+The intention of this work is to address these gaps with a novel approach, where parallel expert layers operate at smaller dimensionality. In this way, the overall parameter size is kept fixed while model sparsity is increased.
+
+## 3 METHODOLOGY
+
+
+
+Figure 2: MoEP architecture visualization. The diagram shows a vertical stack of layers. From bottom to top: Embeddings, Layer Block, MoE Shrink, Parallel Layer (repeated N times), MoE Grow, Layer Block, and LM Head. A dashed box on the right provides a detailed view of the MoE Shrink and MoE Grow blocks. The MoE Shrink block contains a 'Gate' mechanism that directs input to multiple 'Parallel Layer' units, which operate at a reduced dimension (dim\_L to dim\_P). The MoE Grow block contains a 'Gate' mechanism that directs input to multiple 'MoE' units, which operate at a larger dimension (dim\_P to dim\_L).
+
+Figure 2: MoEP architecture visualization. $N$ parallel layers are stacked before and after the MoE blocks, whose task is to reduce or increase the hidden dimension to match the layer blocks. In a Parallel layer, the Layer blocks operate on a smaller hidden dimension compared to the individual Layer blocks at the beginning and end of the model.
+
+### 3.1 OVERVIEW OF THE MOEP BASELINE ARCHITECTURE
+
+In this work, the MoEP baseline architecture (see Figure 2) interleaves two standard GPT-2 (dense) layers with a sparse middle stack: **Layer** (full size) $\rightarrow$ **MoE Block** (shrink) $\rightarrow$ **Parallel Layer** (repeated $N$ times with top- $k$ gating) $\rightarrow$ **MoE Block** (grow) $\rightarrow$ **Layer** (full size).
+
+{4}------------------------------------------------
+
+Both the initial and terminal **Layer** operate at a higher hidden dimension $d_L$ . The first **MoE Block** uses $E$ experts with top- $k$ gating to map projection into smaller hidden dimension $d_P$ suited for the parallel stack (see Figure 2). Intermediate **Parallel Layer** uses top- $k$ gating among $P$ **Layer**, which operates at a corresponding smaller hidden dimension $d_P$ . After the $N$ Parallel Layer, the second **MoE Block** performs the inverse procedure, mapping the projection from $d_P$ back to $d_L$ before the terminal **Layer**.
+
+### 3.2 MOE BLOCK PROJECTIONS (SHRINK AND GROW)
+
+Alternating between two hidden dimensionality $d_L$ and $d_P$ , there are corresponding **MoE Blocks** to ensure a smooth transition and avoid a possible information bottleneck, where overly rapid dimensionality changes could potentially discard useful information.
+
+The two **MoE Block** projections implement the following dimensionality transition:
+
+$$d_L \rightarrow \text{shrink} \quad d_P \rightarrow \text{grow} \quad d_L \quad (1)$$
+
+Both **MoE Blocks** consist of $E$ experts with token-level top- $k$ gating over experts. In our **MoEP** baseline model, experts are simple *linear* projections and in **MoEP-SwiGLU**, experts use *SwiGLU*-based feed-forward projections.
+
+### 3.3 PARALLEL LAYERS
+
+Each **Parallel Layer** contains $P$ **Parallel blocks** $\{B_1, \dots, B_K\}$ , which are architecturally equivalent to the **Layer Block**, but operate at a reduced dimension $d_P$ . The Parallel Blocks share identical sublayer structure but have fully disjointed parameters. Linear router is shaped $d_P \times P$ and it applies a token-level top- $k$ selection among the $P$ **Parallel Block**, where the routed inputs are summed up together. This routing method implements a layer level expert networking, allowing different tokens to traverse different subsets of Parallel blocks (e.q. layers) within each Parallel Layer. Stacking $N$ **Parallel Layers** yields a deep routed path in compact dimensions.
+
+### 3.4 ROUTING OBJECTIVE AND TRAINING LOSS
+
+To avoid expert (MoE) and Parallel block (Parallel Layer) collapse, which is a typical problem in sparse expert networks, we use the standard load-balancing regularizer in the training phase. More specifically, let $p_i$ denote the average routing probability assigned to Parallel block or expert $i$ over a batch. The balancing term is defined:
+
+$$\mathcal{L}_{\text{balance}} = - \sum_i p_i \log p_i \quad (2)$$
+
+computed separately for Parallel block routing and expert routing. The total objective is then:
+
+$$\mathcal{L} = \mathcal{L}_{\text{CE}} + \lambda^{\text{block}} \mathcal{L}_{\text{balance}}^{\text{block}} + \lambda^{\text{expert}} \mathcal{L}_{\text{balance}}^{\text{expert}} \quad (3)$$
+
+where $\mathcal{L}_{\text{CE}}$ is the next-token cross-entropy loss and $\lambda$ learning weight.
+
+## 4 EXPERIMENTAL SETUP
+
+### TRAINING PIPELINE
+
+To explore our idea with low resource setup, we follow **BabyLM** (Charpentier et al., 2025) training and evaluation-pipeline in addition to further training analysis. Initially we trained **GPT-2** style **byte-pair encoding** (BPE) tokenizer with fixed vocabulary of 16K and similar pattern-recognition strategy as in3, ensuring maximal similarity with the **BabyLM** baseline models. Both tokenizer and
+
+3
+
+{5}------------------------------------------------
+
+all models were trained by using BabyLM strict-small training data, which contains a little over 10 million words from curated English sources.
+
+### TRAINING PROCEDURE
+
+We trained **MoEP**, **MoEP-SwiGLU** to explore layer level sparsity and **GPT-2** to ensure matching overall performance with **BabyLM** GPT-2 baseline model. To achieve stable model training, we used textbfAdamW with **cosine learning rate decay** with the standard **dropout** and **weight decay** regularization. We initially pre-tokenized the training data with a **stride of 128** and during training, examples were randomly sampled from the full pre-tokenized dataset using an epoch-based shared seed, ensuring that all models were trained on the same examples. This pre-training process followed **BabyLM** strict-small instructions, where each model was trained for 10 epoch and each epoch were stopped after the model had seen approximately 10M words.
+
+During the pre-training, checkpoints were saved every 1M words up to 9M words, and subsequently every 10M words up to 100M words. After this, we ran fast evaluation on all checkpoints, and the final model weights, which was used on full evaluation and further analysis, were taken from the checkpoint with the best evaluation performance. This procedure show notable differences between model learning efficiency. **MoEP** and **GPT-2** achieved their best accuracy at 30M words, while **MoEP-SwiGLU** reached its peak until after 80M words. A detailed table of model based hyperparameters (hidden dimension, number of layers, parameter counts) is listed in the Appendix A.1 and Appendix A.2.
+
+### EVALUATION PROTOCOL
+
+Our model evaluation followed the official BabyLM pipeline (Charpentier et al., 2025), which contained both Zero-shot and Fine-tuning tasks. Zero-shot evaluation included **BLIMP**, **EWOK**, **WUG**, and other tasks, with the full list available in the evaluation pipeline documentation4. For tasks like **MNLI**, **QQP**, **RTE**, which involves fine-tuning, the **BabyLM** evaluation pipeline supplied both training data and default finetuning parameters that we adopted directly.
+
+### IMPLEMENTATION ENVIRONMENT
+
+We conducted all our experiments using a single NVIDIA A100 GPU in CSC’s Puhti supercomputing environment (CSC – IT Center for Science). Training a single model with 10 epochs required approximately 1-2 hours. This duration could be further reduced with code optimizations. All the model code is implemented using **PyTorch** and **Hugging Face** libraries and released for reproducibility5 and model is directly downloadable in Hugging Face6.
+
+## 5 ANALYSIS
+
+### 5.1 EVALUATION SCORES
+
+MoEP achieved the highest performance across all models, including the official **BabyLM** baselines under the strict-small track, when the **AoA** task score was included in the **Macro Average**. Even when excluding AoA from the macro average, MoEP still outperformed the **BabyLM** GPT-2 baseline, which we consider our primary comparison point due to the corresponding sublayer structure. MoEP also obtained the best score in five individual tasks, the highest count among all models evaluated.
+
+Our GPT-2 version slightly outperformed the **BabyLM GPT-2 baseline** in macro average excluding **AoA**, reaching performance near comparable to **MoEP**.
+
+However, our analysis revealed a key distinction (see Appendix A.3), that **MoEP** extracted useful patterns earlier during training, which indicates that modular sparse routing can provide better sample efficiency, even if final scores converge to similar levels.
+
+4
+
+5
+
+6
+
+{6}------------------------------------------------
+
+| Model | Zero-shot Tasks | | | | | | | Finetuned Tasks | | | | | | | Macro |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | BLIMP | EWOK | Entity | WUG | Comps | Reading | AoA | BoolQ | MNLI | MRPC | MultiRC | QQP | RTE | WSC | Avg |
+| Our Models | | | | | | | | | | | | | | | |
+| GPT-2 | 59.70 | 57.85 | 13.15 | 36.00 | 51.20 | 6.40 | – | 67.50 | 49.10 | 69.60 | 66.70 | 71.55 | 62.60 | 63.45 | 48.10 – |
+| MoEP 7 | 59.15 | 50.20 | 35.65 | 33.00 | 50.70 | 6.70 | 53.70 | 66.20 | 48.10 | 70.10 | 64.50 | 70.75 | 62.60 | 67.30 | 49.00 44.50 |
+| MoEP 8 (SwiGLU) | 60.35 | 49.50 | 17.10 | 36.50 | 51.35 | 6.60 | – | 66.30 | 48.30 | 70.60 | 67.25 | 69.40 | 54.70 | 61.55 | 47.70 – |
+| HF Baselines | | | | | | | | | | | | | | | |
+| GTP-2 9 | 61.75 | 49.90 | 13.90 | 30.55 | 51.70 | 6.50 | 11.7 | 52.10 | 33.10 | 67.60 | 57.50 | 63.60 | 56.10 | 61.50 | 46.60 37.40 |
+| GPT-BERT 10 (causal) | 67.45 | 49.50 | 34.60 | 36.05 | 52.80 | 6.70 | -3.90 | 68.10 | 46.90 | 74.50 | 68.30 | 76.70 | 56.10 | 65.40 | 54.10 41.20 |
+| GPT-BERT 11 (focus-causal) | 62.35 | 49.5 | 31.10 | 32.70 | 52.90 | 6.50 | 3.8 | 67.60 | 51.80 | 78.90 | 67.40 | 77.40 | 57.60 | 61.50 | 53.65 40.00 |
+| GPT-BERT 12 (mixed-causal) | 65.60 | 50.20 | 25.40 | 48.50 | 25.00 | 6.40 | 14.50 | 66.70 | 53.30 | 77.50 | 67.00 | 76.60 | 55.40 | 63.50 | 52.40 39.20 |
+
+Table 1: Evaluation scores on BabyLM tasks for our models (top) and Hugging Face baseline models (bottom). Two macro averages are reported: the first excludes the AoA result obtained from the Hugging Face leaderboard, while the second represents the overall text-average. In table, **BLiMP** refers to the average over BLiMP and BLiMP-supplement, **WUG** corresponds to the average of Wug Adjacency and Wug Past Tense, and **Readings** is the average of Eye Tracking and Self-Paced Reading tasks.
+
+By contrast, **MoEP-SwiGLU** did not reach the same level of performance. This suggests that lightweight linear experts are more effective at the small scale, whereas **SwiGLU** based feed-forward experts require longer training to stabilize and still achieve lower overall scores compared to the other models.
+
+Note that our **GPT-2** and **MoEP-SwiGLU** results do not include **AoA** scores, which are provided in the official **BabyLM** leaderboard.
+
+## 6 CONCLUSION AND DISCUSSION
+
+Despite promising results, **MoEP** and **MoEP-SwiGLU** were trained only on a small dataset and under strict computation budget. It therefore remains unclear whether scaling up the model size and training data would preserve **MoEP** relative performance compared to other Baseline models. Within **BabyLM**, where the training corpus and patterns to be learned were relatively simple, smaller-dimensional parallel blocks can capture these patterns as effectively as dense layers. With more complex data, however, parallel layers may no longer operate as effectively at reduced dimensionality, forcing an increase in total parameters that could exceed those required by a dense models to learn the same patterns.
+
+## REFERENCES
+
+- Sangmin Bae, Yujin Kim, Reza Bayat, Sungnyun Kim, Jiyoun Ha, Tal Schuster, Adam Fisch, Hrayr Harutyunyan, Ziwei Ji, Aaron Courville, and Se-Young Yun. Mixture-of-recursions: Learning dynamic recursive depths for adaptive token-level computation, 2025. URL .
+- Lucas Charpentier, Leshem Choshen, Ryan Cotterell, Mustafa Omer Gul, Michael Hu, Jaap Jumelet, Tal Linzen, Jing Liu, Aaron Mueller, Candace Ross, Raj Sanjay Shah, Alex Warstadt, Ethan Wilcox, and Adina Williams. Babylm turns 3: Call for papers for the 2025 babylm workshop, 2025. URL .
+- Lucas Georges Gabriel Charpentier and David Samuel. Gpt or bert: why not both?, 2024. URL .
+
+{7}------------------------------------------------
+
+- 378 Aakanksha Chowdhery, Sharan Narang, Jacob Devlin, Maarten Bosma, Gaurav Mishra, and et al.
+379 Adam Roberts. Palm: Scaling language modeling with pathways, 2022. URL [https://](https://arxiv.org/abs/2204.02311)
+380 [//arxiv.org/abs/2204.02311](https://arxiv.org/abs/2204.02311).
+381
+382 CSC – IT Center for Science. Puhti supercomputer.
+383 [systems-puhti/](https://docs.csc.fi/computing/). Accessed: 2025-08-06.
+384
+385 DeepSeek-AI, Aixin Liu, Bei Feng, Bin Wang, Bingxuan Wang, Bo Liu, and et al. Chenggang Zhao.
+386 Deepseek-v2: A strong, economical, and efficient mixture-of-experts language model, 2024. URL
+387 .
+388
+389 DeepSeek-AI, Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu,
+390 Qihao Zhu, and et al. Shirom Ma. Deepseek-r1: Incentivizing reasoning capability in llms via
+391 reinforcement learning, 2025. URL .
+392
+393 Shihan Dou, Enyu Zhou, Yan Liu, Songyang Gao, Jun Zhao, Wei Shen, Yuhao Zhou, Zhiheng Xi,
+394 Xiao Wang, Xiaoran Fan, Shiliang Pu, Jiang Zhu, Rui Zheng, Tao Gui, Qi Zhang, and Xuanjing
+395 Huang. Loramoe: Alleviate world knowledge forgetting in large language models via moe-style
+396 plugin, 2024. URL .
+397
+398 Nan Du, Yanping Huang, Andrew M. Dai, Simon Tong, Dmitry Lepikhin, and et al. Yuanzhong Xu.
+399 Glam: Efficient scaling of language models with mixture-of-experts, 2022. URL [https://](https://arxiv.org/abs/2112.06905)
+400 [arxiv.org/abs/2112.06905](https://arxiv.org/abs/2112.06905).
+401
+402 William Fedus, Barret Zoph, and Noam Shazeer. Switch transformers: Scaling to trillion parameter
+403 models with simple and efficient sparsity, 2022. URL [https://arxiv.org/abs/2101.](https://arxiv.org/abs/2101.03961)
+404 [03961](https://arxiv.org/abs/2101.03961).
+405
+406 Edward J. Hu, Yelong Shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang,
+407 and Weizhu Chen. Lora: Low-rank adaptation of large language models, 2021. URL [https://](https://arxiv.org/abs/2106.09685)
+408 [//arxiv.org/abs/2106.09685](https://arxiv.org/abs/2106.09685).
+409
+410 Albert Q. Jiang, Alexandre Sablayrolles, Antoine Roux, Arthur Mensch, and et al. Blanche Savary.
+411 Mixtral of experts, 2024. URL .
+412
+413 Meta-AI. The llama 4 herd: The beginning of a new era of natively multimodal ai in-
+414 novation. ,
+415 April 2025. Accessed: 2025-09-20.
+416
+417 Niklas Muenighoff, Luca Soldaini, Dirk Groeneveld, Kyle Lo, and et al. Jacob Morrison. Olmoe:
+418 Open mixture-of-experts language models, 2025. URL [https://arxiv.org/abs/2409.](https://arxiv.org/abs/2409.02060)
+419 [02060](https://arxiv.org/abs/2409.02060).
+420
+421 OpenAI, :, Sandhini Agarwal, Lama Ahmad, Jason Ai, Sam Altman, Andy Applebaum, Edwin
+422 Arbus, Rahul K. Arora, and et al. Yu Bai. gpt-oss-120b & gpt-oss-20b model card, 2025. URL
+423 .
+424
+425 Bowen Pan, Yikang Shen, Haokun Liu, Mayank Mishra, Gaoyuan Zhang, Aude Oliva, Colin Raffel,
+426 and Rameswar Panda. Dense training, sparse inference: Rethinking training of mixture-of-experts
+427 language models, 2024. URL .
+428
+429 Yifan Peng, Siddharth Dalmia, Ian Lane, and Shinji Watanabe. Branchformer: Parallel mlp-attention
+430 architectures to capture local and global context for speech recognition and understanding, 2022.
+431 URL .
+432
+433 Yikang Shen, Zhen Guo, Tianle Cai, and Zengyi Qin. Jetmoe: Reaching llama2 performance with
+434 0.1m dollars, 2024. URL .
+435
+436 Joonas Tapaninaho and Mourad Oussala. Papaformer: Language model from pre-trained parallel
+437 paths, 2025. URL .
+438
+439 Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timothée
+440 Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, Aurelien Rodriguez, Ar-
+441 mand Joulin, Edouard Grave, and Guillaume Lample. Llama: Open and efficient foundation
+442 language models, 2023a. URL .
+443
+
+{8}------------------------------------------------
+
+- 432 Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Niko-
+ 433 lay Bashlykov, Soumya Batra, and et al. Prajwal Bhargava. Llama 2: Open foundation and
+ 434 fine-tuned chat models, 2023b. URL .
+ 435
+ 436 Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez,
+ 437 Łukasz Kaiser, and Illia Polosukhin. Attention is all you need, 2023. URL .
+ 438
+ 439 Yaqing Wang, Sahaj Agarwal, Subhabrata Mukherjee, Xiaodong Liu, Jing Gao, Ahmed Hassan
+ 440 Awadallah, and Jianfeng Gao. Adamix: Mixture-of-adaptations for parameter-efficient model
+ 441 tuning, 2022. URL .
+ 442
+ 443 Xun Wu, Shaohan Huang, and Furu Wei. Mixture of lora experts, 2024. URL .
+ 444
+ 445 Ted Zadouri, Ahmet Üstün, Arash Ahmadian, Beyza Ermiş, Acyr Locatelli, and Sara Hooker. Push-
+ 446 ing mixture of experts to the limit: Extremely parameter efficient moe for instruction tuning,
+ 447 2023. URL .
+ 448
+ 449 Xiaofeng Zhang, Yikang Shen, Zeyu Huang, Jie Zhou, Wenge Rong, and Zhang Xiong. Mixture
+ 450 of attention heads: Selecting attention heads per token, 2022. URL .
+ 451
+ 452 Yanqi Zhou, Tao Lei, Hanxiao Liu, Nan Du, Yanping Huang, Vincent Zhao, Andrew Dai, Zhifeng
+ 453 Chen, Quoc Le, and James Laudon. Mixture-of-experts with expert choice routing, 2022. URL
+ 454 .
+ 455
+ 456 Yun Zhu, Nevan Wichers, Chu-Cheng Lin, Xinyi Wang, Tianlong Chen, Lei Shu, Han Lu, Canoce
+ 457 Liu, Liangchen Luo, Jindong Chen, and Lei Meng. Sira: Sparse mixture of low rank adaptation,
+ 458 2023. URL .
+ 459
+ 460 Simiao Zuo, Xiaodong Liu, Jian Jiao, Young Jin Kim, Hany Hassan, Ruofei Zhang, Tuo Zhao,
+ 461 and Jianfeng Gao. Taming sparsely activated transformer with stochastic experts, 2022. URL
+ 462 .
+ 463
+
+## 464 A APPENDIX
+
+### 465 A.1 MODEL HYPERPARAMETRS
+
+466
+ 467 Comparison of architectural hyperparameters across model variants.
+ 468
+
+### 469 A.2 TRAINING SETUP
+
+470
+ 471 Detailed training configurations for all models.
+ 472
+
+### 473 A.3 ANALYSIS OF TRAINING DEVELOPMENT
+
+474
+ 475 To better understand how each model architecture learns over training, we analyze their fast-
+ 476 evaluation scores across checkpoints. In the following training dynamics analysis, **BLIMP** refers
+ 477 to the average over BLiMP and BLiMP-supplement, **WUG** corresponds to the average of Wug Ad-
+ 478 jacency and Wug Past Tense, and **Readings** is the average of Eye Tracking and Self-Paced Reading
+ 479 tasks.
+ 480
+
+###### 481 MoEP
+
+482
+ 483 Figure 3 presents results for the **MoEP** model. Compared to **GPT-2** (see Figure 4), **MoEP** exhibits
+ 484 more comprehensive early learning, reaching peak performance at the 30M checkpoint, where nearly
+ 485 all task scores are at or above their task-specific means. After 90M words, deviations regress toward
+ 486 zero, with **Entity Tracking** in particular stabilizing well below the mean. This indicates that **MoEP**
+ 487 quickly learns to achieve near-optimal evaluation performance but later begins to overfit, leading
+
+{9}------------------------------------------------
+
+| Hyperparameter | GPT-2 | MoEP | MoEP SwiGLU |
+|-|-|-|-|
+| Vocabulary size | ~ 16K | ~ 16K | ~ 16K |
+| $d_{\text{model}}$ | 384 | 384 / 192 | 384 / 192 |
+| Layers | 12 | 2 / 10 | 2 / 10 |
+| Parallel blocks | - | 4 | 4 |
+| Heads | 6 | 6 / 3 | 6 / 3 |
+| Head dimension | 64 | 64 | 64 |
+| FF multiplier | 4 | 4 | 4 |
+| FF type | MLP | MLP | SwiGLU |
+| MoE FF type | - | Liner | SwiGLU |
+| N experts | - | 4 | 4 |
+| Top k | - | 2 | 2 |
+| Normalization | LN | LN | LN |
+| Attention | MHA | MHA | MHA |
+| Train seq len | 512 | 512 | 512 |
+| Total Parameter (millions) | 28M | 28M | 38M |
+
+Table 2: Architectural hyperparameters of GPT-2, MoEP, and MoEP-SwiGLU.
+
+| Hyperparameter | Value |
+|-|-|
+| Optimizer | AdamW |
+| Learning rate | $3 \times 10^{-4}$ |
+| Batch size | 16 |
+| Training epochs | 10 |
+| Gradient accumulation steps | 1 |
+| Weight decay | 0.1 |
+| Adam betas | (0.9, 0.95) |
+| Adam epsilon | $1 \times 10^{-8}$ |
+| Scheduler type | Cosine |
+| Warmup steps | 800 |
+| Random seed | 42 |
+
+Table 3: Training setup and optimization parameters.
+
+to diminished generalization. The pattern highlights that modular routing accelerates initial pattern discovery but may not sustain improvements throughout training.
+
+### GPT-2
+
+Figure 4 shows the **GPT-2** baseline smoothed task-mean fast-evaluation results. Unlike **MoEP**, once **GPT-2** reaches its best performance at the 30M checkpoint, it does not stabilize as quickly but continues to improve on certain tasks. On the other hand, after the 70M checkpoint, **WUG** begins to decline and shows no clear signs of stabilization. This reflects a key tradeoff of dense architectures: the model reaches its best scores on different evaluation tasks at different checkpoints rather than converging to a consistent stable state.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/DB2KJKFX0d.txt b/papers/DB2KJKFX0d.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5eca53be93c654d112c5b02d0790dc6e8fce4c21
--- /dev/null
+++ b/papers/DB2KJKFX0d.txt
@@ -0,0 +1,294 @@
+
+
+{0}------------------------------------------------
+
+# BDSB: BRAIN DISK SCHRÖDINGER BRIDGE FOR ENHANCING 3T BOLD fMRI USING UNPAIRED 7T DATA FOR VISUAL RETINOTOPIC DECODING
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Brain-computer interfaces increasingly rely on retinotopic mapping and visual decoding to reconstruct perceptual experiences from brain activity. High spatial and temporal resolution, coupled with a strong signal-to-noise ratio (SNR), has made 7-Tesla (7T) blood-oxygenation-level-dependent (BOLD) functional magnetic resonance imaging (fMRI) an invaluable tool for understanding how the brain processes visual stimuli. However, the limited availability of 7T MRI systems means that most research relies on 3-Tesla (3T) scans, which offer lower spatial and temporal resolution and SNR. *This naturally raises the question: Can we enhance the spatiotemporal resolution and SNR of 3T BOLD fMRI data to approximate 7T quality?* In this study, we propose a novel framework that aligns 7T and 3T fMRI data from different subjects and datasets in a shared parametric domain. We then apply an unpaired Brain Disk Schrödinger Bridge (BDSB) diffusion model to enhance the spatiotemporal resolution and SNR of the 3T data. Our approach addresses the challenge of limited 7T data by improving the 3T scan quality. We demonstrate its effectiveness by testing it on three distinct public fMRI retinotopy datasets (one 7T, one 3T, and one paired 3T/7T), as well as synthetic data. The results show that our method significantly improves the SNR and goodness-of-fit of the population receptive field (pRF) Kay et al. (2013) retinotopic decoding in the enhanced 3T data, making it comparable to 7T quality. The codes will be available at Github.
+
+## 1 INTRODUCTION
+
+Brain-computer interfaces (BCIs) increasingly rely on retinotopic mapping and visual decoding to reconstruct perceptual experiences from brain activity Miyawaki et al. (2008); Du et al. (2022); Sorger & Goebel (2020). Recent studies have demonstrated the feasibility of using retinotopic mapping for BCI control paradigms Chen et al. (2018) and decoding visually imagined content from the visual cortex for communication-oriented BCIs van den Boom et al. (2019). High-resolution functional MRI (fMRI) is central to these efforts, as it provides non-invasive access to the fine-grained organization of the visual cortex Dumoulin & Wandell (2008); Wandell & Winawer (2015).
+
+Beyond BCI applications, researchers have long sought to unravel the mechanisms of visual encoding and decoding through blood-oxygenation-level-dependent (BOLD) signals measured by fMRI. Computational models often analyze voxel-wise time series, from phase-dependent models Engel et al. (1994); DeYoe et al. (1996) used to measure eccentricity, to the widely adopted population receptive field (pRF) framework Dumoulin & Wandell (2008); Kay et al. (2013), and more recent deep learning approaches Thielen et al. (2019). These methods enable delineation of retinotopic maps: a topology-preserving representation of the visual field on the cortical surface Wandell et al. (2007); Xiong et al. (2023). Although its existence has been known for over a century Ribeiro et al. (2024), only recent advances in fMRI have made it possible to map visual areas non-invasively Dumoulin et al. (2003), with growing clinical utility in glaucoma Duncan et al. (2007), Alzheimer’s disease Brewer & Barton (2014) and BCIs.
+
+A major challenge in retinotopic mapping is the limited availability of high-quality fMRI scans. Although datasets such as the Human Connectome Project (HCP) Ugurbil et al. (2013); Van Essen
+
+{1}------------------------------------------------
+
+et al. (2013) and the Natural Scenes Dataset (NSD) Allen et al. (2022) use 7-Tesla (7T) fMRI with relatively high resolution and high signal-to-noise ratio (SNR) imaging, their enhanced resolution is not concentrated in the occipital lobe, where retinotopic maps are studied primarily. Still, these scanners provide superior resolution and SNR when compared to more widely available 3-Tesla (3T) machines which were used to generate similar datasets for more general tasks Chang et al. (2019); Horikawa & Kamitani (2017); Gong et al. (2023); Kay et al. (2020). These resources enable investigations of unparallelled scale, resolution, and SNR, empowering researchers to better understand the intricate relationship between visual input and fMRI signals.
+
+Access to high-quality 7T fMRI data would significantly benefit retinotopic mapping and related tasks. For example, standard atlases Wang et al. (2015); Glasser et al. (2016b) used to identify brain areas are often averages in many subjects and are constrained by the resolution of their underlying data. Low resolution can also pose an obstacle to pRF modeling of the time series at each cortical vertex, since the formation of these time series from raw fMRI often involves some spatial smoothing Glasser et al. (2016a). Retinotopic mapping obtained from such pRF modeling may lead to topological violations which disagree with knowledge of cortical physiology and must be corrected before further vision related decoding tasks Tu et al. (2021); Xiong et al. (2023).
+
+With the success of deep learning models in computer vision, researchers have extended these techniques to medical imaging. Generative Adversarial Networks (GANs) Goodfellow et al. (2020) and their variants Armanious et al. (2019); Phan et al. (2023); Zhu et al. (2023), as well as conditional diffusion models Ho et al. (2020); Song et al. (2020); Sasaki et al. (2021); Konz et al. (2024); Dong et al. (2024); Kim et al. (2023); Korotin et al. (2023); Chen et al. (2024a), have shown promising results. However, many of these methods rely on paired data or struggle with unpaired domain alignment, limiting their applicability to certain medical imaging tasks. On the other hand, despite their broad application across various modalities, including fundus imaging Dong et al. (2024); Shen et al. (2020), MRI-CT Li et al. (2020); Zhu et al. (2024); Cui et al. (2024); Huang et al. (2024); Zhang et al. (2024), and fMRI for natural image reconstruction Fang et al. (2020); Ren et al. (2021); Takagi & Nishimoto (2023); Chen et al. (2023; 2024b); Scotti et al. (2024); Wen et al. (2018); Gong et al. (2024), there has been limited focus on enhancing fMRI signals to improve SNR, retinotopic mapping or other neural decoding tasks. This gap highlights the need for methods that specifically target the enhancement of fMRI signals and downstream neural decoding analyses.
+
+To address these limitations, we propose a framework that improves 3T fMRI analyses using un-supervised learning. We map 3D brain surfaces into a shared parametric domain via conformal mapping and apply an unpaired Brain Disk Schrödinger Bridge (BDSB) model to enhance 3T fMRI signals. The resulting fMRI signals preserve cortical structural integrity while approximating the quality and distribution of high-resolution 7T scans, overcoming challenges from short-duration and low-resolution 3T fMRI experiments. Our key contributions are: **(a)** A robust fMRI enhancement pipeline with BDSB model, applied directly to raw fMRI data across different subjects and datasets. **(b)** To our knowledge, it's the first approach to improve fMRI SNR and retinotopic map quality using unpaired learning across public datasets. **(c)** We validate our framework on both real and synthetic experiments, demonstrating its capability to produce high-quality fMRI scans and improve downstream visual-related neural decoding tasks such as retinotopic mapping and pRF analysis.
+
+## 2 METHODOLOGY
+
+### 2.1 DATASETS AND EXPERIMENTAL DESIGNS
+
+Fig. 1 shows our pipeline. We start with three datasets: the 7T *Natural Scenes Dataset* (NSD) Allen et al. (2022), the 3T *Natural Object Dataset* (NOD) Gong et al. (2023), the 3T/7T *Temporal Decomposition Method for task-based fMRI* (TDM) Kay et al. (2020). NSD contains approximately 40 sessions per subject for 8 participants, including natural images and pRF-fLOC stimuli Benson et al. (2018); Stigliani et al. (2015), providing high-quality (HQ), fine-resolution fMRI data. In contrast, NOD includes 10 to 63 sessions per subject for 30 participants, with 9 subjects performing pRF-fLOC tasks and the rest viewing only images, offering broader but lower-quality (LQ) 3T scans in similar experiments. Additionally, TDM includes 11 subjects with 4 task-based fMRI experiments, among which 2 subjects ( $s_1, s_3$ ) underwent one eccentricity stimuli session in both 3T and 7T resolution, offering limited but comparable data with paired LQ and HQ fMRI for identical subjects.
+
+{2}------------------------------------------------
+
+
+
+Figure 1: Overview of the Pipeline. The diagram illustrates three experimental designs: 7T NSD, 3T NOD, and 3T/7T TDM. 7T NSD involves pRF Stimuli, a 7T Scanner, fMRI on dense fsaverage surface, and down-sampling to fsLR surface. 3T NOD involves pRF Stimuli, a 3T Scanner, fMRI on simple fsLR surface, and down-sampling to fsLR surface. 3T/7T TDM involves Eccentricity-based Stimuli, a 7T fMRI on native surface, and a 3T fMRI on native surface. All three designs feed into a central 'Synthetic Experiment' (HQ, LQ), 'Cross-Dataset Real Experiment' (HQ, LQ), and 'TDM Real Experiment' (HQ, LQ). These experiments feed into 'Unpaired 3T-to-7T fMRI Translation', which includes 'Sec 2.2 Conformal Parameterization', 'Sec 2.3 Brain Disk Schrödinger Bridge', and 'Sec 2.4 Resample & pRF Analysis'. The final output is 'Enhanced fMRI Signals' and 'Enhanced pRF Results'.
+
+Figure 1: Overview of the Pipeline: We design three different experimental designs from real NOD, NSD, TDM data and synthetic NSD data. All the experiments go through our pipeline with three components described in Sec. 2.
+
+Ideally, we seek to evaluate our pipeline using datasets in which the same subjects were scanned at both 3T and 7T resolution under identical visual stimuli, but publicly available datasets meeting these criteria are extremely limited. Among them, only TDM partially fulfills this requirement, providing paired 3T and 7T data for 2 subjects who underwent eccentricity-based visual stimulation. Unfortunately, each subject has only a single session for this task, making the dataset too small to support large-scale training or subject-agnostic modeling. To overcome this limitation, we design two main experiments in addition to using TDM alone. First, to enable evaluation with known ground truth, we construct a synthetic dataset by down-sampling HQ 7T data to simulate LQ 3T-like inputs. This allows us to directly compare model outputs with the original 7T data. Second, we assess the model’s generalization and cross-dataset performance, where LQ and HQ fMRI are drawn from different subjects and datasets. In this case, the real 7T fMRI for input subjects are unknown, so we train the model to map real 3T data toward the distribution of 7T data using unpaired examples, thus enabling enhancement of 3T signals without requiring subjects to undergo costly 7T scanning.
+
+Details of the three experimental designs are: **(a) Synthetic Data1**: The original NSD fMRI provides HQ targets, and their down-sampled versions act as LQ inputs. To simulate LQ fMRI, we use Neuronaps Markello et al. (2022) to transform all pRF sessions from the 164k fsaverage surface to the 32k fsLR surface, matching the space resolution of the 3T data like NOD. We add Gaussian noise to each vertex in the transformed fMRI time series to simulate signal degradation. This process creates synthetic LQ data with corresponding HQ counterparts, enabling ground-truth evaluations. The first 6 NSD subjects are used for training and the remaining 2 subjects are reserved for testing. **(b) Cross-Dataset Real Data**: All 8 NSD subjects serve as HQ targets, while the first 7 NOD subjects with pRF tasks act as LQ sources during training with the remaining 2 NOD subjects reserved for testing. Since we do not have ground truth 7T fMRI for NOD subjects, we can only evaluate the results by the overall Fréchet inception distance (FID) and the downstream pRF decoding performance. **(c) TDM Real Data1**: We use the only 2 subjects from TDM who took the eccentricity stimuli. Due to the small number of subjects, we use the first 3 runs out of 6 for train and the last 3 runs for test. A summary of the experimental strategies is shown in Tab. 1.
+
+Table 1: Our experimental strategies. For each subject $s_a$ from the NSD or NOD datasets, all trials involving the pRF stimuli are included. For the TDM dataset, only $s_1$ and $s_3$ underwent both 7T and 3T experiments; thus, we include the trials from their single eccentricity stimuli session.
+
+| Experiments | Train and Valid | | Test and Output | |
+|-|-|-|-|-|
+| | Source | Target | Source | Target |
+| Synthetic 1 | Down-sampled NSD $s_1 \sim s_6$ | 7T NSD $s_1 \sim s_6$ | Down-sampled NSD $s_7, s_8$ | 7T NSD $s_7, s_8$ |
+| Cross-Dataset Real | 3T NOD $s_1 \sim s_7$ | 7T NSD $s_1 \sim s_6$ | 3T NOD $s_8 \sim s_9$ | no ground truth |
+| TDM Real 1 | 3T TDM $s_1, s_3$ runs 1 ~ 3 | 7T TDM $s_1, s_3$ runs 1 ~ 3 | 3T TDM $s_1, s_3$ runs 4 ~ 6 | 7T TDM $s_1, s_3$ runs 4 ~ 6 |
+
+1Even when paired LQ/HQ data is available for subjects, training is performed in an unpaired manner—i.e., the target fMRI corresponds to a randomly selected subject $s_b$ , not the same subject as the input subject $s_a$ .
+
+{3}------------------------------------------------
+
+
+
+The diagram illustrates the five-step process of disk conformal parameterization. (a) displays a 3D brain mesh with a red dashed line highlighting a specific region of interest (ROI). (b) shows the ROI subdivided into a separate mesh. (c) represents the parameterized planar disk of the ROI, obtained from a harmonic map $h$ . (d) shows the refined planar disk with a specific vertex $v$ marked. (e) shows the BOLD fMRI time-series for vertex $v$ and the corresponding brain disk, with a color-coded map of the brain disk and a graph of the BOLD signal over time.
+
+Figure 2: Disk conformal parameterization process. (a) shows a brain mesh with a red dashed line indicating the ROI. (b) shows the ROI subdivision. (c) shows the parameterized planar disk of the ROI. (d) shows the refined planar disk with a vertex v. (e) shows the BOLD fMRI time-series for vertex v and the corresponding brain disk.
+
+Figure 2: Disk conformal parameterization: (a) full fsaverage surface mesh; (b) ROI subdivision of the full mesh from FreeSurfer vertex labels Fischl (2012); (c) the parameterized planar disk of the ROI obtained from harmonic map $h$ ; (d) the refined planar disk $\mathcal{A}^r$ through resulting conformal mapping $c = r \circ h$ ; (e) the BDs $\{\mathbf{x}(l)\}_{l \in [1, L]}$ generated by mapping BOLD fMRI time-series $\{y_v(l)\}_{l \in [1, L]}$ for each vertex $v$ to their corresponding locations on the refined planar disk $\mathcal{A}^r$ .
+
+### 2.2 BRAIN DISK PARAMETERIZATION
+
+To translate LQ fMRI slices into HQ counterparts, we need to align the probability spaces of 3T/7T trials across datasets. Given the SNR variations and structural differences across subjects, a shared domain is necessary. We achieve this by using the 164k fsaverage Fischl (2012) cortical surface and conformal mapping to generate parameterized brain disks for our region of interest (ROI).
+
+**Shared Surface Mesh and ROI.** We start with the original 3D surface meshes from each dataset. The NSD provides native surface meshes (approximately 220k vertices per hemisphere) for each subject, along with transformation files in FreeSurfer format Allen et al. (2022); Fischl (2012). Using the NSD code packages Allen et al. (2022), we retrieve the 3D coordinates of faces and vertices, along with vertex annotations, and transform them into the 164k fsaverage surface. In contrast, the NOD dataset stores its surface meshes in the 32k fsLR format using Cifitfy Dickie et al. (2019). The surface data and vertex annotations are retrieved via Cifitfy toolbox Dickie et al. (2019). These meshes are then transformed into the 164k fsaverage surface using Neuromaps toolbox Markello et al. (2022) with linear approximation. For TDM subjects, we directly use the native surface meshes (approximately 200k vertices) which are already aligned across 3T and 7T sessions Kay et al. (2020).
+
+To streamline analysis, we define a ROI encompassing vertices labeled as *lateraloccipital*, *cuneus*, *pericalcarine*, and *lingual*, representing key cortical regions in the occipital lobe. This ROI ensures inclusion of most primary visual cortex while significantly reducing computational overhead.
+
+**Conformal Mapping.** In order to train our enhancement model in 2D space instead of the 3D surface meshes, we choose the widely used conformal parameterization Tu et al. (2021); Ta et al. (2022); Xiong et al. (2023; 2024) $c : M \rightarrow D$ , to map a cortical surface mesh $M$ to a unit disk $D$ . Given $M$ as an open boundary genus-0 surface after cutting to ROI, the harmonic map $h : M \rightarrow D'$ minimizes the energy Jin et al. (2018); Gu et al. (2004): $E(h) = \int_M |\nabla h|^2 dv_M$ . For disk-like surfaces, the harmonic map $h$ satisfies the Laplace equation Wang et al. (2007): $\Delta h(u)_M = 0$ , $h|_{\partial M} = g$ , where $\Delta$ denotes the Laplacian operator and $g : \partial M \rightarrow \partial D'$ is a boundary mapping given by arc-length parameterization. In discrete cases, the harmonic map is efficiently obtained by solving the sparse linear system $L_h h = 0$ , where $L_h$ is the Laplacian matrix Wang et al. (2007).
+
+Denote a disk to disk refinement $r : D' \rightarrow D$ , the final conformal mapping would be a composition of $c = r \circ h$ . To achieve conformality for mapping $c$ , we can refine $r$ by iteratively modifying the mapping until its Beltrami coefficient $\mu_r$ satisfies $\|\mu_r\|_\infty \leq \epsilon_\mu$ . Wang et al. (2007); Ta et al. (2022).
+
+The final parameterization $c = r \circ h$ produces 2D Brain Disks (BDs), where each vertex's fMRI signal is conformally projected onto the disk, ensuring spatially consistency across subjects and datasets. Fig. 2 illustrates the full process, with BDs visualized by showing BOLD fMRI signal values in RGB color representation. Finally, for a single trial fMRI series of $L$ samples, we can produce $L$ BD slices: $\{\mathbf{x}(l)\}_{l \in [1, L]}$ .
+
+### 2.3 BRAIN DISK SCHRÖDINGER BRIDGE ENHANCEMENT
+
+**Background.** The Schrödinger Bridge Problem (SBP) finds the optimal stochastic process $\{x_t : t \in [0, 1]\}$ that transforms an initial distribution $p_0$ into a target distribution $p_1$ . Formally, the SBP is
+
+{4}------------------------------------------------
+
+
+
+Figure 3: Illustration of BDSB and all loss terms. The diagram shows a sequence of brain images over time steps t\_0, t\_1, ..., t\_N. A recursive generator (blue box) takes x\_{t\_j} and x\_{t\_{j+1}} as input to produce x\_{t\_j}^hat. A 'Stop Gradient' block (orange) is applied to x\_{t\_j}^hat. The generator also takes x\_{t\_j} and x\_{t\_{j+1}} as input to produce x\_{t\_j}^hat. The generator is trained using three losses: L\_ReBnce (Reconstruction loss), L\_SB (Schrödinger Bridge loss), and L\_Adv (Adversarial loss). The final output is a sequence of brain images x\_{t\_0}, x\_{t\_1}, ..., x\_{t\_N} with a 'fsaverage bd structure x' (a brain template) shown on the right.
+
+Figure 3: Illustration of BDSB and all loss terms. For a randomly selected time step $t_i \in \mathbf{t}$ , we recursively generate samples following Eq. 2 and the joint distribution to approximate distribution $\hat{x}_{1|t_i} \sim p(x_1, x_{t_i})$ as discussed in Sec. 2.3. All losses and regulations ( $\mathbb{L}_{\text{Adv}}, \mathbb{L}_{\text{SB}}, \mathbb{L}_{\text{reg}}$ ) are combined with individual weights described in B.1.
+
+defined as $T^* = \arg \min_{T \in \mathcal{Q}(p_0, p_1)} D_{\text{KL}}(T \| W^\tau)$ , where $W^\tau$ is the Wiener measure with variance $\tau$ , and $\mathcal{Q}(p_0, p_1) \subset \mathcal{P}(\Omega)$ is a stochastic process that requires the boundary distributions (i.e., start at $p_0$ and end at $p_1$ ). The solution $T^*$ is called the Schrödinger Bridge (SB), which connects the boundary distributions $(p_0, p_1)$ and works as an optimized result for the entire trajectory. In our application, $p_0$ and $p_1$ represent 3T and 7T BD distributions viewing the same pRF stimuli, and $T^*$ provides a probabilistic path bridging them. The target is to generate enhanced high-quality BDs $\{\hat{x}_1(l)\}$ from input low-quality BDs $\{x_0(l)\}$ .
+
+**Discrete Bridge Approximation.** The continuous SBP can be approximated via a sequence of Entropic Optimal Transport (EOT) problems over successive time intervals $[t_a, t_b] \subseteq [0, 1]$ Dong et al. (2024); Kim et al. (2023); Korotin et al. (2023); De Bortoli et al. (2021):
+
+$$T_{t_a, t_b}^* = \arg \min_{\gamma \in \Pi(T_{t_a}, T_{t_b})} \mathbb{E}_{(x_{t_a}, x_{t_b}) \sim \gamma} \|x_{t_a} - x_{t_b}\|^2 - 2\tau(t_b - t_a)H(\gamma), \quad (1)$$
+
+where $\gamma \in \Pi(T_{t_a}, T_{t_b})$ represents all possible joint marginal distributions consistent with the boundary states $T_{t_a}$ and $T_{t_b}$ (i.e., the most likely distributions of BDs over arbitrary interval), and $H(\cdot)$ is the entropy function. Additionally, for $t \in [t_a, t_b]$ , denote $s(t) = (t - t_a)/(t_b - t_a)$ , the conditional distribution $p(x_t | x_{t_a}, x_{t_b})$ follows the Gaussian distribution Tong et al. (2023):
+
+$$p(x_t | x_{t_a}, x_{t_b}) \sim \mathcal{N}\left(s(t)x_{t_b} + (1 - s(t))x_{t_a}, s(t)(1 - s(t))\tau(t_b - t_a)\mathbf{I}\right), \quad (2)$$
+
+By fixing $t_b = 1$ and discretizing the interval as $\mathbf{t} := \{t_i\}_{i=0}^N$ , we can compute $T_{t_i, 1}^*$ sequentially. The joint distribution $p(x_1, x_{t_i}) = p(x_1 | x_{t_i})p(x_{t_i})$ with $p(x_{t_i}) = p(x_0) \prod_{j=0}^{i-1} p(x_{t_{j+1}} | x_{t_j})$ can be iteratively approximated using Eq. 2 under the Markov assumption. Consequently, this procedure yields the SB trajectory to iteratively approximate the desired distribution $p(x_1, x_{t_i})$ as Fig. 3.
+
+**BDSB Learning.** It's necessary to obtain the posterior $p(x_1 | x_{t_i})$ in order to compute the objective function in Eq. 1. We use a neural generator $q_\phi(x_1 | x_{t_i})$ with $(x_{t_i}, t_i)$ as inputs and $\phi$ as parameters. The SB objective function over the sub-interval $[t_i, 1]$ is then reformulated as:
+
+$$\min_{\phi} \mathbb{L}_{\text{SB}}(\phi, t_i) := \mathbb{E}_{q_\phi(x_{t_i}, x_1)} \|x_{t_i} - x_1\|^2 - 2\tau(1 - t_i)H(q_\phi(x_{t_i}, x_1)) \quad (3)$$
+
+$$\text{subject to: } \mathbb{L}_{\text{Adv}}(\phi, t_i) := D_{\text{KL}}(q_\phi(x_1) \| p(x_1)) = 0$$
+
+where $q_\phi(x_{t_i}, x_1) := q_\phi(x_1 | x_{t_i})p(x_{t_i})$ , and the constraint ensures that the generator learns the high-quality distributions. By introducing a Lagrange multiplier, Eq. 3 can be reformulated into
+
+$$\min_{\phi} \mathbb{L}_1(\phi, t_i) := \mathbb{L}_{\text{Adv}}(\phi, t_i) + \lambda_{\text{SB}}\mathbb{L}_{\text{SB}}(\phi, t_i) \quad (4)$$
+
+Solving Eq. 4 with the optimal parameters $\phi$ achieves $q_\phi(x_1 | x_{t_i}) = p(x_1 | x_{t_i})$ and $q_\phi(x_{t_i}, x_1) = p(x_{t_i}, x_1)$ for every steps $t_i$ Kim et al. (2023); Dong et al. (2024). Consequently, the generator $q_\phi(x_1 | x_{t_i})$ can be directly utilized to sample the next BD $x_{t_{i+1}}$ for every steps $i = 0, 1, \dots, N-1$ . Through the iterative process shown in Fig. 3, we can generate the final enhanced fMRI response $x_{t_N}$ (i.e., the enhanced $\hat{x}_1$ ) starting from the initial 3T distribution $x_0 \sim p_0$ . The training and inference details are outlined in B.1.
+
+However, optimizing $\mathbb{L}_1$ alone does not guarantee $\hat{x}_1$ to preserve the structural details of the brain since $\mathbb{L}_1$ only ensures the optimal transformation path between signals (i.e., enhancing fMRI values
+
+{5}------------------------------------------------
+
+Table 2: Metrics on enhanced fMRI and down-stream pRF results for all three experiments.
+
+| Experiments | Metrics | raw LQ | Cycle-GAN | OTT-GAN | OTE-GAN | SCR-Net | fast-DDPM | Proposed |
+|-|-|-|-|-|-|-|-|-|
+| Synthetic | SSIM ↑ | 0.475 | 0.760 | 0.803 | 0.783 | 0.525 | 0.566 | 0.855 |
+| | PSNR ↑ | 14.24 | 22.98 | 23.39 | 22.16 | 14.64 | 15.26 | 25.05 |
+| | FID ↓ | 152.3 | 126.7 | 72.70 | 77.41 | 108.6 | 71.40 | 42.88 |
+| | $\bar{R}^2$ ↑ | 18.30 | 17.22 | 18.01 | 16.89 | 13.54 | 15.53 | 24.00 |
+| Cross-Dataset Real | FID ↓ | 183.83 | 139.69 | 96.90 | 95.91 | 177.8 | No pair data | 70.65 |
+| | $\bar{R}^2$ ↑ | 20.26 | 19.78 | 19.99 | 18.64 | 15.11 | No pair data | 25.91 |
+| TDM Real | SSIM ↑ | 0.402 | 0.602 | 0.727 | 0.702 | 0.454 | 0.511 | 0.718 |
+| | PSNR ↑ | 13.00 | 18.70 | 19.18 | 19.06 | 13.79 | 14.06 | 19.24 |
+| | FID ↓ | 166.7 | 134.9 | 84.45 | 88.00 | 107.1 | 96.91 | 62.09 |
+
+but distort BD structure). Here, we incorporate two regularization terms: **(a)** PatchNCE Dong et al. (2024); Kim et al. (2023) between enhanced $\hat{x}_1$ and its low-quality counterpart $x_0$ . **(b)** Brain disk structural similarity measure (BD-SSIM) between the generated BDs and the original fsaverage BD structure $x'$ . The final loss function $\mathbb{L}_2$ is now defined as:
+
+$$\mathbb{L}_2(\phi, t_i) := \mathbb{L}_{\text{Adv}}(\phi, t_i) + \lambda_{\text{SB}} \mathbb{L}_{\text{SB}}(\phi, t_i) + \sum_{l=\text{nce, bdl}} \lambda_{\text{Reg}_l} \mathbb{L}_{\text{Reg}_l}(\phi, t_i) \quad (5)$$
+
+### 2.4 RE-SAMPLING AND pRF DECODING
+
+With a well-trained BDSB, we can generate enhanced versions of 3T fMRI BDs. Due to the bijective nature of conformal mapping, the fMRI response for every vertex $v$ at each sample point $l$ can be re-sampled from corresponding pixel $x_v$ on BDs. By aggregating enhanced BDs across all sample points $\{\hat{x}_1(l)\}$ within a single pRF trial, we reconstruct a complete enhanced fMRI $y = \{y_v(l)\}$ .
+
+We employ pRF decoding as a downstream neural decoding task to quantify the improvements. Given a vertex-wise fMRI signal series $y = \{y_v(l)\}$ , the pRF model Dumoulin & Wandell (2008); Kay et al. (2013); Waz et al. (2024) predicts the receptive center $c_v = (c_v^{(1)}, c_v^{(2)})$ and size $\sigma_v$ on the visual field. A predicted fMRI signal for vertex $v$ is given by:
+
+$$\hat{y}_v(c_v, \sigma_v, l) = \beta \left[ \int_{z \in \text{visual field}} r(z; c_v, \sigma_v) s(l, z) dz \right] * h(l) \quad (6)$$
+
+where $h(l)$ is the hemodynamic response, $r(z; c, \sigma)$ is a Gaussian kernel, and $s(l, z)$ is the visual stimuli. The parameters $\{(c_v, \sigma_v)\}$ are estimated by minimizing the prediction error:
+
+$$(c_v, \sigma_v) = \arg \min_{c_v, \sigma_v} \sum_{l \in [1, L]} \|\hat{y}_v(c_v, \sigma_v, l) - y_v(l)\|^2 \quad (7)$$
+
+The pRF results are obtained by solving Eq. 7 for every vertices on the cortical surface. The quality of fit is usually evaluated using variance explained $R_v^2$ for each vertex $v$ (percentage): $R_v^2 := (1 - \frac{\sum_{l \in [1, L]} (\hat{y}_v(l) - y_v(l))^2}{\sum_{l \in [1, L]} (y_v(l) - \bar{y}_v)^2}) \times 100\%$ Dumoulin & Wandell (2008); Kay et al. (2013); Waz et al. (2024). Higher $R_v^2$ indicates the signal of $v$ align closer to the visual stimuli with better interpretability.
+
+## 3 EXPERIMENTS AND RESULTS
+
+**Hyperparameter and Training.** The generator and discriminator follow the architectures outlined in Kim et al. (2023); Dong et al. (2024), with further training details listed in B.1.
+
+**Evaluation Metrics.** We assess enhancement quality using standard similarity metrics (SSIM, PSNR, FID) and downstream *q-pRF* analysis Kay et al. (2013); Waz et al. (2024). For TDM dataset, only similarity metrics are reported due to their simplified stimuli. More details are in B.1.
+
+**Enhanced fMRI Results.** We adopt five 2D translation models to our pipeline as baselines (details of baseline models can be found in supplementary material). Quantitative results are summarized in
+
+{6}------------------------------------------------
+
+
+
+Figure 4: A 3x6 grid of brain surface maps showing fMRI values across different subjects, runs, and sample points. The rows are labeled 'Down-Sample', 'Enhanced', and 'Ground Truth'. The columns are labeled 'Sub-7 Run-1 f = 31', 'Sub-7 Run-6 f = 1', 'Sub-8 Run-1 f = 11', 'Sub-8 Run-5 f = 16', 'Sub-2 Run-1 f = 216', and 'Sub-3 Run-5 f = 26'. Each map is a circular disk with a color scale at the bottom ranging from 0.271 to 0.385. The 'Enhanced' row shows more distinct and detailed patterns compared to the 'Down-Sample' row, closely matching the 'Ground Truth' row.
+
+Figure 4: Illustration of down-sampled LQ, enhanced, and original HQ BDs across different NSD subjects, trial runs, and sample points. fMRI values are shown as RGB colors at their vertex location on the parameterized planar disk mapped from the 3D fsaverage surface. See More results in B.2.
+
+
+
+Figure 5: Two line graphs showing BOLD signals over time. (a) Vertex of Maximal R^2: The y-axis is 'Mean BOLD Signal' (550-950) and the x-axis is 'Runs' (prbar, prfedge). The 'enhanced' signal (red) is more aligned with the 'GT' signal (cyan) than the 'LQ' signal (blue). (b) Vertex of Minimal R^2: The y-axis is 'Mean BOLD Signal' (700-900) and the x-axis is 'Runs' (prbar, prfedge). The 'enhanced' signal (red) is also more aligned with the 'GT' signal (cyan) than the 'LQ' signal (blue).
+
+Figure 5: BOLD signals from the HQ ground truth, synthetic LQ, and the enhancement. (a) The enhanced fMRI signal for the vertex with highest $R^2$ shows a significant alignment to the ground truth, with slight misalignment on valley points. (b) The vertex with minimal $R^2$ shows a worse alignment, likely due to its minimal visual response and inactive signal pattern on low $R^2$ vertices. See more results in B.2
+
+Tab. 2. Across all real and synthetic experiments, our pipeline achieves the best performance, significantly enhancing LQ fMRI signals to better approximate HQ scans and improving pRF analysis. In contrast, baseline models generate spurious BDs to increase similarity but distort brain surface structures, leading to poorer performance in fMRI retrieval and much worse pRF results which is indicated by average $R^2$ confidence across the ROI.
+
+We illustrate the enhanced fMRI on the same parametric brain disks obtained via conformal mapping in Fig. 4. The enhanced disks display finer spatial resolution and a more distinct fMRI distribution that aligns closely with the underlying cortical structures, particularly in regions with extreme values or high curvature. To further analyze the performance, we compared the ground truth and the enhanced BOLD time series for two distinct vertices within our ROI: one with a strong response to the pRF stimuli and another with minimal response (determined by the value $R^2$ from the pRF decoding). As shown in Fig. 5, the enhanced signal closely matches the ground truth for the active vertex, demonstrating a strong performance in capturing extreme values. However, for inert vertices,
+
+{7}------------------------------------------------
+
+
+
+Figure 6: Illustration of pRF results from the NOD test subject s8. The figure is divided into two main sections. The left section shows a 2x3 grid of heatmaps on a 2D parametric domain. The rows are labeled '3T pRF' and 'Enhanced pRF'. The columns are labeled 'Sub8 R^2', 'Sub8 Angle', and 'Sub8 Ecc. rho^{-1}'. The right section shows a 2x3 grid of heatmaps on a 3D brain ROI mesh. The rows are labeled '3T pRF' and 'Enhanced pRF'. The columns are labeled 'Sub8 R^2', 'Sub8 Angle', and 'Sub8 Ecc. rho^{-1}'. Color bars at the bottom of each section indicate the scale for the heatmaps.
+
+Figure 6: Illustration of pRF results from the NOD test subject $s_8$ on both the 2D parametric domain and the 3D brain ROI mesh. Our enhancement preserves brain structure through consistent receptive fields (note that different vertex labels between fsLR and fsaverage may cause slight ROI shifts), while achieving much higher retinotopic mapping resolution and $R^2$ confidence across most ROI regions. Additional visualization results are provided in the B.2.
+
+
+
+Figure 7: (a) Two scatter plots comparing R^2 values. The left plot is 'R^2 Comparison between LQ and GT fMRI' and the right plot is 'R^2 Comparison between Enhanced and GT fMRI'. Both plots have 'R^2 from the ground truth pRF results (%)' on the x-axis and 'R^2 from down-sampled (left) or enhanced (right) fMRI (%)' on the y-axis. A dashed blue line represents the identity line. A color bar on the right of the right plot indicates the 'Number of Vertices' from 0 to 1500. (b) Two scatter plots showing receptive centers c\_v. The left plot is 'Receptive Centers c\_v from LQ fMRI' and the right plot is 'Receptive Centers c\_v from Enhanced fMRI'. Both plots have 'Visual Field for left hemisphere mu^1' on the x-axis and 'Visual Field for left hemisphere mu^2' on the y-axis. The left plot shows more dispersed points, while the right plot shows more stable and consistent localization.
+
+Figure 7: (a) $R^2$ values from down-sampled NSD fMRI (left) show greater variability and lower overall confidence compared to HQ data, while enhanced fMRI (right) significantly improves $R^2$ consistency, especially among high-confidence vertices. (b) Receptive centers $c_v$ decoded from vertices with top-40 $R^2$ values under random sampling. LQ fMRI (left) exhibits unstable and dispersed estimates, whereas enhanced fMRI (right) yields more stable and consistent localization.
+
+where the signal remains relatively constant, the alignment is weaker. This discrepancy likely arises from the difficulty in learning unchanging values based on their distribution across the brain disks.
+
+**Enhanced pRF Results.** In addition to evaluating enhanced fMRI signals directly, we assess downstream performance to demonstrate the broader utility of our pipeline. Fig. 6 compares pRF results from the NOD fMRI and those derived from enhanced fMRI time series on the parametric domain and 3D mesh. The enhanced signals yield notably higher $R^2$ values across many vertices on a much higher surface resolution, while preserving spatial organization in consistent receptive fields, despite the absence of paired supervised training.
+
+For synthetic data experiment, we further validate the performance by comparing the $R^2$ values of the native 7T pRF parameters with those derived from down-sampled and enhanced fMRI, as shown in Fig. 7(a). The down-sampled fMRI exhibits greater variance and generally lower $R^2$ values compared to the ground truth high-quality pRF results. In contrast, the $R^2$ values derived from the enhanced fMRI data shows significant improvement, particularly for vertices with high $R^2$ , while maintaining a comparable confidence threshold to the ground truth.
+
+To evaluate temporal stability, Fig. 7(b) shows receptive centers $c_v$ of the top-40 highest $R^2$ left-hemisphere vertices across 50 independent pRF analyses using random stimulus intervals. Unlike typical pRF models trained on merged time series from all session runs, randomized intervals will examine the variability and interpretability of the fMRI time series for different stimuli segments.
+
+Our results indicate that enhanced fMRI signals yield lower variability and more consistent receptive centers across randomized intervals of the pRF stimuli. These results confirm that our enhancement
+
+{8}------------------------------------------------
+
+pipeline preserves the interpretability and reliability of pRF decoding, bridging the gap to 7T data in downstream retinotopic decoding tasks.
+
+Table 3: Ablation study of our framework on: (a) different brain mapping strategies, including direct slicing, harmonic mapping, and conformal mapping; (b) the effect of different regularization terms in BDSB. All experiments are conducted on the synthetic experimental setting.
+
+| Brain Mapping | Reg face | Reg hslsim | SSIM | PSNR | FID | $\bar{R}^2$ |
+|-|-|-|-|-|-|-|
+| Slice | ✗ | ✗ | 0.237 | 8.24 | 226.8 | 6.102 |
+| Harmonic $h$ | ✗ | ✗ | 0.833 | 24.19 | 35.56 | 16.97 |
+| Conformal $c$ | ✗ | ✗ | 0.849 | 24.26 | 34.23 | 22.02 |
+| Conformal $c$ | ✓ | ✗ | 0.858 | 24.88 | 42.64 | 21.88 |
+| Conformal $c$ | ✓ | ✓ | 0.855 | 25.05 | 42.88 | 24.00 |
+
+**Ablation Study.** Tab. 3 presents an ablation analysis evaluating the contribution of each component in our pipeline. Unlike MRI-based models, direct slicing of the cortical surface introduces geometric distortions in the disk representation, leading to inconsistent training data and terrible performance. Harmonic mapping also reduces effectiveness by failing to preserve face areas in the transformation from 3D meshes to 2D parametric disks, which impairs spatial fidelity. Regarding regularization, PatchNCE loss provides modest gains by encouraging similarity between enhanced and input signals. In contrast, BD-SSIM loss plays a critical role in maintaining structural integrity of the brain disk, leading to notable improvements in both BOLD signal quality (measured by PSNR) and functional decoding accuracy (reflected by average $\bar{R}^2$ in pRF analysis).
+
+## 4 CONCLUSION AND DISCUSSION
+
+We present a robust fMRI enhancement pipeline that maps BOLD signals from 3D cortical surfaces onto 2D parametric brain disks. Using an unpaired Brain Disk Schrödinger Bridge diffusion model, our method enhances 3T fMRI signals by learning from unpaired 7T data. It achieves signal quality and downstream performance comparable to native 7T scans, while preserving both functional responses and cortical geometry. This enables more accurate pRF modeling and supports a range of vision-related fMRI decoding tasks.
+
+**Lack of Paired Data.** A central challenge in this emerging area is the absence of large-scale paired 3T–7T visual fMRI datasets. Unlike structural imaging (e.g., MRI or CT), there are almost no standardized resources where the same subjects are scanned at both field strengths under identical visual stimuli. We therefore adopt an unpaired learning framework and benchmark against both supervised and unsupervised baselines to ensure fairness. To partially mitigate this gap, we also incorporate the only available paired resource (TDM), though its scope is limited to two subjects and non-standard stimuli. Our experiments highlight both the difficulty and the importance of this limitation, underscoring the community need for future standardized, paired datasets.
+
+**Synthetic Data.** Given the scarcity of paired data, we emphasize synthetic and cross-dataset evaluation. While down-sampling and noise injection provide a principled proxy for low-quality signals, such synthetic 3T-like data cannot fully capture scanner hardware, pulse sequence, or subject-level variability. We therefore complement synthetic benchmarks with real-data experiments, balancing control with realism. This dual strategy directly addresses such concerns by demonstrating both methodological validity and practical robustness, while calling for more realistic simulation protocols and shared benchmarks. More discussion continued in B.3.
+
+**Future Work.** Although our current focus is on pRF analysis and retinotopic decoding, the proposed framework is broadly applicable to many downstream tasks which require fMRI quality from low field strengths, such as fMRI-based segmentation, classification, and visual reconstruction. A promising direction is to extend our approach from ROI-aggregated samples to vertex-level fMRI time series, enabling more precise modeling of localized cortical dynamics. With continued development, our method has the potential to set a new standard for improving 3T or 1.5T fMRI quality, effectively narrowing the gap toward 7T-level resolution and expanding the capabilities of functional neural decoding in both research and clinical applications.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- 1486
+1487
+1488 Emily J Allen, Ghislain St-Yves, Yihan Wu, Jesse L Breedlove, Jacob S Prince, Logan T Dowdle,
+1489 Matthias Nau, Brad Caron, Franco Pestilli, et al. A massive 7t fmri dataset to bridge cognitive
+1490 neuroscience and artificial intelligence. *Nature neuroscience*, 25(1):116–126, 2022.
+- 1491 Karim Armanious, Chenmeng Jiang, Sherif Abdullatif, Thomas Küstner, Sergios Gatidis, and Bin
+1492 Yang. Unsupervised medical image translation using cycle-medgan. In *2019 27th European*
+1493 *signal processing conference (EUSIPCO)*, pp. 1–5. IEEE, 2019.
+- 1494 Noah C Benson, Keith W Jamison, Michael J Arcaro, An T Vu, Matthew F Glasser, Timothy S
+1495 Coalson, David C Van Essen, Essa Yacoub, Kamil Ugurbil, Jonathan Winawer, et al. The human
+1496 connectome project 7 tesla retinotopy dataset: Description and population receptive field analysis.
+1497 *Journal of vision*, 18(13):23–23, 2018.
+- 1498
+1499 Alyssa A Brewer and Brian Barton. Visual cortex in aging and alzheimer’s disease: changes in
+1500 visual field maps and population receptive fields. *Frontiers in psychology*, 5:74, 2014.
+- 1501
+1502 Nadine Chang, John A Pyles, Austin Marcus, Abhinav Gupta, Michael J Tarr, and Elissa M Aminoff.
+1503 Bold5000, a public fmri dataset while viewing 5000 visual images. *Scientific data*, 6(1):49, 2019.
+- 1504 Jingjing Chen, Zhuoran Li, Bo Hong, Alexander Maye, Andreas K Engel, and Dan Zhang. A single-
+1505 stimulus, multitarget bci based on retinotopic mapping of motion-onset veps. *IEEE Transactions*
+1506 *on Biomedical Engineering*, 66(2):464–470, 2018.
+- 1507
+1508 Yuwen Chen, Nicholas Konz, Hanxue Gu, Haoyu Dong, Yaqian Chen, Lin Li, Jisoo Lee, and Ma-
+1509 cieј A Mazurowski. Contourdiff: Unpaired image translation with contour-guided diffusion mod-
+1510 els. *arXiv preprint arXiv:2403.10786*, 2024a.
+- 1511 Zijiao Chen, Jiaxin Qing, Tiange Xiang, Wan Lin Yue, and Juan Helen Zhou. Seeing beyond the
+1512 brain: Conditional diffusion model with sparse masked modeling for vision decoding. In *Pro-*
+1513 *ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition*, pp. 22710–
+1514 22720, 2023.
+- 1515 Zijiao Chen, Jiaxin Qing, and Juan Helen Zhou. Cinematic mindscapes: High-quality video recon-
+1516 struction from brain activity. *Advances in Neural Information Processing Systems*, 36, 2024b.
+- 1517
+1518 Qiming Cui, Duygu Tosun, Pratik Mukherjee, and Reza Abbasi-Asl. 7t mri synthesization from 3t
+1519 acquisitions. In *International Conference on Medical Image Computing and Computer-Assisted*
+1520 *Intervention*, pp. 35–44. Springer, 2024.
+- 1521
+1522 Valentin De Bortoli, James Thornton, Jeremy Heng, and Arnaud Doucet. Diffusion schrödinger
+1523 bridge with applications to score-based generative modeling. *Advances in neural information*
+1524 *processing systems*, 34:17695–17709, 2021.
+- 1525 Edgar A DeYoe, George J Carman, Peter Bandettini, Seth Glickman, JON Wieser, Robert Cox,
+1526 David Miller, and Jay Neitz. Mapping striate and extrastriate visual areas in human cerebral
+1527 cortex. *Proceedings of the National Academy of Sciences*, 93(6):2382–2386, 1996.
+- 1528 Erin W Dickie, Alan Anticevic, Dawn E Smith, Timothy S Coalson, Mathuvanthi Manogaran,
+1529 Navona Calarco, Joseph D Viviano, Matthew F Glasser, David C Van Essen, and Aristotle N
+1530 Voinoskos. Ciftify: A framework for surface-based analysis of legacy mr acquisitions. *Neuroim-*
+1531 *age*, 197:818–826, 2019.
+- 1532
+1533 Xuanzhao Dong, Vamsi Krishna Vasa, Wenhui Zhu, Peijie Qiu, Xiwen Chen, Yi Su, Yujian Xiong,
+1534 Zhangsihao Yang, Yanxi Chen, and Yalin Wang. CUNSB-RFIE: Context-aware unpaired neural
+1535 schrödinger bridge in retinal fundus image enhancement. *arXiv preprint arXiv:2409.10966*, 2024.
+- 1536 Bing Du, Xiaomu Cheng, Yiping Duan, and Huansheng Ning. fmri brain decoding and its applica-
+1537 tions in brain-computer interface: A survey. *Brain Sciences*, 12(2):228, 2022.
+- 1538
+1539 Serge O Dumoulin and Brian A Wandell. Population receptive field estimates in human visual
+1540 cortex. *Neuroimage*, 39(2):647–660, 2008.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/EbSkBZQF9g.txt b/papers/EbSkBZQF9g.txt
new file mode 100644
index 0000000000000000000000000000000000000000..562f7c0f6c5d6ea762f1aecc7d85f8da465e2fc8
--- /dev/null
+++ b/papers/EbSkBZQF9g.txt
@@ -0,0 +1,733 @@
+
+
+{0}------------------------------------------------
+
+# MECHANISTIC INTERPRETABILITY ANALYSIS OF A SINGLE-LAYER TRANSFORMER ON 0-1 KNAPSACK
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Small language models have been shown to exhibit generalisation for toy problems while being trained on algorithmically generated datasets. It is poorly understood whether this phenomenon happens in complex problems such as NP-complete problems. In this work, we show the inability of a single-layer transformer to "grok" the 0-1 knapsack problem. We analyze the internals using visualisations and interpretability techniques and show why the model is not able to form a robust internal circuit. This shows how transformer-based models struggle to generalize on NP-complete problems as well as their inability to solve problems requiring high amount of computation. This work showcases why LLM-based AI agents should not be deployed in high-impact spaces where a vast amount of planning and computation is required.
+
+## 1 INTRODUCTION
+
+The last decade has seen rapid progress on many difficult problems using machine learning (ML) and artificial intelligence (AI). This has included high-impact scenarios such as autonomous vehicles as well as decision-making for bail in criminal courts (Hamilton & Ugwudike, 2023). Recently, ChatGPT and other popular large language models (LLMs) have become some of the most widely used forms of AI (Mitra et al., 2023). Traditionally, complex systems are tested and deployed only after guarantees are achieved on their safety - such as aircrafts, and even the atomic bomb (Wiescher & Langanke, 2024). However, as seen in the existing literature, the community still doesn't have a complete understanding of LLMs (Anwar et al., 2024). As a result, it is irresponsible and dangerous to continue the development and deployment of LLMs without sufficient work on understanding on its internals.
+
+Mechanistic interpretability is a sub-field of ML interpretability that dissects the behaviour of individual components of a transformer and their interconnections (Räuker et al., 2023). It goes beyond explainable-AI (XAI) in not just providing correlations, but also uncovers actual causal mechanisms (Olah et al., 2020). Mechanistic interpretability also helps in providing trustworthy ways to understand the model's internals (Hsia et al., 2023). Existing studies in literature have only focused on toy problems (Nanda et al., 2023), (Zhong et al., 2024), (Quirke & Barez, 2023), and (Chughtai et al., 2023)). They tend to focus on P problems, and do not explore other complex algorithmic tasks. Therefore, we focus on understanding the ability of single-layer transformers to "grok" NP-complete problems.
+
+In this study, we analyze the attention patterns of the trained small-scale transformer, and hypothesize why it is unable to perform well. We conclude by stating the implications of this work for the mechanistic interpretability landscape.
+
+## 2 EXPERIMENTS AND OBSERVATIONS
+
+We use a single-layer transformer setup using the TransformerLens library (Nanda & Bloom, 2022). We train these transformers to solve the 0-1 knapsack problem, where the transformer has to give the best possible price as output.
+
+Although we initially considered an dataset which had relatively high variance as seen in Figures 1 and 2 (Chauhan, 2022), we switched to an algorithmically generated dataset based on work showing
+
+{1}------------------------------------------------
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+068
+069
+070
+071
+072
+073
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+098
+099
+100
+101
+102
+103
+104
+105
+106
+107
+
+
+
+Figure 1: Frequency distribution of the prices of the items in the two datasets. The left chart, 'Item Price Distribution', shows four green bars at prices 1.0, 2.0, 3.0, and 4.0, each with a frequency of approximately 6000. The right chart, 'Price Frequency', shows a histogram of prices from 2.5 to 17.5. Most bins have a count of approximately 5000, except for the bin around 10.0 which has a significantly lower count of approximately 2500.
+
+Figure 1: Frequency distribution of the prices of the items in the two datasets
+
+
+
+Figure 2: Frequency distribution of the weights of the items in the datasets. The left chart, 'Item Weight Distribution', shows four blue bars at weights 1.0, 2.0, 3.0, and 4.0, each with a frequency of approximately 6000. The right chart, 'Weight Frequency', shows a histogram of weights from 0 to 50. Most bins have a count of approximately 5000, except for the bin around 20 which has a significantly lower count of approximately 4000.
+
+Figure 2: Frequency distribution of the weights of the items in the datasets
+
+how networks can reliably exhibit grokking on small systemically generated datasets (Power et al., 2022). We constrain our dataset to only contain 4 objects due to compute constraints. The dataset is configured as follows: $W_1, W_2, W_3, W_4, P_1, P_2, P_3, P_4, C$ and $BP$ , where $W_i$ represents the weight of the $i^{th}$ object, $P_i$ represents the price of the $i^{th}$ object and $C$ represents the capacity of the knapsack. $BP$ represents the best possible worth of items which can be placed in the knapsack of given capacity $C$ . We set the weights and prices to be all permutations of the range $1, \dots, n$ . The capacity of the knapsack contains all possible unique sums possible from the superset of $\{1, \dots, n\}$ .
+
+We train the model using the AdamW optimizer, and continue the training upto 100k epochs. However, the model was unable to grok. We studied why the model was unable using a combination of visualisations and mechanistic interpretability techniques.
+
+We can see from the attention weights visualisations that the model places more importance on the capacity token than any other token. It also places relatively more importance on the price tokens than the weight tokens. We also use singular values analysis to compare the embedding matrix of the trained model with that of a matrix with the same shape. We find that the both matrices have relatively similar graphs, showing that the amount of variance captured by each principal component is not better than a matrix with random values. We also compare this to the singular values of the embedding matrix of a model trained on modular subtraction, which shows a sharp drop off in variance after the first few components.
+
+Similarly, we look at the variance of the principal components, which shows how the matrix doesn't have any smooth sinusoidal patterns. We hypothesize that this could be due to two factors, either the the knapsack problem having a more complex and less transparent embedding space, or the inability of our model to capture the task's underlying structure.
+
+{2}------------------------------------------------
+
+108
+109
+110
+111
+112
+113
+114
+115
+116
+117
+118
+119
+120
+121
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+139
+140
+141
+142
+143
+144
+145
+146
+147
+148
+149
+150
+151
+152
+153
+154
+155
+156
+157
+158
+159
+160
+161
+
+### Training Curve for Knapsack Value Prediction
+
+
+
+Figure 3: Train and test log-loss curve. The plot shows log loss on the y-axis (logarithmic scale from 10^0 to 10^2) against Epochs on the x-axis (0 to 70k). The training log loss (blue line) starts at 1 and drops sharply to around 10^0.5 by 10k epochs, then remains stable. The test log loss (red line) starts at 1 and increases to around 10^1.5 by 10k epochs, then remains stable. The legend indicates 'train' in blue and 'test' in red.
+
+Figure 3: Train and test log-loss curve
+
+
+
+Figure 4: Average attention patterns across all input samples. This is a heatmap showing attention weights between 'Head' (y-axis, 0 to 3.5) and 'Source' (x-axis, W1, W2, W3, W4, P1, P2, P3, P4, Cap). The color scale ranges from -0.4 (dark red) to 0.4 (dark blue). The highest attention is observed at Head 2 for the 'Cap' source, and at Head 3 for 'P1' and 'P2' sources.
+
+Figure 4: Average attention patterns across all input samples
+
+Logit lens is used to investigate how the model’s predictions evolve as information propagates through its layers (nostalgebraist, 2021). Even though we only use a single-layer model in this study, here we examine the model’s output at different processing stages, such as after the embedding layer, after the attention layer, and after the multi-layer perceptron (MLP) layer. By projecting these intermediate representations back into the output space, we are able to understand the relative importance of each of the model’s components. We find that the MLP layer has the highest impact in shaping the model’s decision.
+
+Probing is a mechanistic interpretability technique which is used to understand the ability of the model to store accurate representations of the data (Ju et al., 2024). We train a linear regressor to predict the given input based on the internal representations, and we find that the model is able to perfectly store up to half of the weights and prices. However, it struggles to accurately form representations of the other weights and prices, as well as the capacity of the knapsack.
+
+We also use activation patching (Heimersheim & Nanda, 2024) to find that activations of the neurons attending to the capacity token, have a relatively high impact on the loss. This shows that the model is highly dependent on the capacity constraint to model its output.
+
+{3}------------------------------------------------
+
+
+
+Figure 5: Singular values comparison of our model, a random matrix, and a model trained on modular subtraction. The figure contains three line plots. The first plot, 'Singular Values', shows a smooth, decreasing curve. The second plot, 'Singular Values Random', shows a similar smooth, decreasing curve. The third plot, 'Singular Values', shows a very sharp initial drop followed by a flat line.
+
+Figure 5: Singular values comparison of our model, a random matrix, and a model trained on modular subtraction
+
+
+
+Figure 6: Variation of principal components of our model, and a model trained on modular subtraction. The figure contains two line plots. The left plot, 'Principal Components of the embedding', shows multiple overlapping lines representing different components. The right plot, 'Principal Components of the embedding', shows a dense, noisy-looking plot with many overlapping lines.
+
+Figure 6: Variation of principal components of our model, and a model trained on modular subtraction
+
+## 3 CONCLUSION
+
+We are able to observe a lack of robustness in the model’s ability to model an algorithm for solving the knapsack problem. In particular for this problem, we find that the model struggles to generalize due to its failure to effectively integrate the capacity constraint during the initial embedding phase, as the well as the lack of layers, which restrict the power of the model.
+
+We hypothesize that:
+
+1. Transformer-based models struggle to generalize to NP-complete tasks due to the **combinatorial explosion** in considerations involved.
+2. Transformer-based models with $k$ layers will only be able to generalize to tasks which can be solved using $O(n^k)$ time complexity algorithms.
+
+This raises major doubts about the ability of LLM-based AI systems to reliably act as agents, since we find a fundamental lack of ability to generalize. We also find how the models can still give *believable* answers, even though they do not have the proper internal circuits to process the data. Therefore, further work is needed to limit the exposure of LLM-based AI systems to tasks which involve planning and computation through regulations and laws, to prevent errors in high-impact scenarios.
+
+Future work could involve ways to formalize these results in a more general manner, as well as developing tools to automate the mechanistic interpretability work, so that it is feasible on models with a large number of layers.
+
+## LIMITATIONS
+
+This work is limited by computational constraints. As a result of these constraints, the authors were unable to run further experiments on transformers with more layers, as well on a wide-range of tasks. Analysis is also avoided on state-of-the-art models due to the lack of compute.
+
+## REFERENCES
+
+Usman Anwar, Abulhair Saparov, Javier Rando, Daniel Paleka, Miles Turpin, Peter Hase, Ekdeep Singh Lubana, Erik Jenner, Stephen Casper, Oliver Sourbut, et al. Foundational challenges in assuring alignment and safety of large language models. *arXiv preprint arXiv:2404.09932*, 2024.
+
+{4}------------------------------------------------
+
+- 1216 Chirag Chauhan. Knapsack problem dataset, 2022. URL [https://www.kaggle.com/](https://www.kaggle.com/datasets/warcoder/knapsack-problem)
+1217 [datasets/warcoder/knapsack-problem](https://www.kaggle.com/datasets/warcoder/knapsack-problem). Accessed: April 6, 2025.
+- 1218 Bilal Chughtai, Lawrence Chan, and Neel Nanda. A toy model of universality: Reverse engineering
+1219 how networks learn group operations. In *International Conference on Machine Learning*, pp.
+1220 6243–6267. PMLR, 2023.
+- 1221
+- 1222 Melissa Hamilton and Pamela Ugwudike. A 'black box' ai system has been influencing criminal
+1223 justice decisions for over two decades - it's time to open it up. *The Conversation*, 07 2023.
+- 1224
+- 1225 Stefan Heimersheim and Neel Nanda. How to use and interpret activation patching. *arXiv preprint*
+1226 *arXiv:2404.15255*, 2024.
+- 1227
+- 1228 Jennifer Hsia, Danish Pruthi, Aarti Singh, and Zachary C Lipton. Goodhart's law applies to nlp's
+1229 explanation benchmarks. *arXiv preprint arXiv:2308.14272*, 2023.
+- 1230
+- 1231 Tianjie Ju, Weiwei Sun, Wei Du, Xinwei Yuan, Zhaochun Ren, and Gongshen Liu. How large
+1232 language models encode context knowledge? a layer-wise probing study. *arXiv preprint*
+1233 *arXiv:2402.16061*, 2024.
+- 1234
+- 1235 Arindam Mitra, Luciano Del Corro, Shweti Mahajan, Andres Codas, Clarisse Simoes, Sahaj Agar-
+1236 wal, Xuxi Chen, Anastasia Razdaibiedina, Erik Jones, Kriti Aggarwal, et al. Orca 2: Teaching
+1237 small language models how to reason. *arXiv preprint arXiv:2311.11045*, 2023.
+- 1238
+- 1239 Neel Nanda and Joseph Bloom. TransformerLens. [https://github.com/](https://github.com/TransformerLensOrg/TransformerLens)
+1240 [TransformerLensOrg/TransformerLens](https://github.com/TransformerLensOrg/TransformerLens), 2022.
+- 1241
+- 1242 Neel Nanda, Lawrence Chan, Tom Lieberum, Jess Smith, and Jacob Steinhardt. Progress measures
+1243 for grokking via mechanistic interpretability. *arXiv preprint arXiv:2301.05217*, 2023.
+- 1244
+- 1245 nostalgebraist. logit lens on non-gpt2 models + extensions. [https://colab.research.](https://colab.research.google.com/drive/1MjdfK2sRcerLrAJDRaJQK00sUiZ-hQtA)
+1246 [google.com/drive/1MjdfK2sRcerLrAJDRaJQK00sUiZ-hQtA](https://colab.research.google.com/drive/1MjdfK2sRcerLrAJDRaJQK00sUiZ-hQtA), 2021.
+- 1247
+- 1248 Chris Olah, Nick Cammarata, Ludwig Schubert, Gabriel Goh, Michael Petrov, and Shan Carter.
+1249 Zoom in: An introduction to circuits. *Distill*, 5(3):e000024–001, 2020.
+- 1250
+- 1251 Alethea Power, Yuri Burda, Harri Edwards, Igor Babuschkin, and Vedant Misra. Grokking: Gen-
+1252 eralization beyond overfitting on small algorithmic datasets. *arXiv preprint arXiv:2201.02177*,
+1253 2022.
+- 1254
+- 1255 Philip Quirke and Fazl Barez. Understanding addition in transformers. *arXiv preprint*
+1256 *arXiv:2310.13121*, 2023.
+- 1257
+- 1258 Tilman Räuber, Anson Ho, Stephen Casper, and Dylan Hadfield-Menell. Toward transparent ai: A
+1259 survey on interpreting the inner structures of deep neural networks. In *2023 ieee conference on*
+1260 *secure and trustworthy machine learning (saml)*, pp. 464–483. IEEE, 2023.
+- 1261
+- 1262 Michael Wiescher and Karlheinz Langanke. Manhattan project astrophysics. *Physics Today*, 77(3):
+1263 34–41, 03 2024. ISSN 0031-9228. doi: 10.1063/pt.jksg.hage. URL [https://doi.org/10.](https://doi.org/10.1063/pt.jksg.hage)
+1264 [1063/pt.jksg.hage](https://doi.org/10.1063/pt.jksg.hage).
+- 1265
+- 1266 Ziqian Zhong, Ziming Liu, Max Tegmark, and Jacob Andreas. The clock and the pizza: Two
+1267 stories in mechanistic explanation of neural networks. *Advances in Neural Information Processing*
+1268 *Systems*, 36, 2024.
+- 1269
+- 1270
+- 1271
+- 1272
+- 1273
+- 1274
+- 1275
+- 1276
+- 1277
+- 1278
+- 1279
+- 1280
+- 1281
+- 1282
+- 1283
+- 1284
+- 1285
+- 1286
+- 1287
+- 1288
+- 1289
+
+## A APPENDIX
+
+This appendix contains results from the mechanistic interpretability techniques, model configuration, and various other visualisations for our model trained on 0-1 knapsack.
+
+{5}------------------------------------------------
+
+270
+271
+272
+273
+274
+275
+276
+277
+278
+279
+280
+281
+282
+283
+284
+285
+286
+287
+288
+289
+290
+291
+292
+293
+294
+295
+296
+297
+298
+299
+300
+301
+302
+303
+304
+305
+306
+307
+308
+309
+310
+311
+312
+313
+314
+315
+316
+317
+318
+319
+320
+321
+322
+323
+
+```
+Output after Embedding: tensor([ 0.1288, 0.0006, -0.1608, 0.3533, 0.5096, 0.0870, -0.4737, -0.1977,
+ 0.2310, -0.3868, -0.0374], device='cuda:0')
+Output after Attention: tensor([-0.2566, -0.0406, -0.1455, 1.2284, 1.4471, 0.3971, -0.7723, -0.0363,
+ -0.6292, -2.8247, 1.8907], device='cuda:0')
+Output after MLP: tensor([ 2.5303, 0.0191, -3.4691, 13.7954, 9.7629, 2.1123, -14.3343,
+ -7.1281, 3.0515, -12.4285, 7.3215], device='cuda:0')
+```
+
+Figure 7: Results from logit lens
+
+| Head | Weight_1 | Price_1 | Weight_2 | Price_2 | Weight_3 | Price_3 | Weight_4 | Price_4 | Capacity |
+|-|-|-|-|-|-|-|-|-|-|
+| 0.0 | 1.0 | 1.0 | 1.0 | 1.0 | -0.0044 | -0.0058 | -0.0138 | -0.006 | -0.0263 |
+| 1.0 | 1.0 | 1.0 | 1.0 | 1.0 | -0.0051 | -0.0044 | -0.0038 | -0.0009 | -0.0258 |
+| 2.0 | 1.0 | 1.0 | 1.0 | 1.0 | -0.0064 | -0.0109 | -0.0159 | -0.002 | 0.0067 |
+| 3.0 | 1.0 | 1.0 | 1.0 | 1.0 | -0.006 | -0.0106 | -0.0144 | 0.0004 | -0.0252 |
+
+Figure 8: Results from probing
+
+| Layer | Index | Original Loss | Patched Loss | Change in Loss |
+|-|-|-|-|-|
+| 0.0 | -1.0 | 0.0 | 23.8995 | 23.8995 |
+
+Figure 9: Results from activation patching
+
+{6}------------------------------------------------
+
+324
+325
+326
+327
+328
+329
+330
+331
+332
+333
+334
+335
+336
+337
+338
+339
+340
+341
+342
+343
+344
+345
+346
+347
+348
+349
+350
+351
+352
+353
+354
+355
+356
+357
+358
+359
+360
+361
+362
+363
+364
+365
+366
+367
+368
+369
+370
+371
+372
+373
+374
+375
+376
+377
+
+
+
+Play button icon
+
+```
+cfg = HookedTransformerConfig(
+ n_layers = 1,
+ n_heads = 4,
+ d_model = 128,
+ d_head = 32,
+ d_mlp = 512,
+ act_fn = "relu",
+ normalization_type=None,
+ d_vocab=cap+1,
+ d_vocab_out=cap,
+ n_ctx=3*n+1,
+ init_weights=True,
+ device=device,
+ seed = 999,
+)
+
+num_epochs = 100000
+```
+
+Figure 10: Model configuration
+
+{7}------------------------------------------------
+
+378
+379
+380
+381
+382
+383
+384
+385
+386
+387
+388
+389
+390
+391
+392
+393
+394
+395
+396
+397
+398
+399
+400
+401
+402
+403
+404
+405
+406
+407
+408
+409
+410
+411
+412
+413
+414
+415
+416
+417
+418
+419
+420
+421
+422
+423
+424
+425
+426
+427
+428
+429
+430
+431
+
+Attention Pattern per Head for a specific input sample
+
+
+
+This heatmap displays attention weights for a specific input sample across multiple attention heads. The y-axis, labeled 'Head', ranges from 0 to 3.5. The x-axis, labeled 'Source', includes categories W1, W2, W3, W4, P1, P2, P3, P4, and Cap. The color scale ranges from -0.6 (red) to 0.6 (blue). Notable high attention (blue) is seen for Head 0 on P3, Head 1 on P1 and P2, and Head 3 on Cap.
+
+| Head | W1 | W2 | W3 | W4 | P1 | P2 | P3 | P4 | Cap |
+|-|-|-|-|-|-|-|-|-|-|
+| 0 | 0.1 | 0.1 | 0.3 | 0.1 | 0.1 | 0.1 | 0.5 | 0.1 | 0.1 |
+| 1 | 0.2 | 0.3 | 0.1 | 0.1 | 0.4 | 0.3 | 0.1 | 0.1 | 0.1 |
+| 1.5 | 0.1 | 0.1 | 0.1 | 0.1 | 0.2 | 0.1 | 0.1 | 0.1 | 0.1 |
+| 2 | 0.1 | 0.1 | 0.1 | 0.1 | 0.4 | 0.1 | 0.1 | 0.1 | 0.5 |
+| 2.5 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.3 | 0.1 | 0.1 | 0.5 |
+| 3 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.6 |
+| 3.5 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 | 0.1 |
+
+Heatmap showing attention patterns for multiple heads across different sources (W1-W4, P1-P4, Cap). The y-axis represents head indices from 0 to 3.5. The x-axis represents sources. A color bar on the right indicates attention values from -0.6 (red) to 0.6 (blue).
+
+Figure 11: Attention pattern per head for a specific input sample
+
+Head 0 Attention: Weights -> Capacity
+
+
+
+This heatmap shows the attention strength for Head 0 across four weights (W1, W2, W3, W4). The y-axis, labeled 'Attention Strength', ranges from -0.4 to 0.4. The x-axis, labeled 'Weight', includes categories W1, W2, W3, and W4. The color scale ranges from -0.08 (red) to 0.08 (blue). All weights show positive attention strength, with W3 being the highest (light blue) and W2 being the lowest (dark blue).
+
+| Weight | Attention Strength |
+|-|-|
+| W1 | 0.04 |
+| W2 | 0.01 |
+| W3 | 0.06 |
+| W4 | 0.02 |
+
+Heatmap showing attention strength for Head 0 across weights W1-W4. The y-axis represents attention strength from -0.4 to 0.4. The x-axis represents weights. A color bar on the right indicates attention values from -0.08 (red) to 0.08 (blue).
+
+Figure 12:
+
+{8}------------------------------------------------
+
+432
+433
+434
+435
+436
+437
+438
+439
+440
+441
+442
+443
+444
+445
+446
+447
+448
+449
+450
+451
+452
+453
+454
+455
+456
+457
+458
+459
+460
+461
+462
+463
+464
+465
+466
+467
+468
+469
+470
+471
+472
+473
+474
+475
+476
+477
+478
+479
+480
+481
+482
+483
+484
+485
+
+
+
+### Head 0 Attention: Prices -> Capacity
+
+| Price | Avg Attention Strength |
+|-|-|
+| P1 | 0.05 |
+| P2 | 0.05 |
+| P3 | 0.10 |
+| P4 | 0.15 |
+
+Heatmap showing Head 0 Attention from Prices to Capacity. The x-axis is labeled 'Price' with categories P1, P2, P3, and P4. The y-axis is labeled 'Avg Attention Strength' with values -0.4, -0.2, 0, 0.2, and 0.4. A color bar on the right ranges from -0.15 (red) to 0.15 (blue). The heatmap shows a gradient from light blue for P1 and P2 to dark blue for P3 and P4, indicating increasing attention strength.
+
+Figure 13:
+
+
+
+### Head 1 Attention: Prices -> Capacity
+
+| Price | Avg Attention Strength |
+|-|-|
+| P1 | -0.15 |
+| P2 | 0.05 |
+| P3 | 0.05 |
+| P4 | 0.05 |
+
+Heatmap showing Head 1 Attention from Prices to Capacity. The x-axis is labeled 'Price' with categories P1, P2, P3, and P4. The y-axis is labeled 'Avg Attention Strength' with values -0.4, -0.2, 0, 0.2, and 0.4. A color bar on the right ranges from -0.2 (red) to 0.2 (blue). The heatmap shows a gradient from dark blue for P1 to light blue for P2, P3, and P4, indicating decreasing attention strength.
+
+Figure 14:
+
+{9}------------------------------------------------
+
+486
+487
+488
+489
+490
+491
+492
+493
+494
+495
+496
+497
+498
+499
+500
+501
+502
+503
+504
+505
+506
+507
+508
+509
+510
+511
+512
+513
+514
+515
+516
+517
+518
+519
+520
+521
+522
+523
+524
+525
+526
+527
+528
+529
+530
+531
+532
+533
+534
+535
+536
+537
+538
+539
+
+Head 2 Attention: Prices -> Capacity
+
+
+
+| Price | Avg Attention Strength |
+|-|-|
+| P1 | 0.1 |
+| P2 | 0.1 |
+| P3 | 0.05 |
+| P4 | 0.01 |
+
+Heatmap for Head 2 Attention: Prices -> Capacity. The x-axis is labeled 'Price' with categories P1, P2, P3, P4. The y-axis is labeled 'Avg Attention Strength' with values -0.4, -0.2, 0, 0.2, 0.4. A color bar on the right ranges from -0.1 (red) to 0.1 (blue). The heatmap shows P1 and P2 in dark blue, P3 in medium blue, and P4 in light blue.
+
+Figure 15:
+
+Head 3 Attention: Prices -> Capacity
+
+
+
+| Price | Avg Attention Strength |
+|-|-|
+| P1 | 0.2 |
+| P2 | 0.1 |
+| P3 | 0.05 |
+| P4 | 0.01 |
+
+Heatmap for Head 3 Attention: Prices -> Capacity. The x-axis is labeled 'Price' with categories P1, P2, P3, P4. The y-axis is labeled 'Avg Attention Strength' with values -0.4, -0.2, 0, 0.2, 0.4. A color bar on the right ranges from -0.2 (red) to 0.2 (blue). The heatmap shows P1 in dark blue, P2 in medium-dark blue, P3 in medium-light blue, and P4 in light blue.
+
+Figure 16:
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/FF9QVQduAu.txt b/papers/FF9QVQduAu.txt
new file mode 100644
index 0000000000000000000000000000000000000000..639d5ee431c91b0dda21ed95c4bf75c276405efa
--- /dev/null
+++ b/papers/FF9QVQduAu.txt
@@ -0,0 +1,314 @@
+
+
+{0}------------------------------------------------
+
+# TOWARDS A FOUNDATION MODEL FOR CROWDSOURCED LABEL AGGREGATION
+
+Hao Liu1, Jiacheng Liu2,†, Feilong Tang3,†, Long Chen4, Jiadi Yu3, Yanmin Zhu3,
+Qiwen Dong1,†, Yichuan Yu5, Xiaofeng Hou3
+
+1East China Normal University
+
+2The Hong Kong University of Science and Technology
+
+3Shanghai Jiao Tong University
+
+4Simon Fraser University
+
+5Huawei Technologies
+
+## ABSTRACT
+
+Infering ground truth from noisy, crowdsourced labels is a fundamental challenge in machine learning. For decades, the dominant paradigm has relied on dataset-specific parameter estimation, a non-scalable method that fails to transfer knowledge. Recent efforts toward universal aggregation models do not account for the structural and behavioral complexities of human-annotated crowdsourcing, resulting in poor real-world performance. To address this gap, we introduce CrowdFM, a foundation model for crowdsourced label aggregation. At its core, CrowdFM is a bipartite graph neural network that is pre-trained on a vast, domain-randomized synthetic dataset to learn diverse behavioral patterns. By leveraging a size-invariant initialization and attention-based message passing, it learns universal principles of collective intelligence and generalizes to new, unseen datasets. Extensive experiments on 22 real-world benchmarks show that our single, fixed model consistently matches or surpasses bespoke, per-dataset methods in both accuracy and efficiency. Furthermore, the representations learned by CrowdFM readily support diverse downstream applications, such as worker assessment and task assignment. Codes are available at .
+
+## 1 INTRODUCTION
+
+Crowdsourcing enables efficient collection of large-scale labeled datasets by distributing annotation tasks to non-expert workers (Howe et al., 2006). However, variations in worker expertise often produce noisy and conflicting labels (Sheng & Zhang, 2019). Label aggregation serves as a fundamental step to infer reliable ground truth from such inputs (Zheng et al., 2017; Zhang et al., 2024b;a).
+
+For decades, two conflicting paradigms have dominated this field. On one hand, Majority Voting (MV) stands as the de facto industry standard for scalable deployment (Penrose, 1946). Its unmatched simplicity ensures high scalability and, crucially, a *retraining-free nature*, allowing it to be applied universally across any dataset. However, its assumption of uniform worker quality leads to suboptimal accuracy in heterogeneous environments (Tullock, 1959). On the other hand, in pursuit of higher accuracy, a vast body of advanced methods has emerged, from probabilistic models (Dawid & Skene, 1979; Whitehill et al., 2009) to deep learning approaches (Li’ang Yin et al., 2017; Wu et al., 2023a; Liu et al., 2024). Yet, these methods sacrifice the very properties that make MV practical. They are all confined to a *dataset-specific paradigm*: they require learning dataset-specific parameters from scratch, rendering them non-scalable, brittle, and unable to transfer.
+
+Bridging this gap requires a model that combines the accuracy of advanced methods with the scalability and universality of MV. A promising solution is a foundation model for crowdsourced label aggregation that generalizes across datasets without dataset-specific retraining. HyperLM (Wu et al., 2023b) pioneered cross-dataset GNN aggregation but fails to address the structural heterogeneity in-
+
+†Corresponding authors.
+
+{1}------------------------------------------------
+
+trinsic to crowdsourcing settings. Specifically, its architecture lacks explicit worker-task modeling and its training relies on uniform synthetic data that misaligns with real-world patterns.
+
+To overcome these limitations, realizing a truly transferable crowdsourcing foundation model faces two main challenges. First, *universal crowdsourcing representation*: datasets vary widely in the number of workers, tasks, and label options, and may exhibit diverse annotation patterns. A universal model must flexibly encode any such configuration into a meaningful representation that captures worker and task heterogeneity, enabling effective generalization to downstream adaptation. Second, *realistic synthetic data generation*: foundation models require large-scale pre-training resources, but existing crowdsourcing datasets are limited. The training data must faithfully reflect real-world crowdsourcing patterns to support robust transfer.
+
+In response to these challenges, we introduce CrowdFM, a foundation model for crowdsourced label aggregation. CrowdFM employs a graph neural network that explicitly models workers, tasks, and label options, naturally capturing structural heterogeneity across crowdsourcing datasets. To address realistic synthetic data generation, we design a domain-randomized generator that creates diverse scenarios closely matching real crowdsourcing datasets. Pre-training on this data enables CrowdFM to learn robust, transferable aggregation principles. The main contributions of this work are summarized as follows:
+
+- We propose CrowdFM, a foundation model based on a bipartite graph neural network for crowdsourced label aggregation that explicitly represents workers, tasks, and options, achieving generalization across heterogeneous datasets without dataset-specific training.
+- We develop a synthetic crowdsourcing data generator that produces diverse datasets reflecting real-world crowdsourcing patterns, enabling the model to pretrain on varied scenarios and learn aggregation principles transferable to unseen datasets.
+- Extensive experiments show that CrowdFM achieves performance comparable to or superior to state-of-the-art aggregation methods, while remaining efficient, stable, and retraining-free. In addition, it can be readily applied to multiple downstream crowdsourcing applications, highlighting its versatility in practical workflows.
+
+## 2 PRELIMINARY
+
+**Crowdsourced data.** We consider a crowdsourcing setting with $N$ tasks $\mathcal{T} = \{t_1, \dots, t_N\}$ and $M$ workers $\mathcal{W} = \{w_1, \dots, w_M\}$ , where each task $t_j$ has a true label $y_j \in \mathcal{O} = \{1, \dots, K\}$ . Each annotation $a_{ij}$ is an observed label provided by worker $w_i$ on task $t_j$ , forming the annotation set $\mathcal{A} = \{(w_i, t_j, a_{ij})\}$ . The goal of label aggregation is to infer the true labels $\mathcal{Y} = \{y_j\}_{j=1}^N$ from $\mathcal{A}$ .
+
+**Dataset-Specific modeling in conventional approach.** Conventional approaches adopt a per-dataset modeling paradigm: for each dataset $\mathcal{D}^{(s)} = (\mathcal{A}^{(s)}, \mathcal{Y}^{(s)})$ , they define a generative model $p(\mathcal{A}^{(s)} | \Theta^{(s)})$ and estimate dataset-specific latent variables $\Theta^{(s)}$ via maximum likelihood:
+
+$$\Theta^{(s)*} = \arg \max_{\Theta^{(s)}} \log p(\mathcal{A}^{(s)} | \Theta^{(s)}), \quad \hat{\mathcal{Y}}^{(s)} = \mathcal{I}^{(s)}(\mathcal{A}^{(s)}, \Theta^{(s)*}), \quad (1)$$
+
+where $\Theta^{(s)*}$ denotes the learned latent variables such as worker abilities and task difficulties for dataset $\mathcal{D}^{(s)}$ , and $\mathcal{I}^{(s)}$ represents the inference procedure applied within the same dataset using the fitted model. Since no parameters are shared across datasets, these models must be re-estimated from scratch for every new deployment.
+
+**Cross-dataset generalization in our Approach.** In contrast, we follow a cross-dataset generalization paradigm. We learn a single, parameter-shared aggregation function $F_{\Theta} : \mathcal{A} \mapsto \hat{\mathcal{Y}}$ by minimizing the expected loss over a distribution of potential datasets $p_{\mathcal{D}}$ :
+
+$$\Theta^* = \arg \min_{\Theta} \mathbb{E}_{\mathcal{D}(\mathcal{A}, \mathcal{Y}) \sim p_{\mathcal{D}}} [\ell(F_{\Theta}(\mathcal{A}), \mathcal{Y})], \quad \hat{\mathcal{Y}}' = F_{\Theta^*}(\mathcal{A}'). \quad (2)$$
+
+The model $F_{\Theta^*}$ is fixed after pretraining and deployed zero-shot on new datasets without re-estimation. This design enables direct, retraining-free inference across diverse domains, fundamentally differing from per-dataset estimation.
+
+{2}------------------------------------------------
+
+
+
+Figure 1: The overall framework of CrowdFM. The diagram is divided into three main sections: 1. Crowdsourced Data Generation, 2. Pretrain on Synthetic Datasets, and 3. Multiple Downstream Adaptations. Section 1 shows a flow from 'Sample Global Structure' (N workers, M tasks) to 'Sample Worker/Task Heterogeneity' (workers with parameters theta\_i, y\_i, beta\_i, alpha\_i, c\_i) to 'Task Assignment' (Density, Loads) to 'Generate Answers' (Compute p\_ij, Sample Answer a\_ij). Section 2 shows 'Pretrain on Synthetic Datasets' with a graph of workers and tasks, 'Size-Invariant Initialization' (W\_i, O\_i, f\_j), and an 'Attention Network' block with inputs z\_i^{(l)}, z\_j^{(l)}, z\_k^{(l)} and outputs a\_ij^{(l)}, r\_ij^{(l)}, v\_ij^{(l)} leading to z\_i^{(l+1)}, z\_j^{(l+1)}, z\_k^{(l+1)} over L layers. Section 3 lists 'Label Aggregation', 'Worker/Task Assessment', and 'Task Assignment'.
+
+Figure 1: The overall framework of CrowdFM.
+
+## 3 METHODOLOGY
+
+We propose CrowdFM, a framework for learning generalizable crowdsourcing aggregation models through synthetic data pretraining. The overall pipeline, illustrated in Figure 1, comprises three key components: generating diverse synthetic crowdsourced datasets, pretraining the model on these datasets to learn robust aggregation rules, and applying the pretrained model for label aggregation as well as other downstream applications.
+
+### 3.1 SYNTHETIC CROWDSOURCED DATA GENERATOR
+
+Public available real-world crowdsourcing datasets are highly scarce, making them insufficient for pretraining robust aggregation models. To address this, we design a synthetic data generator that produces diverse crowdsourcing datasets by randomizing key aspects of the data, including global structure, worker and task characteristics, assignment patterns, and annotation generation.
+
+**Global structural randomization.** To ensure that models can adapt to crowdsourcing scenarios of varying scales and sparsity levels, we randomize the global structure of each synthetic dataset. This exposes models to environments with diverse combinations of size and labeling density, encouraging the development of robust aggregation behaviors. In practice, for each dataset we independently sample the number of tasks $N$ , workers $M$ , answer options $K$ , and the expected number of annotations per task $A$ from broad, realistic ranges.
+
+**Behavioral heterogeneity.** Real-world crowdsourcing datasets consistently show significant variation in worker reliability and task difficulty, both of which strongly influence annotation quality. To model this heterogeneity, we sample worker ability as $\theta_i \sim \mathcal{N}(\mu_\theta, \sigma_\theta^2)$ . Task difficulty $\beta_j$ is drawn from $\mathcal{N}(\mu_\beta, \sigma_\beta^2)$ , task discrimination $\alpha_j$ from $\text{Uniform}(\alpha_{\min}, \alpha_{\max})$ , and task guessing rate $c_j$ from $\text{Uniform}(1/K, c_{\text{upper}})$ . Each task’s true label $y_j$ is sampled from $\{1, \dots, K\}$ . Notably, the parameters governing these distributions are themselves randomly drawn for each dataset, producing heterogeneous worker and task profiles and more realistic annotations.
+
+**Task assignment mechanism.** Crowdsourcing typically exhibits long-tailed participation, where a few workers contribute many labels while most contribute only a few. To capture this, we draw each worker’s labeling capacity $L_i$ from a heavy-tailed distribution, ensuring heterogeneous participation levels across workers. For each task $t_j$ , the number of assigned annotators $n_j$ is drawn from a Poisson distribution parameterized by $A$ , capturing the variability in annotation density across tasks. Annotators for each task are selected from workers with remaining capacity. This mechanism produces naturally uneven annotation coverage, exposing models to diverse participation patterns that mirror real-world data.
+
+{3}------------------------------------------------
+
+**Annotation generation via the 3PL response model.** Observed annotation labels should reflect both worker skill and task properties, while still allowing for random errors. We adopt the three-parameter logistic (3PL) model from Item Response Theory (DeMars, 2010) to capture this. For each worker-task pair $(w_i, t_j)$ , the probability of a correct annotation is
+
+$$p_{ij} = c_j + (1 - c_j) \cdot \sigma(D\alpha_j(\theta_i - \beta_j)), \quad (3)$$
+
+where $\sigma(x) = (1 + e^{-x})^{-1}$ denotes the logistic function and $D$ is a scaling constant. The observed label $a_{ij}$ is generated according to this probability, taking the true label $y_j$ with probability $p_{ij}$ , and with probability $1 - p_{ij}$ , an incorrect option is randomly chosen from the remaining $K - 1$ labels.
+
+**Generated dataset output.** The final synthetic dataset is $\mathcal{D} = (\mathcal{A}, \mathcal{Y})$ , where $\mathcal{A} = \{(w_i, t_j, a_{ij})\}$ contains all collected annotations and $\mathcal{Y} = \{y_j\}$ contains the corresponding ground-truth labels. The full generation procedure is summarized in Algorithm 1. Each dataset instance is independently sampled from broad distributions, exposing models to varying scales, sparsity levels, and noise patterns. This encourages the learning of aggregation rules that generalize across datasets rather than overfitting to a fixed setting.
+
+### 3.2 GNN STRUCTURE FOR CROSS-DATASET GENERALIZATION
+
+**Initialization of representations.** In real-world crowdsourcing datasets, workers and tasks typically have no additional features beyond their IDs. Traditional aggregation methods often rely on dataset-specific information, such as annotation statistics or one-hot identity features, which limits them to the given dataset and prevents generalization to datasets of different sizes. To overcome this, our model adopts a size-invariant initialization strategy: all worker nodes share the same learnable vector $x_w \in \mathbb{R}^d$ , all task nodes share another vector $x_t \in \mathbb{R}^d$ , and option nodes are independently initialized for each category from a fixed-dimensional Gaussian distribution.
+
+$$z_{w_i}^{(0)} = x_w \quad (\forall w_i \in \mathcal{W}), \quad z_{t_j}^{(0)} = x_t \quad (\forall t_j \in \mathcal{T}), \quad z_{o_k}^{(0)} \sim \mathcal{N}(0, I_d) \quad (\forall o_k \in \mathcal{O}). \quad (4)$$
+
+This design reflects the idea that workers and tasks are indistinguishable before any annotations are observed, and their differences emerge once relational information is incorporated, without introducing dataset-specific priors. Meanwhile, The random initialization of option embeddings ensures sufficient diversity to distinguish among candidate labels regardless of the number of options.
+
+**Attention-based encoder.** Starting from the size-invariant initialization, workers and tasks are treated as nodes in a heterogeneous graph. Rather than learning dataset-specific embeddings, the model allows their representations to evolve solely through relational evidence encoded in observed annotations. The encoder propagates information across the graph with $L$ layers of attention-based aggregation, gradually differentiating otherwise identical worker and task nodes according to their annotation patterns.
+
+At layer $l$ , for each observed annotation $(w_i, t_j, a_{ij}) \in \mathcal{A}$ , we construct a triple representation:
+
+$$h_{ij}^{(l)} = [z_{w_i}^{(l)}, z_{t_j}^{(l)}, z_{a_{ij}}] \in \mathbb{R}^{3d}, \quad (5)$$
+
+and compute queries, keys, and values via type-specific linear projections:
+
+$$q_{ij} = W_q h_{ij}^{(l)} + b_q, \quad k_{ij} = W_k h_{ij}^{(l)} + b_k, \quad v_{ij} = W_v h_{ij}^{(l)} + b_v. \quad (6)$$
+
+Attention weights are obtained by scaled dot-product and normalized over all annotations incident to the same center node:
+
+$$\alpha_{ij}^{(l)} = \text{softmax} \left( \frac{\langle q_{ij}, k_{ij} \rangle}{\sqrt{d}} \right). \quad (7)$$
+
+The embeddings of workers and tasks are then updated by aggregating values with these attention weights, followed by residual connection and layer normalization:
+
+$$z^{(l+1)} = \text{LayerNorm} \left( z^{(l)} + \sum_{(i,j) \in \mathcal{N}} \alpha_{ij}^{(l)} v_{ij} \right), \quad (8)$$
+
+{4}------------------------------------------------
+
+where the summation is restricted to the neighborhood $\mathcal{N}$ of the corresponding worker or task node. Repeating this process for $L$ layers allows the model to encode progressively richer relational patterns, enabling inference over workers and tasks without introducing dataset-specific priors.
+
+**Aggregated label prediction.** After obtaining refined embeddings from the encoder, we compute aggregated label predictions by combining task and option embeddings. For each task $t_j$ , its embedding $z_{t_j}$ is concatenated with all option embeddings $z_o$ and passed through a shared feed-forward network to produce logits for each task-option pair:
+
+$$\hat{l}_{jk} = g([z_{t_j}, z_{o_k}]). \quad (9)$$
+
+This design allows the model to handle tasks with any number of candidate options, while capturing task-option interactions to facilitate accurate label aggregation. The predicted probability distribution over options for task $t_j$ is then obtained via softmax, and the aggregated label is selected as the option with the highest probability:
+
+$$\hat{p}_{jk} = \frac{\exp(\hat{l}_{jk})}{\sum_{k'=1}^K \exp(\hat{l}_{jk'})}, \quad \hat{y}_j = \arg \max_k \hat{p}_{jk}. \quad (10)$$
+
+### 3.3 PRETRAINING AND INFERENCE
+
+**Pretraining on synthetic data.** To enable cross-dataset generalization, the model is pretrained on a collection of annotation datasets $\{\mathcal{D}^{(s)} = (\mathcal{A}^{(s)}, \mathcal{Y}^{(s)})\}_{s=1}^S$ produced by the synthetic data generator (Section 3.1). The encoder and the prediction network are optimized jointly by minimizing the average cross-entropy loss across all synthetic datasets:
+
+$$\mathcal{L} = -\frac{1}{S} \sum_{s=1}^S \left( \sum_{j=1}^{N_s} \sum_{k=1}^{K_s} \mathbf{1}[y_j^{(s)} = k] \log \hat{p}_{jk}^{(s)} \right), \quad (11)$$
+
+where $N_s$ and $K_s$ are the number of tasks and options in dataset $\mathcal{D}^{(s)}$ , respectively. The function $\mathbf{1}[\cdot]$ denotes the indicator function, which equals 1 if the condition is true and 0 otherwise. The term $\hat{p}_{jk}^{(s)}$ denotes the predicted probability of option $o_k$ for task $t_j$ in dataset $\mathcal{D}^{(s)}$ .
+
+**Inference on new datasets.** We denote the aggregation pipeline, including embedding initialization, message passing, and prediction, as a function $F(\cdot)$ . After pretraining, the parameters are fixed to obtain $F^*(\cdot)$ . Given a new annotation set $\mathcal{A}'$ , the aggregated labels are computed as:
+
+$$\hat{\mathcal{Y}} = F^*(\mathcal{A}'), \quad (12)$$
+
+where $\hat{\mathcal{Y}} = \{\hat{y}_j\}_{j=1}^N$ denotes the set of predicted labels. This procedure enables direct deployment to unseen datasets without any further training or parameter updates.
+
+## 4 EXPERIMENTS
+
+Our experimental evaluation spans both the main paper and the appendices. Section 4.2 presents label aggregation accuracy results on 22 real-world crowdsourcing datasets. Section 4.3 investigates CrowdFM’s ability to learn transferable representations of workers and tasks that generalize to diverse downstream adaptation scenarios. Section 4.4 provides ablation studies and sensitivity analyses of key model components and hyperparameters. Appendix F includes a quantitative analysis comparing synthetic and real-world datasets. Appendix G evaluates CrowdFM’s performance under a range of synthetic dataset configurations.
+
+### 4.1 EXPERIMENTAL SETUP
+
+Our model is trained on dynamically generated synthetic crowdsourced datasets, where diverse configurations are sampled at each training step to expose the model to a wide variety of scenarios. Implementation details of the synthetic dataset generation, along with the specific parameter ranges
+
+{5}------------------------------------------------
+
+
+
+| Dataset | MV Accuracy (%) | CrowdFM Accuracy (%) | Improvement (%) |
+|-|-|-|-|
+| SP* | ~94.0 | ~95.0 | +0.20 |
+| PosSent | ~93.5 | ~95.0 | +1.48 |
+| Fact | ~90.0 | ~90.4 | +0.04 |
+| Product | ~89.5 | ~90.0 | +0.27 |
+| RTE | ~89.0 | ~91.0 | +2.18 |
+| SP | ~88.5 | ~89.8 | +1.30 |
+| Senti | ~88.0 | ~87.2 | -0.08 |
+| CF | ~87.5 | ~88.5 | +0.20 |
+| ZC_us | ~86.0 | ~86.5 | +0.45 |
+| CF* | ~85.5 | ~85.9 | +0.60 |
+| WS | ~85.0 | ~85.6 | +0.60 |
+| ZC_all | ~82.0 | ~84.7 | +2.7 |
+| Dog | ~81.5 | ~81.9 | +0.43 |
+| Aircrowd6LabelMe | ~81.0 | ~81.8 | +1.08 |
+| Adult | ~78.5 | ~79.3 | +0.48 |
+| Bird | ~78.0 | ~81.7 | +3.70 |
+| ZC_in | ~74.5 | ~74.9 | +0.04 |
+| Web | ~73.0 | ~85.3 | +12.93 |
+| MS | ~70.0 | ~79.3 | +9.43 |
+| Trec | ~69.5 | ~69.9 | +0.04 |
+| Face | ~69.0 | ~69.2 | +0.24 |
+
+Figure 2: Accuracy comparison between MV and CrowdFM across 22 datasets. The figure consists of two bar charts. The top chart shows accuracy for datasets: SP\*, PosSent, Fact, Product, RTE, SP, Senti, CF, ZC\_us, CF\*, and WS. The bottom chart shows accuracy for datasets: ZC\_all, Dog, Aircrowd6LabelMe, Adult, Bird, ZC\_in, Web, MS, Trec, and Face. In both charts, MV is represented by light green bars and CrowdFM by dark blue bars. Numbers above the bars indicate the performance improvement of CrowdFM over MV.
+
+Figure 2: Accuracy comparison between MV and CrowdFM across 22 datasets. The numbers above the bars indicate the performance improvement.
+
+used, are provided in Appendix B. For evaluation, we consider 22 real-world datasets drawn from practical human-labeled scenarios across various domains, with full details of each dataset included in Appendix D. Since all of the considered datasets are intended for classification tasks, accuracy is adopted as the primary evaluation metric, which is defined as the proportion of correctly predicted labels among all instances.
+
+### 4.2 MAIN RESULTS
+
+#### Comparison with majority voting.
+
+We conduct a comprehensive evaluation of our framework on 22 real-world crowdsourcing datasets, comparing its performance against the majority voting (MV) baseline. As shown in Figure 2, our method consistently outperforms MV across most datasets, yielding an average improvement of +1.64 percentage points in accuracy. This consistent superiority highlights the strong generalization capability of our approach, capturing the inherent heterogeneity of workers and tasks, while effectively transferring the aggregation strategy learned from synthetic data to real-world scenarios.
+
+Notably, our model delivers particularly large gains on several benchmarks. The most significant improvements are observed on the *Web* and *MS* datasets, where CrowdFM surpasses MV by +12.93% and +9.43%, respectively. Substantial enhancements are also achieved on *Bird* (+3.70%) and *RTE* (+2.18%), indicating the effectiveness of our model in aggregating reliable labels. Across the remaining datasets, CrowdFM maintains consistently strong performance, with only a marginal drop on *Senti* of 0.08%, even though *Senti* deviates from our synthetic training data (Appendix F), highlighting its robustness across diverse crowdsourcing scenarios.
+
+| | #Win $\uparrow$ | Acc. $\uparrow$ | Runtime $\downarrow$ | P-value |
+|-|-|-|-|-|
+| MV | - | 81.78 | 0.04 | 0.00003 |
+| PM | 13 | 80.27 | 0.47 | 0.00647 |
+| CATD | 15 | 83.06 | 2.59 | 0.20700 |
+| DS | 16 | 83.02 | 5.24 | 0.31889 |
+| BWA | 17 | 83.31 | 0.10 | 0.60871 |
+| IBCC | 15 | 83.07 | 0.12 | 0.36658 |
+| EBCC | 17 | 84.08 | 2.95 | 0.90089 |
+| GLAD | 16 | 82.75 | 494.26 | 0.19475 |
+| LAA | 10 | 78.42 | 223.06 | 0.04935 |
+| TiReMGE | 6 | 80.29 | 26.77 | 0.00230 |
+| GOVERN | 13 | 82.61 | 95.43 | 0.28992 |
+| HyperLM | 12 | 80.81 | 0.88 | 0.01793 |
+| CrowdFM | 21 | 83.41 | 0.53 | - |
+
+Table 1: Performance comparison across 22 real-world crowdsourcing datasets. Win counts indicate the number of datasets where each method outperforms MV. Accuracy and runtime are averaged over all successfully completed runs (LAA and GOVERN failed on several large datasets due to extremely high memory requirements). The P-value reports the one-sided *p*-value from the Wilcoxon signed-ranks test comparing each method against CrowdFM, with lower values indicating stronger significance in difference. Full per-dataset results are provided in Appendix E.
+
+{6}------------------------------------------------
+
+Importantly, several datasets exhibit domain shifts relative to the synthetic training data, such as differences in size and annotation density (see Appendix D). Despite these shifts, CrowdFM maintains performance comparable to or better than MV, consistently demonstrating strong generalization across varying scales and noise patterns. In contrast, many dataset-specific methods often underperform MV (Appendix E.1), as they tend to overfit to particular structures and fail to generalize to other datasets.
+
+**Comparison with dataset-specific methods.** We further compare CrowdFM against a range of state-of-the-art dataset-specific aggregation methods. As shown in Table 1, our method achieves the highest number of wins over MV, outperforming MV on 21 out of 22 benchmarks. This demonstrates its strong competitiveness and broad applicability in diverse crowdsourcing scenarios. Among the dataset-specific methods, BWA and EBCC achieve the next highest number of wins with 17 datasets. GOVERN, the top deep learning-based method, wins on 13 datasets. Despite these performances, none match the consistent superiority of CrowdFM across the full set of datasets.
+
+Specifically, CrowdFM achieves an average accuracy of 83.41%, which is competitive with top-performing models such as EBCC (84.08%) and superior to others including BWA and DS. To assess the statistical significance of these improvements, we conduct the one-sided Wilcoxon signed-ranks test (Demšar, 2006) between CrowdFM and each baseline. The results show that CrowdFM is significantly better than MV, PM, LAA, TiReMGE, and HyperLM. These significant gains confirm the effectiveness of our method. Notably, despite EBCC’s marginally higher average accuracy, the performance differences are not statistically significant ( $p = 0.90089$ ), and EBCC incurs a significantly higher computational cost (2.95 seconds per dataset), whereas CrowdFM maintains efficient inference at only 0.53 seconds per dataset, comparable to lightweight methods.
+
+HyperLM, a training-free method designed for programmatic weak supervision, fails to adapt to crowdsourcing settings. It outperforms MV on only 12 out of 22 datasets and achieves an average accuracy of 80.81, which is notably lower than that of our approach (83.41) and even underperforming MV (81.78). With an average runtime of 0.88 seconds, it is notably slower than CrowdFM, which runs in 0.53 seconds. HyperLM also exhibits poor scalability, taking 16.72 seconds on large-scale datasets such as Senti, compared to our method’s 5.75 seconds (Appendix E.2). These results confirm that HyperLM is neither as accurate nor as efficient as CrowdFM and is ill-suited for real-world crowdsourcing applications.
+
+Despite being a deep learning-based method, CrowdFM demonstrates favorable runtime efficiency, running much faster than other deep learning approaches such as LAA (223.06 s), TiReMGE (26.77 s), and GOVERN (91.46 s), while remaining comparable in speed to simpler, lightweight methods such as PM (0.47 s). This efficiency and robustness arise from CrowdFM’s ability to learn a generalizable aggregation mechanism capturing real-world crowdsourcing patterns during pretraining, eliminating the need for dataset-specific training or iterative parameter estimation at inference time.
+
+### 4.3 MULTIPLE DOWNSTREAM ADAPTATIONS
+
+Having demonstrated strong performance in label aggregation, we now explore the broader utility of CrowdFM beyond its primary task. By design, our model learns to capture the heterogeneity inherent in crowdsourcing environments, learning rich representations of worker behavior and task characteristics through training on diverse synthetic data. This ability aligns with the foundation model paradigm, where a single pretrained network acquires transferable knowledge applicable to multiple downstream adaptations.
+
+For adapting multiple downstream applications, we keep the encoder fixed and only train lightweight downstream-specific heads. These heads are trained once and can be directly deployed on new datasets without further adaptation. This design ensures that CrowdFM remains efficient and deployment-friendly, enabling rapid extension to diverse downstream applications while preserving the pretrained knowledge.
+
+#### 4.3.1 WORKER AND TASK ASSESSMENT
+
+In crowdsourcing scenarios, identifying skilled workers and difficult tasks is essential for ensuring annotation quality (Daniel et al., 2018). In this section, we assess the transferability of the learned
+
+{7}------------------------------------------------
+
+
+
+Figure 3: Assessment result on synthetic data. Two scatter plots showing strong positive correlation between predicted and true values. Left plot: Predicted Worker Ability vs True Worker Ability (Pearson=0.721, Spearman=0.719). Right plot: Predicted Task Difficulty vs True Task Difficulty (Pearson=0.752, Spearman=0.786).
+
+Figure 3: Assessment result on synthetic data.
+
+
+
+Figure 4: Assessment result on real-world data (Web). Two scatter plots showing strong positive correlation between predicted and true values. Left plot: Predicted Worker Ability vs True Worker Accuracy (Pearson=0.449, Spearman=0.506). Right plot: Predicted Task Difficulty vs True Task Error Rate (Pearson=0.606, Spearman=0.584).
+
+Figure 4: Assessment result on real-world data (Web).
+
+representations from pre-training by applying them to two core quality assessment tasks: estimating global worker ability and inferring global task difficulty.
+
+**Adaptation setup.** We extract worker and task embeddings produced by CrowdFM during inference and use them as features to train lightweight regression heads, supervised by the ground-truth from the synthetic data generator introduced in Section 3.1:
+
+$$\hat{a}_i = g_a(z_{w_i}), \quad \mathcal{L}_a = \frac{1}{|W|} \sum_{w_i \in W} (\hat{a}_i - \theta_i)^2, \quad \hat{d}_j = g_d(z_{t_j}), \quad \mathcal{L}_d = \frac{1}{|\mathcal{T}|} \sum_{t_j \in \mathcal{T}} (\hat{d}_j - \beta_j)^2, \quad (13)$$
+
+where $\hat{a}_i$ and $\hat{d}_j$ denote the predicted ability of worker $w_i$ and difficulty of task $t_j$ , respectively; $z_{w_i}$ and $z_{t_j}$ are the corresponding learned embeddings; $\theta_i$ and $\beta_j$ are the ground-truth values from the synthetic generator. The losses $\mathcal{L}_a$ and $\mathcal{L}_d$ are mean squared errors (MSE) computed over all workers $W$ and all tasks $\mathcal{T}$ , respectively.
+
+**Performance on synthetic data.** We evaluate worker and task assessment performance on synthetic data where ground truth is available. The Pearson and Spearman correlation scores show strong agreement between the predicted and true values (Figure 3), indicating that the model successfully captures latent heterogeneity and enables effective assessment, even without explicit supervision for these attributes during pretraining.
+
+**Generalization to real-world data.** We further evaluate the model’s ability to generalize to real-world settings using the Web dataset. Since ground-truth worker abilities and task difficulties are unavailable, we use individual worker accuracy and task error rate as empirical proxies. As shown in Figure 4, the predictions from CrowdFM trained solely on synthetic data exhibit strong correlation with these observed metrics. This indicates that the model successfully generalizes to real-world data, capturing realistic patterns of worker behavior and task properties.
+
+
+
+Figure 5: Comparison of CrowdFM and MV under compatibility prediction-based (solid) and random (dashed) assignment strategies over four rounds on the Web dataset. The x-axis shows the number of assigned worker-task pairs (8000 to 14000). The y-axis shows aggregation accuracy (0.60 to 0.90). CrowdFM (Predictor) starts at ~0.70 and reaches ~0.86. CrowdFM (Random) starts at ~0.70 and reaches ~0.85. MV (Predictor) starts at ~0.61 and reaches ~0.73. MV (Random) starts at ~0.61 and reaches ~0.73.
+
+Figure 5: Comparison of CrowdFM and MV under compatibility prediction-based (solid) and random (dashed) assignment strategies over four rounds on the Web dataset. The x-axis shows the number of assigned worker-task pairs, and the y-axis is aggregation accuracy. The leftmost point is the initial 50% observed assignments, and the rightmost is all eligible pairs assigned, which are identical across strategies and therefore overlap.
+
+{8}------------------------------------------------
+
+
+
+Figure 6: Ablation study on key modules and hyperparameters of CrowdFM. (a) Bar chart showing accuracy for 'w/o AT' (~72.5), 'w/o SG' (~78.5), and 'CrowdFM' (~83.0). (b) Line graph showing accuracy increasing from ~80.0 at 2 layers to ~83.0 at 10 layers. (c) Line graph showing accuracy increasing from ~45 at 2 dimensions to ~82 at 32 dimensions.
+
+Figure 6: Ablation study on key modules and hyperparameters of CrowdFM. (a) Effect of attention-based message passing (AT) and the synthetic data generator (SG) on performance. (b) Performance with varying numbers of GNN layers. (c) Performance across different embedding dimensions. The y-axis shows average accuracy over real-world datasets.
+
+#### 4.3.2 TASK ASSIGNMENT
+
+A major challenge in crowdsourcing is to maximize annotation quality under limited budgets, ideally by assigning each task to workers most likely to provide correct responses (Ho & Vaughan, 2012). In this section, we demonstrate that CrowdFM, once pretrained, can be effectively repurposed to predict worker–task compatibility, enabling intelligent task assignment.
+
+**Adaptation setup.** We apply a lightweight compatibility head $g_c$ to the model’s output embeddings. To enhance discrimination among workers for the same task and prevent bias, we perform data filtering: for each task $t_j$ , we sample an equal number of correct and incorrect responses based on agreement with the ground truth $y_j$ , ensuring balanced and informative training pairs. The compatibility head is trained with a binary cross-entropy (BCE) objective to predict whether a worker will provide the correct label for a given task:
+
+$$\hat{c}_{ij} = g_c(z_{w_i}, z_{t_j}), \quad \mathcal{L}_c = -\frac{1}{|\mathcal{C}|} \sum_{(i,j) \in \mathcal{C}} \log \sigma (\hat{c}_{ij} \cdot I(a_{ij}, y_j)), \quad (14)$$
+
+where $I(a_{ij}, y_j) = 1$ if $a_{ij} = y_j$ , and $-1$ otherwise. $\mathcal{C}$ is the set of filtered worker-task pairs used for training, and $\sigma(\cdot)$ denotes the sigmoid function.
+
+**Evaluation setup.** We design a controlled evaluation protocol to compare task assignment based on predicted compatibility against a random baseline. The evaluation begins with 50% of the initial worker–task assignments used as historical data. CrowdFM leverages these observed assignments to predict compatibilities for the remaining unassigned worker–task pairs, providing guidance for subsequent allocation decisions.
+
+The allocation is carried out over four sequential rounds. In each round, every task is assigned a fixed number of new labeling slots. Under the Predictor strategy, each task selects the top-ranked unassigned workers based on predicted compatibility scores, whereas under the Random strategy, workers are chosen uniformly at random to fill the slots.
+
+**Performance on real-world data.** As shown in Figure 5, using compatibility-based assignment strategy (Predictor) results in significantly higher accuracy for both MV and CrowdFM compared to random assignment (Random). This demonstrates that CrowdFM supports intelligent task assignment in a retraining-free manner, effectively leveraging its pretrained knowledge to guide worker-task allocation.
+
+Notably, the accuracy of MV begins to decline in the third and fourth rounds under the compatibility predictor strategy. This is because higher-quality worker-task pairs are typically allocated in earlier rounds based on the model’s predictions. As the process progresses, the remaining pool consists of increasingly noisy assignments, involving more ambiguous or less compatible interactions. While MV is sensitive to this degradation in annotation quality, CrowdFM maintains stable performance, demonstrating its resilience to such challenging cases and highlighting its advantage in handling noisy, real-world annotation patterns.
+
+{9}------------------------------------------------
+
+### 4.4 ABLATION STUDY
+
+**Ablation on modules** We create two variants of CrowdFM: one replaces the attention mechanism with a mean aggregator (w/o AT), and the other uses a uniformly random generator instead of our synthetic data generator (w/o SG), inspired by (Wu et al., 2023b) (Algorithm 2). As shown in Figure 6a, removing either component degrades performance significantly. The w/o AT variant causes the largest drop in accuracy, confirming that attention is crucial for modeling annotation heterogeneity. The performance drop with w/o SG underscores the importance of diverse synthetic data for sim-to-real transfer.
+
+**Ablation on hyperparameters** We evaluate the impact of GNN depth $L$ and embedding dimension $d$ . As shown in Figure 6b, performance improves steadily with deeper layers, suggesting that longer-range message passing helps capture annotation patterns. In Figure 6c, we observe that dimension 2 is insufficient to represent annotator behaviors, dimension 4 provides basic capacity, and higher dimensions lead to consistent improvements. These trends highlight the scalability of our design and suggest further gains with larger configurations.
+
+## 5 RELATED WORK
+
+**Label Aggregation.** Existing label aggregation methods typically estimate dataset-specific parameters to model annotation heterogeneous characteristics. PM (Aydin et al., 2014) estimates worker quality, while CATD (Li et al., 2014) quantifies reliability with confidence intervals. GLAD models worker expertise and task difficulty (Whitehill et al., 2009). DS (Dawid & Skene, 1979) and IBCC model per-worker confusion matrices, and EBCC (Li et al., 2019b) extends IBCC by capturing worker correlations. BWA (Li et al., 2019a) adopts inverse-Gamma priors for label estimation. Deep learning approaches such as LAA (Li’ang Yin et al., 2017), TiReMGE (Wu et al., 2023a), and GOVERN (Liu et al., 2024) learn worker and task embeddings through self-supervised learning. Despite their complexity, all these methods require training from scratch on each dataset and lack transferability. In contrast, the simplest method MV enables retraining-free inference across datasets but fails to capture annotation heterogeneity.
+
+HyperLM (Wu et al., 2023b) shares the retraining-free objective for programmatic weak supervision aggregation but is not a foundation model for crowdsourcing with human annotations: HyperLM adopts a uniform random data generation process, which misaligns with real-world annotation patterns; its node-per-binary-annotation graph design incurs high computational cost and does not scale to large-scale annotations or categories; and it lacks explicit representations of workers or tasks, preventing direct application to downstream adaptation.
+
+**Foundation Model.** Recently, foundation models pretrained on large-scale corpora have demonstrated remarkable generalization capabilities (Zhou et al., 2024). Notably, large language models (LLMs) (Achiam et al., 2023; Guo et al., 2025) excel in natural language understanding and generation, leveraging in-context learning for zero-shot or few-shot adaptation. Concurrently, graph foundation models (Liu et al., 2025; Yu et al., 2025) learn transferable structural representations, enabling effective generalization across graph-based tasks. However, existing foundation models are not designed for crowdsourced sceneries. LLMs focus on sequential text and cannot model worker-task relationships or annotation quality (Appendix I). Graph models rely on rich node features, which are often unavailable in crowd settings. Therefore, these models are fundamentally ill-suited for direct application in crowdsourced label aggregation.
+
+## 6 CONCLUSION
+
+In this work, we introduce CrowdFM, a foundation model for crowdsourced label aggregation. By pretraining a GNN on a wide range of simulated labeling scenarios, it learns to capture annotation heterogeneity and generalizes across diverse datasets without dataset-specific training. The model demonstrates strong cross-dataset generalization, robustness, and adaptability to multiple downstream tasks. We hope this work provides a useful foundation for future research, particularly in improving the realism of synthetic data generation and extending the framework to more complex annotation types such as continuous or structured labels.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/FMjeC9Msws.txt b/papers/FMjeC9Msws.txt
new file mode 100644
index 0000000000000000000000000000000000000000..d91ff375c94458c645d4e520d16c5afea429f7cc
--- /dev/null
+++ b/papers/FMjeC9Msws.txt
@@ -0,0 +1,257 @@
+
+
+{0}------------------------------------------------
+
+# THE ART OF SCALING REINFORCEMENT LEARNING COMPUTE FOR LLMs
+
+Devvrit Khatri\*Δ Lovish Madan†\* Rishabh Iyer‡ Rachit Bansal¶ Sai Surya DuvvuriΔ
+ Manzil Zaheer◦ Inderjit S. DhillonΔY David Brandfonbrener◦ Rishabh Agarwal◦
+ΔUT Austin ◦Meta †UCL ‡UCB ¶Harvard University YGoogle
+
+## ABSTRACT
+
+Reinforcement learning (RL) has become central to training large language models (LLMs), yet the field lacks predictive scaling methodologies comparable to those established for pre-training. Despite rapidly rising compute budgets, there is no principled understanding of how to evaluate algorithmic improvements for scaling RL compute. We present the first large-scale systematic study, amounting to more than 400,000 GPU-hours, that defines a principled framework for analyzing and predicting RL scaling in LLMs. We fit sigmoidal compute-performance curves for RL training and ablate a wide range of common design choices to analyze their effects on asymptotic performance and compute efficiency. We observe: (1) Not all recipes yield similar asymptotic performance, (2) Details such as loss aggregation, normalization, curriculum, and off-policy algorithm primarily modulate compute efficiency without materially shifting the asymptote, and (3) Stable, scalable recipes follow predictable scaling trajectories, enabling extrapolation from smaller-scale runs. Combining these insights, we propose a *best-practice* recipe, **SCALERL**, and demonstrate its effectiveness by successfully scaling and predicting validation performance on a single RL run scaled up to 100,000 GPU-hours. Our work provides both a *scientific framework* for analyzing scaling in RL and a practical recipe that brings RL training closer to the predictability long achieved in pre-training.
+
+
+
+Figure 1: Predictably Scaling RL compute to 100,000 GPU Hours. (a) Validation perf., Scaling RL Compute: A log-log plot showing pass rate (log scale) vs GPU Hours x 10^3 (log scale). It features training points (blue stars), extended training points (red crosses), fitted curves (solid lines), and extrapolated curves (dashed lines) for ScaleRL-8B Dense (blue) and ScaleRL-17Bx16 MoE (orange). (b) AIME-24, Scaling RL Compute: A log-log plot showing pass rate (log scale) vs GPU Hours x 10^3 (log scale) for ScaleRL-8B Dense (blue) and ScaleRL-17Bx16 MoE (orange), showing consistent scaling trends.
+
+Figure 1: **Predictably Scaling RL compute to 100,000 GPU Hours** (a) We run **SCALERL** for 100k GPU hours on an 8B dense model, and 50k GPU hours on a 17Bx16 MoE (Scout). We fit a sigmoid curve (Equation (1)) on pass rate (mean@16) on *iid* validation dataset up to 50k (and 16k) GPU hours and extrapolate to 100k (and 45k) on the 8B (Scout MoE) models respectively. We trained for 7400 steps for 8B and 7100 steps for Scout, which is $3.5\times$ larger than ProRL (Liu et al., 2025a). The extrapolated curve ( $\times$ markers) closely follows extended training, demonstrating both stability at large compute and predictive fits-establishing **SCALERL** as a reliable candidate for RL scaling. (b) **Downstream evaluation on AIME-24** shows a consistent scaling trend for **SCALERL**, thus generalizing beyond the training data distribution. Moreover, scaling model size substantially improves the downstream and asymptotic RL performance.
+
+\*Equal technical contribution
+
+{1}------------------------------------------------
+
+
+
+Comparing ScaleRL with prevalent recipes
+
+| Method | B | A |
+|-|-|-|
+| ScaleRL | 1.97 | 0.610 |
+| MiniMax | 1.77 | 0.610 |
+| Magistral | 1.44 | 0.535 |
+| Qwen2.5 (DAPO) | 1.85 | 0.515 |
+| DeepSeek (GRPO) | 1.17 | 0.490 |
+
+★ training points
+× extended training points
+— fitted curve
+-- extrapolated curve
+
+Figure 2: A log-log plot comparing ScaleRL with other RL methods. The x-axis is 'GPU Hours x 10^3 (log scale)' from 1 to 32. The y-axis is 'Pass rate (log scale)' from 0.40 to 0.60. ScaleRL (blue stars) shows the highest performance, followed by MiniMax (orange), Magistral (green), Qwen2.5 (DAPO) (red), and DeepSeek (GRPO) (purple). Solid lines are fitted curves, dashed lines are extrapolated. Legend includes asymptotic reward values (B and A) for each method.
+
+Figure 2: **SCALERL is more scalable than prevalent RL methods.** We fit sigmoid curves (Equation 1) on *iid* validation dataset to commonly-used training recipes like DeepSeek (GRPO) (Guo et al., 2025), Qwen-2.5 (DAPO) (Yu et al., 2025), Magistral (Rastogi et al., 2025), and Minimax-M1 (MiniMax et al., 2025), and compare them with **SCALERL**. **SCALERL** surpasses all other methods, achieving an asymptotic reward of $A = 0.61$ . Stars denote evaluation points; solid curves show the fitted curve over the range used for fitting; dashed curves extrapolate beyond it. We validate the predictability by running each method for longer (“×” markers), which align closely with the extrapolated curves for stable recipes like **SCALERL** and MiniMax. Further description of the individual recipes compared are given in Appendix A.17.
+
+## 1 INTRODUCTION
+
+Scaling reinforcement learning (RL) compute is emerging as a critical paradigm for advancing large language models (LLMs). While pre-training establishes the foundations of a model; the subsequent phase of RL training unlocks many of today’s most important LLM capabilities, from test-time thinking (OpenAI, 2024; Guo et al., 2025) to agentic capabilities (Kimi Team et al., 2025a). For instance, Deepseek-R1-Zero used 100,000 H800 GPU hours for RL training – 3.75% of its pre-training compute (Guo et al., 2025). This dramatic increase in RL compute is amplified across frontier LLM generations, with more than $10\times$ increase from o1 to o3 (OpenAI, 2025) and a similar leap from Grok-3 to Grok-4 (xAI Team, 2025).
+
+While RL compute for LLMs has scaled massively, our understanding of *how* to scale RL has not kept pace; the methodology remains more *art* than science. Recent breakthroughs in RL are largely driven by isolated studies on novel algorithms (e.g., Yu et al. (DAPO, 2025)) and model-specific training reports, such as, MiniMax et al. (2025) and Magistral (Rastogi et al., 2025). Critically, these studies provide *ad-hoc* solutions tailored to specific contexts, but not *how* to develop RL methods that scale with compute. This lack of scaling methodology stifles research progress: with no reliable way to identify promising RL candidates *a priori*, progress is tied to large-scale experimentation that sidelines most of the academic community.
+
+This work lays the groundwork for science of RL scaling by borrowing from the well-established concept of *scaling laws* from pre-training. While pre-training has converged to algorithmic recipes that scale *predictably* with compute (Kaplan et al., 2020; Hoffmann et al., 2022; Owen, 2024), the RL landscape lacks a clear standard. As a result, RL practitioners face an overwhelming array of design choices, leaving the fundamental questions of *how* to scale and *what* to scale unanswered. To address these, we establish a predictive framework for RL performance using a sigmoid-like saturating curve between the expected reward ( $R_C$ ) on an *iid* validation set and training compute ( $C$ ):
+
+$$\underbrace{R_C - R_0}_{\text{Reward Gain}} = \underbrace{(A - R_0)}_{\text{Asymptotic Reward Gain}} \times \underbrace{\frac{1}{1 + (C_{\text{mid}}/C)^B}}_{\text{Compute Efficiency}} \quad (\text{fixed model and training data}) \quad (1)$$
+
+{2}------------------------------------------------
+
+where $0 \leq A \leq 1$ represents the asymptotic pass rate, $R_0$ represents initial reward at 0 training compute, $B > 0$ is a scaling exponent that determines the compute efficiency, and $C_{mid}$ sets the midpoint of the RL performance curve. A schematic interpretation of these parameters is provided in Figure 3.
+
+This framework in Equation (1) allows researchers to extrapolate performance from lower-compute runs to higher compute budgets, enabling them to evaluate scalability of RL methods without incurring the compute cost of running every experiment to its computational limit.
+
+Guided by this framework, we develop **SCALERL**, an RL recipe that scales *predictably* with compute. In a massive **100,000 GPU-hours training run**, we show that **SCALERL**’s performance closely matches the scaling curve predicted by our framework (Figure 1). Critically, scaling curves extrapolated from only the initial stages of training closely match the final observed performance, confirming the predictive ability of our framework to extreme compute scales.
+
+The design of **SCALERL** is grounded in a comprehensive empirical study of RL scaling that spanned over **400,000 GPU-hours** (on Nvidia GB200 GPUs). This study explored numerous design choices at an 8B model parameters scale, where individual runs use up to 16,000 GPU-hours, making them **6× cheaper** than experimenting at our largest training run scale. This investigation yielded three key principles:
+
+- **RL Performance Ceilings are Not Universal:** As we scale training compute for different methods, they encounter different ceilings on their achievable performance ( $A$ ). This limit can be shifted by choices such as the loss type and batch size.
+- **Embracing the Bitter Lesson:** Methods that appear superior at small compute budgets can be worse when extrapolated to large-compute regimes (Figure 2). We can still identify scalable methods by estimating the scaling parameters ( $A, B$ ) from the early training dynamics using our framework (Equation (1)).
+- **Re-evaluating Common Wisdom:** Common interventions thought to improve peak performance (e.g., loss aggregation, data curriculum, length penalty, advantage normalization) mainly adjust compute efficiency ( $B$ ), while not changing the performance ceiling considerably.
+
+Based on these insights, **SCALERL** achieves *predictable* scaling by integrating existing methods, rather than inventing novel methods. Specifically, **SCALERL** combines asynchronous Pipeline-RL setup (§3.1), forced length interruptions, truncated importance sampling RL loss (CISPO), prompt-level loss averaging, batch-level advantage normalization, FP32 precision at logits, zero-variance filtering, and No-Positive-Resampling – with each component’s contribution validated in a leave-one-out ablation, consuming 16,000 GPU-hours per run.
+
+**SCALERL** not only scales *predictably* but also establishes a new **state-of-the-art** (Figure 2) – it achieves higher asymptotic performance and compute efficiency compared to established RL recipes. Moreover, **SCALERL** maintains predictable scaling when increasing compute across multiple training axes (§5) – including $2.5\times$ larger batch sizes, longer generation lengths up to 32,768 tokens, multi-task RL using math and code, and larger MoE (Llama-4 17B $\times$ 16); with benefits that consistently transfer to downstream tasks. Overall, this work establishes a rigorous methodology for cost-effectively predicting the scalability of new RL algorithms.
+
+## 2 PRELIMINARIES & SETUP
+
+We consider reinforcement learning with LLMs, where prompts $x$ are sampled from a data distribution $D$ . Our setup follows a generator-trainer split across GPUs: a subset of GPUs (*generators*) use optimized inference kernels for high-throughput rollout generation, while the remaining GPUs (*trainers*) run the training backend (FSDP) and update parameters. We denote by $\pi_{gen}$ and $\pi_{train}$ the model with parameters $\theta$ on the generator and training backends, respectively. For each prompt, the old policy $\pi_{gen}^{\theta_{old}}$ on the generator GPUs produces candidate completions, which are then assigned scalar rewards. Policy optimization proceeds by maximizing a clipped surrogate objective, taking expectations over $x \sim D$ and rollouts from $\pi_{gen}^{\theta_{old}}$ .
+
+**Training Regimen** We mainly conduct our RL experiments using an 8B dense model on verifiable math tasks with a batch size of 768 and a maximum output sequence length of 14,336 tokens. More details about training, including SFT and hyper-parameters, are in Appendix A.3.
+
+{3}------------------------------------------------
+
+
+
+Figure 3: Interpreting eq. (1). A plot showing Expected Reward R\_C on the y-axis versus Compute C (log scale) on the x-axis. The plot illustrates the RL Scaling Fit: R\_C = R\_0 + (A - R\_0) / (1 + (C\_mid/C)^B). The curve starts at R\_0 and asymptotically approaches A. A vertical dashed line marks C\_mid, where the reward is (A + R\_0)/2. The curve is fitted to observed training points (red stars) and extended training points (green crosses). The legend indicates: observed training points (red stars), extended training points (green crosses), extrapolated curve (dashed blue line), and fitted curve (solid blue line). Annotations include: 'Asymptotic reward A', 'Scaling exponent B controls curve steepness', and 'C\_mid = compute at 50% of total gain'.
+
+Figure 3: **Interpreting eq. (1).** We provide an example fit illustrating the roles of parameters $A$ , $B$ , and $C_{\text{mid}}$ . $C_{\text{mid}}$ determines the compute point at which half of the total gain is achieved - smaller values correspond to faster ascent toward the asymptote. $B$ controls the curve’s steepness, with larger values indicating greater efficiency. $A$ represents the asymptotic performance reached at large compute scales. Further discussion is provided in Appendix A.8.
+
+**Base RL Algorithm** As our starting point in § 3, we start with a “base” algorithm that resembles GRPO (Shao et al., 2024) without any KL regularization term, in line with large-scale training reports (Rastogi et al., 2025; MiniMax et al., 2025). Additionally, we include the asymmetric DAPO clipping (Yu et al., 2025), because of its widespread adoption as a default approach to avoid entropy collapse and maintain output diversity.
+
+For a given prompt $x$ , the old policy $\pi_{\text{gen}}(\theta_{\text{old}})$ generates $G$ candidate completions $\{y_i\}_{i=1}^G$ , each assigned a scalar reward $r_i$ . We compute advantages $\hat{A}_i$ and group-normalized advantages using:
+
+$$\hat{A}_i = r_i - \text{mean}(\{r_j\}_{j=1}^G), \quad \hat{A}_i^G = \hat{A}_i / (\text{std}(\{r_j\}_{j=1}^G) + \epsilon).$$
+
+Each completion $y_i$ of length $|y_i|$ contributes at the token-level importance sampling (IS) ratios $\rho_{i,t}(\theta)$ , with asymmetric upper and lower clipping thresholds, akin to DAPO (Yu et al., 2025):
+
+$$\rho_{i,t}(\theta) := \frac{\pi_{\text{train}}^\theta(y_{i,t} | x, y_{i,”), signaling the LLM to terminate its reasoning and produce a final answer. We revisit this choice later in Section 4 and compare it with length-penalty that penalizes long generations (Yu et al., 2025; Kimi Team et al., 2025b).
+
+### 2.1 PREDICTIVE COMPUTE-SCALING AND FITTING CURVES
+
+Unlike pre-training, which typically uses power-law to fit predictive curves, we model pass rate versus $\log(\text{compute})$ with a sigmoidal function (Equation (1)). We do so because we found the sigmoidal fit to be much more robust and stable compared to power law empirically, which we discuss further in Appendix A.4. Moreover, our choice is consistent with prior work that use sigmoid-like power laws to capture bounded metrics such as accuracy (Ruan et al., 2024; Srivastava et al., 2022).
+
+Similar to pre-training studies (Li et al., 2025b; Porian et al., 2025), we find that excluding the very early low-compute regime yields more stable fits, after which training follows a predictable
+
+{4}------------------------------------------------
+
+
+
+Figure 4: Three line plots showing pass rate (log scale) vs GPU Hours x 10^3 (log scale). (a) Comparing off-policy algorithms: PPO-off-policy-1 (B: 2.15, A: 0.520), PPO-off-policy-8 (B: 2.68, A: 0.520), and PipelineRL-8-off-policy (B: 4.55, A: 0.520). (b) Comparing loss functions: CISPO (B: 2.18, A: 0.595), GSPO (B: 1.80, A: 0.590), and DAPO (B: 4.55, A: 0.520). (c) FP32 Precision Fix at the LM Head: fp32 precision fix (B: 1.79, A: 0.610) and default (B: 4.55, A: 0.520).
+
+Figure 4: (a) **Comparing “compute-scaling” of asynchronous off-policy RL setups.** We report only the $B$ (scaling exponent) and $A$ (asymptotic pass rate) parameters of the fitted sigmoid curve (Equation 1). PipelineRL- $k$ is much more efficient and slightly better in the large compute limit. (b) **Comparing loss functions:** DAPO (Yu et al., 2025), GSPO (Zheng et al., 2025a), and CISPO (MiniMax et al., 2025). We find CISPO/GSPO achieve a higher asymptotic reward compared to DAPO. (b) **Using FP32 precision** in the final layer (LM head) gives a considerable boost in the asymptotic reward.
+
+trajectory. Unless noted otherwise, all our scaling fits begin after $\sim 1.5k$ GPU hours. Further details of the fitting procedure are provided in Appendix A.5 and the robustness of our curve fitting is discussed in Appendix A.7.
+
+**Interpreting scaling curves** Intuitively, a sigmoidal curve captures saturating returns - grows slowly in the low-compute regime, accelerates sharply through a mid-range of efficient scaling, and then saturates at high compute. We also provide a schematic interpretation of the parameters $A, B$ , and $C_{mid}$ of the sigmoidal curve in Figure 3. We see that $B, C_{mid}$ primarily affects the efficiency of the run, and $A$ denotes the asymptotic performance at large compute scale. Further discussion of these parameters is provided in Appendix A.8.
+
+**Scaling curve on held-out validation** Consistent with pre-training practice (Hoffmann et al., 2022; Porian et al., 2025), we measure predictive performance on **in-distribution** validation data. Since our training runs span multiple epochs, we hold out randomly selected 1,000 prompts from the Polaris-53k dataset for validation and use the remainder for training. The scaling curves are fitted on the validation points, which measure the average pass rate every 100 training steps, with 16 generations per prompt on the 1,000 held-out prompts.
+
+## 3 AN EMPIRICAL STUDY OF RL SCALING
+
+In this section, we conduct RL experiments using an 8B dense model on verifiable math problems. Using the setup described in Section 2, we study several design axes in terms of their predictable compute-scaling behavior, namely *asymptotic performance* ( $A$ ) and *compute efficiency* ( $B$ ), as shown in Figure 3.
+
+We structure our experiments in three stages – we first ablate design choices on top of the baseline at $3.5k$ to $4k$ GPU-hours since some experimental choices destabilize beyond this scale (Appendix A.16). Whenever a design change proved stable, we trained it for longer. Then, we combine the best choices into **SCALERL** and run leave-one-out (LOO) experiments for $16k$ GPU-hours in Section 4. Here, we assess predictability by fitting on the first $8k$ GPU-hours and extrapolating the remainder of the run. Finally, to demonstrate predictable scaling with **SCALERL**, we also consider training setups with larger batch sizes, mixture-of-experts model, multiple tasks (math and code), and longer sequence lengths in Section 5.
+
+### 3.1 ASYNCHRONOUS RL SETUP
+
+We first investigate the choice of asynchronous off-policy RL setup (Noukhovitch et al., 2024), as it governs training stability and efficiency, generally independent of other design choices. Specifically, we consider two approaches for off-policy learning: PPO-off-policy- $k$ and PipelineRL- $k$ .
+
+{5}------------------------------------------------
+
+**PPO-off-policy- $k$** is the default approach for asynchronous RL and has been used previously by Qwen3 (Yang et al., 2025) and ProRL (Liu et al., 2025a). In this setup, the old policy $\pi_{gen}^{\theta_{old}}$ generates reasoning traces for a batch of $B$ prompts. Each gradient update processes a mini-batch of $\tilde{B}$ prompts, resulting in $k = B/\tilde{B}$ gradient updates per batch. In our experiments, we fix $\tilde{B} = 48$ prompts (with 16 generations each), and vary $k \in \{1, 8\}$ by setting $B = k \times 48$ .
+
+**PipelineRL- $k$** is a recent approach from Piche et al. (2025) and used by Magistral (Rastogi et al., 2025). In this regimen, generators continuously produce reasoning traces in a streaming fashion. Whenever trainers finish a policy update, the new parameters are immediately pushed to the generators, which continue generating with the updated weights but a stale KV cache from the old policy. Once a full batch of traces is generated, it is passed to the trainers for the next update. In our setup we introduce a parameter $k$ : the trainers wait if they get $k$ steps ahead of the generators.
+
+We compare these approaches in Figure 4a. PipelineRL and PPO-off-policy achieve similar asymptotic performance $A$ , but PipelineRL substantially improves the compute efficiency $B$ ; thus reaching the ceiling $A$ faster. This is because PipelineRL reduces the amount of idle time in the training process. This choice yields reliable gains with fewer tokens, making larger sweeps at a lower compute budget possible. We also vary the maximum off-polyness for PipelineRL and find $k = 8$ to be optimal, discussed in Appendix A.12.
+
+### 3.2 ALGORITHMIC CHOICES
+
+Building on the results above, we adopt PipelineRL-8 as our updated baseline. We then study six additional algorithmic axes: (a) loss aggregation, (b) advantage normalization, (c) precision fixes, (d) data curriculum, (e) batch definition, and (f) loss type. In Section 4, we combine the best options into a unified recipe, termed **SCALERL** (Scale-able RL), and conduct leave-one-out experiments on a larger scale of 16,000 GPU-Hours.
+
+**Loss type** We compare the asymmetric DAPO loss (Eq. 8) with two recently proposed alternatives: GSPO (Zheng et al., 2025a) and CISPO (MiniMax et al., 2025; Yao et al., 2025). GSPO applies importance sampling at the sequence level as opposed to GRPO’s token-level formulation. Specifically, GSPO alters the token-level IS ratio (Eq. 2) to sequence-level ratios: $\rho_i(\theta) = \pi_{train}(y_i|x, \theta)/\pi_{gen}(y_i|x, \theta_{old})$ . CISPO simply combines truncated IS with vanilla policy gradient (Ionides, 2008), where $\text{sg}$ is the stop-gradient function:
+
+$$\mathcal{J}_{\text{CISPO}}(\theta) = \mathbb{E}_{\substack{x \sim \mathcal{D}_x \\ \{y_i\}_{i=1}^G \sim \pi_{gen}(\cdot|x, \theta_{old})}} \left[ \frac{1}{T} \sum_{i=1}^G \sum_{t=1}^{|y_i|} \text{sg}(\min(\rho_{i,t}, \epsilon_{\max})) \hat{A}_i \log(\pi_{train}(y_{i,t}|x, y_{i,fixed A = 0.685 | original fitted parameters $C_{mad} / B / A$ |
+|-|-|-|
+| • SCALERL | 2.01 | 2542 / 1.92 / 0.610 |
+| • L00-prompt-lvl-adv-norm | 1.82 | 2463 / 2.09 / 0.590 |
+| • L00-length-penalty | 1.75 | 2660 / 1.68 / 0.610 |
+| • L00-batch | 1.69 | 2503 / 1.84 / 0.595 |
+| • L00-PP0-off-policy-8 | 1.89 | 3409 / 1.89 / 0.605 |
+| • L00-no-fp32-precision-fix | 1.97 | 2857 / 1.88 / 0.610 |
+| • L00-sample-avg | 1.84 | 2621 / 1.93 / 0.600 |
+| • L00-uniform-sampling | 1.62 | 2621 / 1.62 / 0.605 |
+| • L00-dapo | 1.83 | 3093 / 1.77 / 0.610 |
+
+Figure 5: Leave-One-Out (LOO) Experiments. A log-log plot showing R (pass-rate, log scale) vs GPU Hours x 10^3 (log scale). The plot compares various methods, with SCALERL showing the highest compute efficiency. The legend includes training points, extended training points, fitted curve, and extrapolated curve. The table on the right shows fitted B w/ fixed A = 0.685 and original fitted parameters C\_mad / B / A for each method.
+
+Figure 5: **Leave-One-Out (LOO) Experiments:** Starting from **SCALERL**, we revert one design choice at a time to its baseline counterpart and re-train. Most LOO variants reach a similar asymptotic reward, with **SCALERL** outperforming slightly overall. The main difference in these methods lies in efficiency. To highlight this, we re-arrange Equation (1) into $\mathcal{F}(R_c) = C^B$ , where $\mathcal{F}(R_c) = C_{mad}^B \left( \frac{A - R_c}{R_c - R_0} - 1 \right)$ , and plot $\log \mathcal{F}(R_c)$ vs. $\log C$ . This makes slope $B$ directly visible, showing that **SCALERL** has the highest compute efficiency.
+
+prompt (as in GRPO, Appendix A.2). (b) *Batch level* where advantages are normalized by the standard deviation across all generations in the batch, as used by Hu et al. (2025a); Rastogi et al. (2025). (c) *No normalization* where advantages are computed as raw rewards centered by the mean reward of the prompt’s generations, without variance scaling (as proposed in Dr. GRPO (Liu et al., 2025b)). A comparison plot is shown in Appendix A.9 (Figure 10b), and all three methods are observed to yield similar performance. We therefore adopt batch-level normalization as it is theoretically sound and marginally better.
+
+**Zero-Variance Filtering** Within each batch, some prompts yield identical rewards across all their generations. These “zero-variance” prompts have zero advantage and therefore contribute zero policy gradient. The default baseline includes such prompts in loss computation, but it is unclear whether they should be included in the effective batch. To test this, we compare the default setting against an *effective batch* approach, where only prompts with non-zero variance are included in the loss calculation, as done by Seed et al. (2025). Note that zero-variance filtering differs from dynamic sampling in DAPO (Yu et al., 2025). The former merely drop the prompts, while latter resamples more prompts until the batch is full. We show in Appendix A.9 (Figure 11a) that using the effective batch performs better asymptotically; and we adopt it in our **SCALERL** recipe.
+
+**Adaptive Prompt Filtering** A number of data curriculum strategies have been proposed for RL training to improve sample efficiency (An et al., 2025; Zhang et al., 2025b; Zheng et al., 2025b). Here we evaluate a simple variant, introduced by An et al. (2025), with the key observation that once a prompt becomes too easy for a policy, it typically remains easy. Since such prompts consume some compute but no longer contribute useful gradient signal, it is better to exclude them from future training. We implement this by maintaining a history of pass rates and permanently removing any prompt with pass rate $\geq 0.9$ from subsequent epochs—we call this **No-Positive-Resampling**. In Appendix A.9 (Figure 11b) we compare this curriculum against the default setting where all prompts are resampled uniformly throughout training. We see that the curriculum improves scalability and the asymptotic reward $A$ .
+
+## 4 SCALERL: SCALING RL COMPUTE EFFECTIVELY & PREDICTABLY
+
+From the design axes studied above, we consolidate the best-performing settings into a single recipe, which we term **SCALERL** (**Scale-able RL**). **SCALERL** is an asynchronous RL recipe that uses **PipelineRL** with 8 steps off-policyness, interruption-based length control for truncation, **FP32 computation for logits**, and optimizes the $\mathcal{J}_{SCALERL}(\theta)$ loss. This loss combines prompt-level loss aggregation, batch-level advantage normalization, **truncated importance-sampling** REINFORCE
+
+{7}------------------------------------------------
+
+
+
+Figure 6: Scaling RL across several axes. (a) Scaling Generation Length: Pass rate (log scale) vs GPU Hours x 10^3 (log scale). (b) Scaling Model Size: Pass rate (log scale) vs GPU Hours x 10^3 (log scale). (c) Scaling Batch Size: Pass rate (log scale) vs GPU Hours x 10^3 (log scale). Each plot shows training points, extended training points, a fitted curve, and an extrapolated curve. (a) shows that larger sequence length is slower but reaches a higher asymptotic reward. (b) shows that using the larger 17Bx16 Llama-4 model reaches a much higher terminal reward and shows better generalization. (c) shows that larger batch is slower in training but settles at a higher asymptote.
+
+Figure 6: **Scaling RL across several axes.** We scale the ScaleRL recipe across three axes: (a) *sequence length*: Larger sequence is slower but reaches a higher asymptotic reward, (b) *model size*: using the larger 17Bx16 Llama-4 model reaches a much higher terminal reward and shows better generalization, and (c) *batch size*: larger batch is slower in training but settles at a higher asymptote.
+
+loss (CISPO), zero-variance filtering, and no-positive resampling:
+
+$$\mathcal{J}_{\text{SCALERL}}(\theta) = \mathbb{E}_{x \sim D_x} \left[ \frac{1}{\sum_{g=1}^G |y_g|} \sum_{i=1}^G \sum_{t=1}^{|y_i|} \text{sG}(\min(\rho_{i,t}, \epsilon)) \hat{A}_i^{\text{norm}} \log \pi_{\theta}^{\text{train}}(y_{i,t}) \right],$$
+
+$$\rho_{i,t} = \frac{\pi_{\theta}^{\text{train}}(y_{i,t})}{\pi_{\theta}^{\text{gen}}(y_{i,t})}, \quad \hat{A}_i^{\text{norm}} = \hat{A}_i / \hat{A}_{\text{std}}, \quad 0 < \text{mean}(\{r_j\}_{j=1}^G) < 1, \quad \text{pass\_rate}(x) < 0.9,$$
+
+where $\text{sG}$ is the stop-gradient function, $\hat{A}_{\text{std}}$ is the standard deviation of all advantages $\hat{A}_i$ in a batch and $\text{pass\_rate}(x)$ is the historical pass rate of prompt $x$ . For forced interruptions, we use phrase: “Okay, time is up. Let me stop thinking and formulate an answer now. ”.
+
+**Leave-One-Out (LOO) Ablations** To validate that these choices remain optimal when combined, we conduct *leave-one-out* (LOO) experiments: starting from **SCALERL**, we revert one axis at a time to its baseline counterpart from Section 2. This ensures that each decision contributes positively even in the presence of all others. Figure 5 reports these experiments, each scaled to 16k GPU hours.
+
+Across all axes, **SCALERL** consistently remains the most effective configuration, slightly outperforming LOO variants either in asymptotic reward or in compute efficiency (refer to the last column in the Figure 5 table). Since most LOO variants reach similar asymptotic pass rates, we transform the sigmoidal fit to a power-law fit, to highlight efficiency differences via the slope $B$ (details in Figure 5). Concretely, we average the asymptotic reward $A$ across all runs, re-fit the curves with this fixed $A$ , and then compare slopes (measuring efficiency) in Figure 5.
+
+In all our LOO experiments as well as independent **SCALERL** runs, we fit the sigmoidal curve up to 8k GPU-hours and extrapolate to 16k GPU-hours, observing that the predicted curves align closely with both training and extended points. This demonstrates the stability and predictability of **SCALERL** and other stable, scalable recipes under large-scale RL training.
+
+## 5 PREDICTABLE SCALING RETURNS ACROSS RL COMPUTE AXES
+
+Given a fixed or growing compute budget, which scaling knob – context length, batch size, generations per prompt, and model size – buys the most reliable performance gain, and how early can we predict that return? We answer this by (i) fitting the saturating power-law in eq. (1) early in training for each setting (precisely, half the target budget), (ii) extrapolating to the target budget, and (iii) extending training to verify the forecast. Across all axes below we observe clean, predictive fits whose extrapolated curves align with the extended trajectories, mirroring the behavior seen in our 100,000 GPU-hour run (Figure 1), and the cross-recipe comparison in Figure 2.
+
+**Model scale (MoE)** Does ScaleRL remain predictive and stable on larger models? Training the 17Bx16 Llama-4 Scout MoE with ScaleRL exhibits the same predictable scaling behavior as the 8B model, with low truncation rates and no instability pathologies (Appendix A.16, A.18). Figure 1 shows the training curve. The extended points align with the fitted curve, supporting the model-scale
+
+{8}------------------------------------------------
+
+invariance of our recipe. Moreover, the larger 17Bx16 MoE exhibits much higher asymptotic RL performance than the 8B dense model, outperforming the 8B’s performance using only 1/6 of its RL training compute.
+
+**Generation length (context budget)** Increasing the generation length from 14k to 32k tokens slows early progress (lower $B$ and higher $C_{mid}$ ) but consistently lifts the fitted asymptote ( $A$ ), yielding higher final performance once sufficient compute is provided (Figure 6). This validates long-context RL as a ceiling-raising knob rather than a mere efficiency trade-off. Extrapolations made from the fit correctly forecast the higher 32k-token trajectory when training is extended.
+
+**Global batch size (prompts)** Smaller-batch runs show early stagnation on downstream benchmarks even as in-distribution validation performance continues to improve. Larger batches reliably improve the asymptote and avoid the downstream stagnation we observe in smaller-batch runs. Figure 6c shows the same qualitative pattern at mid-scale: small batches may appear better early but are overtaken as compute grows. In our largest run in Figure 1, moving to batch size of 2k both stabilized training and yielded a fit that extrapolated from 50k GPU hours to the final 100k point.
+
+**Generations per prompt (fixed total batch)** For a fixed total batch, is it better to allocate more prompts or more generations per prompt? Sweeping generations per prompt 8,16,24,32 and adjusting prompts to keep total batch fixed leaves fitted scaling curves essentially unchanged (Appendix A.14), suggesting that, at moderate batch, this allocation is a second-order choice for both $A$ and $B$ . Clearer differences may emerge at much larger batches, which we leave as future work.
+
+## 6 RELATED WORK
+
+We detail two most relevant works to our study in this section. ProRL (Liu et al., 2025a) demonstrates that prolonged RL fine-tuning on LLMs ( $\sim 2000$ optimization steps, 64 batch size) for 16K GPU-hours using a mix of reasoning tasks uncovers novel solution strategies beyond a model’s base capabilities. This longer training regimen delivered significant gains on a 1.5B model, rivaling the performance of larger models on some benchmarks. ProRL’s contributions lie in specific heuristics for stability (KL-regularization, policy resetting, entropy controls, etc.) to achieve high performance out of a 1.5B model.
+
+Liu et al. (2025c) offer a complementary perspective and ablates various design choices under consistent conditions on Qwen-3 4B/8B (Yang et al., 2025), and presents a minimalist combination, LitePPO, that outperforms more complex methods like GRPO (Shao et al., 2024) and DAPO (Yu et al., 2025) on smaller scale models and compute. This yields valuable algorithmic insights, but the focus is on comparative empirical findings, rather than on scaling behaviour. While we focus on defining universal scaling trajectories for reasoning tasks, Vattikonda et al. (2026) has employed extensive hyperparameter sampling and bootstrapping to provide a ‘statistical diagnosis’ of RL training recipes in domain-specific contexts like web-agent post-training.
+
+None of these work study “scaling” properties of these methods. In fact, the main comparisons are done on downstream evaluations, which may not be the right metric to study predictable scaling. Rather, as done in pre-training and in our work here, we study performance on in-distribution held out eval set. In contrast to the mentioned related works, our work develops and validates a compute-performance framework with predictive fits, while operating at a much larger compute budget (e.g., 6x larger than ProRL) and model scale compared to the above studies. Additionally, our findings yield a near state-of-the-art RL recipe that can scale *predictably* to over 100,000 GPU-hours without any stability issues. The rest of the related work is deferred to Appendix A.1.
+
+## 7 DISCUSSION & CONCLUSION
+
+In this work, we study the scaling properties of different techniques used in RL for LLMs in pursuit of a predictable scalable recipe. With this mission, we derive a method for fitting predictive scaling fits for accuracy on the validation set that allows us to quantify the asymptotic performance and compute efficiency of an RL method. Using this methodology, our primary contribution is to conduct a careful series of ablations of several algorithmic options that go into the RL recipe. For each ablation, we choose the option with higher asymptotic performance when possible and improved
+
+{9}------------------------------------------------
+
+efficiency otherwise. Combining these choices yields the **SCALERL** recipe which scales better than all existing recipes in our experiments. A few observations are in order:
+
+- **Compute scaling extrapolation.** An important insight of our scaling methodology is that we can use smaller-scale ablations in a systematic way to predict performance at larger scales. This allows us to create our final scalable recipe.
+- **Most important decisions.** The off-policy algorithm, loss function, and model precision are the most important decisions from our ablations. Each of the other decisions does not have a large individual effect, but as we see from the leave-one-out experiments, they still do have some cumulative impact (in terms of efficiency) when all combined.
+- **Asymptotic performance vs. efficiency.** For many of our ablations, we found the better option to improve both efficiency and asymptotic performance, but this is not always the case (e.g. for FP32, Figure 4c). When doing the “forward” ablations starting from the baseline method, we opt for asymptotic performance first and foremost. Interestingly, when doing the “backward” leave-one-out ablations from the **SCALERL** recipe, we find very little impact on asymptotic performance from each decision, but each component of the algorithm seems to help efficiency. This shows that the cumulative effect of the changes is quite robust.
+- **Generalization.** While we report transfer to downstream evaluations, our primary focus is on studying predictive scaling, which is characterized through in-distribution performance curves on a held-out dataset from training prompts (Li et al., 2025b; Muennighoff et al., 2025). This still leaves the question of how well the LLM would generalize from the training distribution to held out test sets. While a full characterization of generalization is beyond the scope of our work, we do observe correlation between in-distribution validation and downstream generalization performance. However, there are some algorithmic choices that seem to help generalization more, that we want to note here including: larger batch size (Section A.15), reducing truncations (Section A.16), longer generation lengths (Figure 17b), and larger model scale (Section 5, Figure 1).
+- **Multi-task RL.** While our experiments focus mainly on the math domain, we also evaluate **SCALERL** under multi-task RL training. As shown in Figure 16, joint training on math and code yields clean, parallel power-law trends for each domain, with extended runs remaining aligned with the extrapolated curves. While our preliminary results are promising, it would be interesting to thoroughly study predictability of compute scaling for multi-task RL with different training data mixtures.
+
+**Future work** A natural next step is to derive predictive “scaling laws” for RL across pre-training compute, model size, and RL training data. Future studies can also include other axes of RL compute scaling, such as incorporating structured or dense rewards (Setlur et al., 2024) and more compute-intensive generative verifiers (Zhang et al., 2025a), to find optimal compute allocation for RL training. Finally, the framework introduced here can be applied to study the scaling behavior of other post-training regimes, including multi-turn RL, agentic interaction, and long-form reasoning.
+
+There are of course many design choices in RL, so we don’t think that our **SCALERL** recipe is the end of the story. We hope that our focus on scalable RL and methodology for predicting scalability can inspire future work to push the frontier of RL for LLMs even further. To enable future studies to fit compute-performance RL scaling curves, we release a minimal code repository at [www.devvrit.com/scalerl-curve-fitting](http://www.devvrit.com/scalerl-curve-fitting).
+
+## REFERENCES
+
+- Chenxin An, Zhihui Xie, Xiaonan Li, Lei Li, Jun Zhang, Shansan Gong, Ming Zhong, Jingjing Xu, Xipeng Qiu, Mingxuan Wang, and Lingpeng Kong. Polaris: A post-training recipe for scaling reinforcement learning on advanced reasoning models, 2025. URL .
+- AoPS. AIME problem set 1983-2025, 2025. URL [https://artofproblemsolving.com/wiki/index.php/AIME\\_Problems\\_and\\_Solutions](https://artofproblemsolving.com/wiki/index.php/AIME_Problems_and_Solutions).
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/FlcMckO6x5.txt b/papers/FlcMckO6x5.txt
new file mode 100644
index 0000000000000000000000000000000000000000..37ed7ca257838714e5d57586ff185732e2872770
--- /dev/null
+++ b/papers/FlcMckO6x5.txt
@@ -0,0 +1,240 @@
+
+
+{0}------------------------------------------------
+
+# SEPARABLE NEURAL NETWORKS: APPROXIMATION THEORY, NTK REGIME, AND PRECONDITIONED GRADIENT DESCENT
+
+Yisi Luo1, Deyu Meng1\*
+
+1Xi'an Jiaotong University
+
+yisiluol221@foxmail.com, dymeng@mail.xjtu.edu.cn
+
+## ABSTRACT
+
+Separable neural networks (SepNNs) are emerging neural architectures that significantly reduce computational costs by factorizing a multivariate function into linear combinations of univariate functions, benefiting downstream applications such as implicit neural representations (INRs) and physics-informed neural networks (PINNs). However, fundamental theoretical analysis for SepNN, including detailed representation capacity and spectral bias characterization & alleviation, remains unexplored. This work makes three key contributions to theoretically understanding and improving SepNN. First, using Weierstrass-based approximation and universal approximation theory, we prove that SepNN can approximate any multivariate function with arbitrary precision, confirming its representation completeness. Second, we derive the neural tangent kernel (NTK) regimes for SepNN, showing that the NTK of infinite-width SepNN converges to a deterministic (or random) kernel under infinite (or fixed) decomposition rank, with corresponding convergence and spectral bias characterization. Third, we propose an efficient separable preconditioned gradient descent (SepPGD) for optimizing SepNN, which alleviates the spectral bias of SepNN by provably adjusting its NTK spectrum. The SepPGD enjoys an efficient $\mathcal{O}(nD)$ complexity for $n^D$ training samples, which is much more efficient than previous neural network PGD methods. Extensive experiments for kernel ridge regression, image and surface representation using INRs, and numerical PDEs using PINNs validate the efficiency of SepNN and the effectiveness of SepPGD for alleviating spectral bias.
+
+## 1 INTRODUCTION
+
+Separable neural networks (SepNNs) are a class of neural architectures that represent a multivariate function as a linear combination of univariate functions, each parameterized by a lightweight factor neural network (Liang et al., 2022; Cho et al., 2023; Luo et al., 2024). A key advantage of SepNNs lies in their ability to significantly reduce computational costs by reducing network propagations. The computational efficiency makes SepNN particularly advantageous and efficient in applications such as implicit neural representations (INRs) (Liang et al., 2022; Luo et al., 2024), physical-informed neural networks (PINNs) (Cho et al., 2023; Yu et al., 2024), and neural radiance fields (Chen et al., 2022). Compared to other efficient architectures for neural networks, SepNNs hold unique efficiency advantages. Especially, a classical line of work employs tensor decomposition to factorize the weights of networks (Liu & Parhi, 2023), thereby reducing the number of parameters. This efficient architecture is the most closely related to SepNNs. However, SepNNs are motivated by a fundamentally different idea. Rather than decomposing the network weights, the principle of SepNNs is to separate the input vector into multiple smaller inputs and process each input using factor networks. This design uniquely improves efficiency in scenarios involving coordinate-based neural networks and function evaluations on grids by reusing the factor outputs. Such a structure is particularly advantageous in applications like INRs (Liang et al., 2022), which map coordinates to pixel values, and PINNs (Cho et al., 2023), which map coordinates to physical
+
+\*Corresponding author. Code of SepPGD is in
+
+{1}------------------------------------------------
+
+fields. Moreover, SepNNs not only facilitate efficient training, but also offer improved interpretability and robustness by leveraging low-dimensional representations and interpretable factor modeling, demonstrating strong potential for scientific applications such as separable operator learning (Yu et al., 2024), radio map construction in wireless communication (Yuan et al., 2025), geophysical full waveform inversion in Earth science (Chen et al., 2025), and transcriptomics analysis in bioinformatics (Song et al., 2023). Therefore, the structure and efficiency of SepNNs hold important value across a variety of practical machine learning applications. We make more discussions on the efficiency advantage of SepNNs in Section A.1.
+
+Formally, a $D$ -variable SepNN $f_\Theta(x_1, \dots, x_D)$ can be expressed as
+
+$$f_\Theta(x_1, \dots, x_D) = L(f_{\Theta_1}(x_1), \dots, f_{\Theta_D}(x_D)) : \mathbb{R}^D \rightarrow \mathbb{R},$$
+
+where $L$ denotes a type of linear combination that encodes the interactions between different univariate factor functions $\{f_{\Theta_d}(x_d)\}_{d=1}^D$ (the factor functions $\{f_{\Theta_d}(x_d)\}_{d=1}^D$ are parameterized by univariate neural networks, such as multi-layer perceptrons (MLPs), and $\Theta = \{\Theta_1, \dots, \Theta_D\}$ are learnable parameters. In the bivariate case $D = 2$ , the inner product is a classical (if not only) choice for $L$ (see for example (Liang et al., 2022; Wang et al., 2025)):
+
+$$f_\Theta(x_1, x_2) = f_{\Theta_1}(x_1)^\top f_{\Theta_2}(x_2) : \mathbb{R}^2 \rightarrow \mathbb{R}, \quad (1)$$
+
+where $f_{\Theta_1}(x_1), f_{\Theta_2}(x_2) : \mathbb{R} \rightarrow \mathbb{R}^R$ are factor functions mapping separated inputs to $R$ -dimensional latent vectors, and $R$ serves as a “rank” parameter that determines the representation capacity of the SepNN. In the multivariate case where $D > 2$ , multiple alternatives exist for defining the linear combination $L$ . A natural and widely-used option is the tensor canonical parafac (CP) decomposition (Kargas & Sidiropoulos, 2021), which will be the primary focus of this study:
+
+$$(CP) \quad f_\Theta(x_1, \dots, x_D) = \sum_{r=1}^R (f_{\Theta_1}(x_1))_r (f_{\Theta_2}(x_2))_r \cdots (f_{\Theta_D}(x_D))_r : \mathbb{R}^D \rightarrow \mathbb{R}, \quad (2)$$
+
+which computes the inner product between $D$ factor functions $\{f_{\Theta_d}(x_d) : \mathbb{R} \rightarrow \mathbb{R}^R\}_{d=1}^D$ , and $(f_{\Theta_d}(x_d))_r$ denotes the $r$ -th component of $f_{\Theta_d}(x_d)$ . The CP SepNN (2) degenerates into (1) when $D = 2$ . In addition, other stochastic tensor decomposition formulations can be considered to construct the SepNN. For instance, the tensor-train (TT) decomposition represents multivariate functions by a sequence of lower-dimensional tensor functions (Gorodetsky et al., 2019; Zhou et al., 2025), and the tensor Tucker decomposition introduces an additional core tensor $\mathcal{C}$ to encode weighted multilinear relationships into SepNNs (Luo et al., 2024):
+
+$$(TT) \quad f_\Theta(x_1, \dots, x_D) = \sum_{r_1=1}^{R_1} \sum_{r_2=1}^{R_2} \cdots \sum_{r_{D-1}=1}^{R_{D-1}} (f_{\Theta_1}(x_1))_{1,r_1} (f_{\Theta_2}(x_2))_{r_1,r_2} \cdots (f_{\Theta_D}(x_D))_{r_{D-1},1}, \quad (3)$$
+
+$$(Tucker) \quad f_\Theta(x_1, \dots, x_D) = \mathcal{C} \times_1 f_{\Theta_1}(x_1) \times_2 \cdots \times_D f_{\Theta_D}(x_D) : \mathbb{R}^D \rightarrow \mathbb{R}.$$
+
+Here, $\mathcal{C} \in \mathbb{R}^{R_1 \times \cdots \times R_D}$ denotes the core tensor in the Tucker decomposition model, $(R_1, \dots, R_D)$ denotes the TT or Tucker rank of the model, $\times_d : \mathbb{R}^{R_1 \times \cdots \times R_D} \times \mathbb{R}^{R_d} \rightarrow \mathbb{R}^{R_1 \times \cdots \times R_{d-1} \times R_{d+1} \times \cdots \times R_D}$ denotes the tensor product between a tensor and a vector, i.e., $\mathcal{C} \times_d f_{\Theta_d}(x_d) := \text{fold}_d(\text{unfold}_d(\mathcal{C}) f_{\Theta_d}(x_d))$ , where $f_{\Theta_d}(x_d) \in \mathbb{R}^{R_d}$ is the factor output in the Tucker model, $\text{unfold}_d : \mathbb{R}^{R_1 \times \cdots \times R_D} \rightarrow \mathbb{R}^{\prod_{d' \neq d} R_{d'} \times R_d}$ denotes the unfolding operator from a tensor to a matrix, and $\text{fold}_d : \mathbb{R}^{\prod_{d' \neq d} R_{d'} \times R_d} \rightarrow \mathbb{R}^{R_1 \times \cdots \times R_{d-1} \times R_{d+1} \times \cdots \times R_D}$ denotes the folding operator from a vector to a tensor. The $(f_{\Theta_d}(x_d))_{r_{d-1}, r_d}$ denotes the $(r_{d-1}, r_d)$ -th output component of the matrix-valued univariate function $f_{\Theta_d}(x_d) : \mathbb{R} \rightarrow \mathbb{R}^{R_{d-1} \times R_d}$ in the TT model. The aforementioned linear combinations $L$ can be viewed as specific instances within the generalized linear Einstein summation for multi-dimensional array (Ahlander, 2002). Furthermore, nonlinear combinations (e.g., nonlinear activations (Li et al., 2025b)) can also be considered to enhance the stochasticity among factors.
+
+The efficiency advantage of SepNNs comes from its separability nature. Especially, when training on a $D$ -dimensional grid tensor with each dimension containing $n$ training samples (for instance, with training inputs of the form $\{(x_1, \dots, x_D) \mid x_d = 1, 2, \dots, n, d = 1, \dots, D\}$ , which contains $n^D$ training samples), the SepNN only needs to query $nD$ times of inputs by querying the separated input $x_d$ in each dimension via factor functions and then combining the outputs through the linear combination $L$ . Hence, the computational complexity of a SepNN scales as $O(nD)$ in an epoch, compared to $O(n^D)$ for a conventional neural network (Cho et al., 2023; Luo et al., 2024). This
+
+{2}------------------------------------------------
+
+efficiency superiority makes SepNNs advantageous in downstream applications such as INRs (Liang et al., 2022; Luo et al., 2024) and PINNs (Cho et al., 2023; Vemuri et al., 2025).
+
+While SepNNs have enabled a variety of promising applications, their theoretical foundations remain relatively underdeveloped, hindering a deeper understanding of their representation capacity and optimization behaviors. In this work, we seek to address the following fundamental questions regarding the theoretical aspects of SepNNs: 1) Do SepNNs possess sufficient representation capacity to approximate any continuous multivariate function in Euclidean space? 2) How can we characterize the training dynamics of SepNNs and identify any inherent spectral bias during optimization? 3) How can the spectral bias of SepNNs be mitigated to further enhance training efficiency? To address these fundamental questions, this work makes the following contributions:
+
+- Using a novel combination of Weierstrass-based approximation and universal approximation theories, we rigorously establish an approximation theorem that SepNNs possess the capacity to approximate any continuous multivariate function with arbitrary precision, thereby confirming their representation completeness.
+- We derive the neural tangent kernel (NTK) regimes for SepNNs under different asymptotic conditions. The SepNN’s NTK converges to a deterministic kernel under infinite width and infinite rank, and converges to a random kernel under infinite width and fixed rank, providing new insights into the spectral bias characterization and training behavior of SepNNs.
+- We further propose a scalable separable preconditioned gradient descent (SepPGD) method that provably adjusts the eigenvalue distribution of NTK matrix, effectively alleviating spectral bias of SepNNs. The SepPGD achieves a significantly lower computational complexity of $\mathcal{O}(nD)$ for $n^D$ training samples, which is much more efficient than existing neural network preconditioning methods. Extensive experiments across various downstream tasks including kernel ridge regression, image & surface representation using INRs, and PINNs demonstrate the improved efficiency and effectiveness of our SepPGD approach for alleviating spectral bias of SepNNs.
+
+## 2 APPROXIMATION THEORY OF SEPNN
+
+**Approximation Theory.** For any continuous multivariate function $f(x_1, \dots, x_D)$ defined on a compact set, it is well-established that standard neural networks such as MLPs with suitable activation functions can approximate it to arbitrary accuracy (Leshno et al., 1993; Pinkus, 1999)—a result known as the universal approximation theorem. However, such a universal approximation theory remains lacking for SepNN structures. To fill this blank, our first contribution is to establish a universal approximation theorem of SepNNs (including CP, TT, and Tucker (2)-(3)) as follows.
+
+**Theorem 1** (Universal approximation theorem of multivariate SepNNs). *Let $\mathcal{X}_1 \subset \mathbb{R}, \mathcal{X}_2 \subset \mathbb{R}, \dots, \mathcal{X}_D \subset \mathbb{R}$ and $\mathcal{X} = \mathcal{X}_1 \times \mathcal{X}_2 \times \dots \times \mathcal{X}_D \subset \mathbb{R}^D$ be any compact sets, and let $f(\mathbf{x}) : \mathcal{X} \rightarrow \mathbb{R}$ be a continuous multivariate function where $\mathbf{x} := (x_1, \dots, x_D)$ . For any $\epsilon > 0$ , the following statements hold, in which all MLPs are drawn in the set $\{W_{2\sigma}(W_1 x + b) : W_2 \in \mathbb{R}^{\tilde{W} \times W}, W_1 \in \mathbb{R}^{W \times 1}, b \in \mathbb{R}^W, \tilde{W}, W \in \mathbb{N}_+\}$ with $\sigma$ a non-polynomial function.*
+
+(CP) *There exist rank $R \in \mathbb{N}_+$ and univariate MLPs $f_{\Theta_d} : \mathcal{X}_d \rightarrow \mathbb{R}^R$ ( $d = 1, \dots, D$ ) such that*
+
+$$\sup_{\mathbf{x} \in \mathcal{X}} \left| f(\mathbf{x}) - \sum_{r=1}^R (f_{\Theta_1}(x_1))_r (f_{\Theta_2}(x_2))_r \cdots (f_{\Theta_D}(x_D))_r \right| < \epsilon.$$
+
+(TT) *There exist ranks $R_1, \dots, R_{D-1} \in \mathbb{N}_+$ and univariate MLPs $f_{\Theta_d} : \mathcal{X}_d \rightarrow \mathbb{R}^{R_{d-1} R_d}$ ( $d = 1, \dots, D, R_0 = R_D = 1$ ) such that*
+
+$$\sup_{\mathbf{x} \in \mathcal{X}} \left| f(\mathbf{x}) - \sum_{r_1=1}^{R_1} \sum_{r_2=1}^{R_2} \cdots \sum_{r_{D-1}=1}^{R_{D-1}} (f_{\Theta_1}(x_1))_{1,r_1} (f_{\Theta_2}(x_2))_{r_1,r_2} \cdots (f_{\Theta_D}(x_D))_{r_{D-1},1} \right| < \epsilon.$$
+
+(Tucker) *There exist ranks $R_1, \dots, R_D \in \mathbb{N}_+$ , univariate MLPs $f_{\Theta_d} : \mathcal{X}_d \rightarrow \mathbb{R}^{R_d}$ ( $d = 1, \dots, D$ ), and a core tensor $\mathcal{C} \in \mathbb{R}^{R_1 \times \dots \times R_D}$ such that*
+
+$$\sup_{\mathbf{x} \in \mathcal{X}} \left| f(\mathbf{x}) - \mathcal{C} \times_1 f_{\Theta_1}(x_1) \times_2 \cdots \times_D f_{\Theta_D}(x_D) \right| < \epsilon,$$
+
+{3}------------------------------------------------
+
+where $\times_d : (\mathbb{R}^{R_1} \times \dots \times \mathbb{R}^{R_D} \times \mathbb{R}^{R_d}) \rightarrow \mathbb{R}^{R_1} \times \dots \times \mathbb{R}_{d-1} \times \mathbb{R}_{d+1} \times \dots \times \mathbb{R}^{R_D}$ denotes the mode- $d$ specific product between a tensor and a vector.
+
+The theorem states that any continuous multivariate function on compact sets can be well approximated by either the CP, TT, or Tucker SepNNs. The detailed proof, which is based on the combination of Stone-Weierstrass theorem (Fedorova, 2002) and universal approximation theorem (Leshno et al., 1993), is placed in Appendix Section A.5. We go through the proof sketch as follows.
+
+First, taking the CP SepNN (2) as an example, we consider the associated separable function class:
+
+$$\mathcal{A} = \left\{ g : \mathcal{X} \rightarrow \mathbb{R} : g(x_1, \dots, x_N) = \sum_{r=1}^R (g_1(x_1))_r (g_2(x_2))_r \dots (g_D(x_D))_r, R \in \mathbb{N}, (g_d(x_d))_r \in C(\mathcal{X}_d) \right\}.$$
+
+The function class $\mathcal{A}$ consists of all separable functions that can be expressed in the CP form, using the linear combination of vector-valued continuous univariate functions $g_d(x_d) : \mathcal{X}_d \rightarrow \mathbb{R}^R$ defined on compact sets $\mathcal{X}_d$ . By slightly extending the classical universal approximation theorem (Leshno et al., 1993) to vector-valued functions, we show that each $g_d(x_d)$ can be approximated by an MLP with non-polynomial activation functions. Hence, for any function in $\mathcal{A}$ , there exists a SepNN that approximates it up to arbitrary precision—a fact that can be formalized by bounding the total approximation error via the Cauchy-Schwarz inequality across the errors of the factor MLPs.
+
+It therefore remains to show that $\mathcal{A}$ is dense in $C(\mathcal{X})$ , the space of continuous functions over $\mathcal{X}$ . This would imply that any continuous multivariate function can be approximated arbitrarily well by an element of $\mathcal{A}$ , and consequently by a SepNN. To establish the density of $\mathcal{A}$ , we leverage the Stone-Weierstrass theorem (Fedorova, 2002), which asserts that a function class defined on a compact set $\mathcal{X}$ is dense in $C(\mathcal{X})$ if it: (1) contains the identity function; (2) separates points in $\mathcal{X}$ (i.e., for any $\mathbf{a} \neq \mathbf{b}$ in $\mathcal{X}$ , there exists $g \in \mathcal{A}$ such that $g(\mathbf{a}) \neq g(\mathbf{b})$ ); and (3) is closed under algebraic operations. We carefully examine that $\mathcal{A}$ meets these requirements. By combining this with standard universal approximation results, we conclude with the universal approximation capacity of SepNNs.
+
+**Related Work.** (Cho et al., 2023) provided the approximation theory for the bivariate SepNN (1). Their proof is based on the orthogonal basis functions construction for the tensor product function space. Compared to this prior art, our approximation theory extends to any multivariate function approximation with $D \geq 2$ and more types of SepNNs such as TT and Tucker, and includes the result in (Cho et al., 2023) as a special case when $D = 2$ for CP SepNN (2). Furthermore, our proof offers a simpler alternative against (Cho et al., 2023) for the $D = 2$ case of CP SepNN. Another work (Yu et al., 2024) deduced the approximation theory for a separable physical-informed operator network, which is related to the CP SepNN (2). Their proof is based on the separability of the sine activation function using trigonometric angle addition and universal approximation theory. Compared to this work, we characterize a more general class of SepNNs using any non-polynomial activation functions and deduce the approximation error more systematically for various types of SepNNs. Our proof technique is unified and broadly applicable to these structures, such as separable operator network. The SepNN is also closely related to the Kolmogorov-Arnold network (KAN) (Liu et al., 2025), which represents learnable neurons as weighted summations of independent spline bases and serves as a fundamental architecture in scientific applications (Li et al., 2025a). It is a promising direction to extend the suggested proof technique to KAN approximation and its variants.
+
+## 3 NTK REGIMES AND SPECTRAL BIAS CHARACTERIZATION
+
+**NTK Regimes.** While the SepNN is demonstrated to be a universal approximator for multivariate function representation, its training dynamics remain poorly understood even for classical learning problems with gradient descent. We borrow the theoretical tools of NTK (Jacot et al., 2018; Arora et al., 2019a) and aim to characterize the training process of SepNNs via associated kernel regression. Our main contributions are as follows. First, under the asymptotic regime of infinite network width and infinite rank, we prove that the NTK of a SepNN—which can be expressed as the summation over factor MLPs’ NTKs (Lemma 1)—converges to a deterministic kernel (Theorem 2), analogous to known results for standard MLPs (Jacot et al., 2018). This result allows us to char-
+
+{4}------------------------------------------------
+
+
+
+Figure 1 consists of four subplots. Subplots (a), (b), and (c) show the 'Initial NTK difference' on the y-axis against 'SepNN width' on the x-axis. In (a), the x-axis is 'SepNN width (fix rank = 50)' from 0 to 300. In (b), it is 'SepNN width & rank' from 0 to 300. In (c), it is 'SepNN width & rank' from 0 to 300. All three plots show a blue line for 'Mean' and a light blue shaded area for 'Variance'. The mean starts at approximately 0.2 and decreases towards 0 as width increases. Subplot (d) shows the 'NTK eigenvalue' on the y-axis against 'Eigenvalue index' on the x-axis (0 to 50). It also features a blue line for 'Mean' and a light blue shaded area for 'Variance', with the mean eigenvalue decreasing as the index increases.
+
+Figure 1: Four plots showing NTK verification. (a) Initial NTK difference vs. SepNN width (fix rank = 50). (b) Initial NTK difference vs. SepNN width & rank. (c) Training NTK difference vs. SepNN width & rank. (d) NTK matrix spectrum vs. Eigenvalue index.
+
+Figure 1: SepNN NTK verification using ten runs over multiple random seeds for square loss optimization using gradient descent. (a) The difference between NTK matrices in adjacent random seeds at initialization vs. SepNN width $W$ (under fixed rank $R = 50$ ). (b) The difference between NTK matrices in adjacent random seeds at initialization vs. SepNN width $W$ and rank $R$ (we set $W = R$ ). (c) The difference between NTK matrices at 100 training steps and at initialization over ten random seeds. (d) The NTK matrix eigenvalue distribution at initialization over ten random seeds.
+
+acterize the convergence rate of wide SepNNs and to identify spectral bias related to the eigenvalue distribution of the NTK matrix1.
+
+**Lemma 1 (NTK of CP SepNN).** *Let the multivariate CP SepNN be defined as $f_\Theta(x_1, \dots, x_D) = \frac{1}{\sqrt{R}} \sum_{r=1}^R (f_{\Theta_1}(x_1))_r \cdot (f_{\Theta_2}(x_2))_r \cdots (f_{\Theta_D}(x_D))_r : \mathbb{R}^D \rightarrow \mathbb{R}$ , where each $f_{\Theta_d} : \mathbb{R} \rightarrow \mathbb{R}^R$ is a parametric MLP with parameters $\Theta_d$ , and $\Theta = (\Theta_1, \dots, \Theta_D)$ is the collection of all parameters. Then the NTK of $f_\Theta$ , defined as $K_\Theta(\mathbf{x}, \mathbf{x}') := \langle \nabla_\Theta f_\Theta(\mathbf{x}), \nabla_\Theta f_\Theta(\mathbf{x}') \rangle$ for $\mathbf{x} = (x_1, \dots, x_D)$ and $\mathbf{x}' = (x'_1, \dots, x'_D)$ , is given by*
+
+$$K_\Theta(\mathbf{x}, \mathbf{x}') = \frac{1}{R} \sum_{d=1}^D \mathbf{a}_d(\mathbf{x})^\top \mathbf{K}_{\Theta_d}(x_d, x'_d) \mathbf{a}_d(\mathbf{x}'), \quad (4)$$
+
+where $\mathbf{K}_{\Theta_d}(x_d, x'_d) \in \mathbb{R}^{R \times R}$ is the NTK matrix of the $d$ -th factor MLP $f_{\Theta_d}$ with elements $(\mathbf{K}_{\Theta_d}(x_d, x'_d))_{r,s} = \langle \nabla_{\Theta_d}(f_{\Theta_d}(x_d))_r, \nabla_{\Theta_d}(f_{\Theta_d}(x'_d))_s \rangle$ , and $\mathbf{a}_d(\mathbf{x})$ is a vector defined by $\mathbf{a}_d(\mathbf{x}) = \left( \prod_{d' \neq d} (f_{\Theta_{d'}}(x_{d'}))_1, \prod_{d' \neq d} (f_{\Theta_{d'}}(x_{d'}))_2, \dots, \prod_{d' \neq d} (f_{\Theta_{d'}}(x_{d'}))_R \right)^\top \in \mathbb{R}^R$ .
+
+**Theorem 2 (Deterministic NTK under infinite width and infinite rank).** *Let the CP SepNN be defined as $f_\Theta(x_1, \dots, x_D) = \frac{1}{\sqrt{R}} \sum_{r=1}^R (f_{\Theta_1}(x_1))_r \cdot (f_{\Theta_2}(x_2))_r \cdots (f_{\Theta_D}(x_D))_r : \mathbb{R}^D \rightarrow \mathbb{R}$ , where each factor MLP $f_{\Theta_d} : \mathbb{R} \rightarrow \mathbb{R}^R$ has the architecture $f_{\Theta_d}(x_d) = \frac{1}{\sqrt{W}} \mathbf{W}_{2,d} \sigma(\mathbf{W}_{1,d} x_d + \mathbf{b}_d)$ , with $\mathbf{W}_{1,d} \in \mathbb{R}^{W \times 1}$ , $\mathbf{b}_d \in \mathbb{R}^W$ , $\mathbf{W}_{2,d} \in \mathbb{R}^{R \times W}$ , and $\sigma$ a differentiable activation function with derivative $\dot{\sigma}$ . Let each element of $\mathbf{W}_{1,d}$ , $\mathbf{b}_d$ , $\mathbf{W}_{2,d}$ be independently initialized by $\mathcal{N}(0, 1)$ . Then, as both the width $W \rightarrow \infty$ and the rank $R \rightarrow \infty$ , the NTK of $f_\Theta$ converges almost surely to a deterministic kernel*
+
+$$K_\Theta(\mathbf{x}, \mathbf{x}') \xrightarrow{a.s.} \sum_{d=1}^D k(x_d, x'_d) \prod_{d' \neq d} c_{d'}(x_{d'}, x'_{d'}),$$
+
+where $c_d(x_d, x'_d) = \mathbb{E}_{w,b \sim \mathcal{N}(0,1)} (\sigma(wx_d + b)\sigma(wx'_d + b))$ and $k(x_d, x'_d) = c_d(x_d, x'_d) + \mathbb{E}_{w,b \sim \mathcal{N}(0,1)} (\dot{\sigma}(wx_d + b)\dot{\sigma}(wx'_d + b)(x_d x'_d + 1))$ .
+
+**Remark 1.** The proof of Lemma 1 and Theorem 2 are placed in Appendix Sections A.6-A.7. While we consider the two-layer MLP in Theorem 2, it is straightforward to extend to multi-layer MLPs or other network structures by utilizing the corresponding NTK formulations (Arora et al., 2019b).
+
+**Remark 2.** Using similar arguments to standard NTK analysis (Jacot et al., 2018; Arora et al., 2019a), it is easy to show that the deterministic NTK of SepNN also stays fixed (in terms of a small error) during training when $W, R \rightarrow \infty$ (under square loss function and infinitely-small learning rate). This can be achieved by bounding the difference of NTK at two training time points using $O(\frac{1}{\sqrt{R}})$ and $O(\frac{1}{\sqrt{W}})$ related to the small movement of each weight. Such asymptotic analysis of NTK during training is formally analyzed in Appendix Section A.4.
+
+1For simplicity, the NTK analysis is primarily conducted for the CP SepNN (2), while we believe it can be readily extended to TT and Tucker SepNNs. For the CP SepNN, we introduce a scaling factor $\frac{1}{\sqrt{R}}$ in the SepNN to ensure the convergence of NTK, which does not affect the universal approximation Theorem 1.
+
+{5}------------------------------------------------
+
+**Spectral Bias Characterization.** Consider training pairs $\{\mathbf{x}_i, y_i\}_{i=1}^n$ and square loss minimization: $\min_{\Theta} \frac{1}{2} \sum_{i=1}^n (f_{\Theta}(\mathbf{x}_i) - y_i)^2$ with $f_{\Theta}$ a CP SepNN. Using the same argument as classical NTK analysis (Jacot et al., 2018; Arora et al., 2019a), under infinitely small learning rate, the dynamics of network predictions $\mathbf{u}(t) = (f_{\Theta(t)}(\mathbf{x}_1), \dots, f_{\Theta(t)}(\mathbf{x}_n))^T \in \mathbb{R}^n$ under standard gradient descent optimizer would follow $\frac{d\mathbf{u}(t)}{dt} = -\mathbf{K}(t)(\mathbf{u}(t) - \mathbf{y})$ , where $\Theta(t)$ and $\mathbf{K}(t) \in \mathbb{R}^{n \times n}$ respectively denote the weights and NTK matrix of the SepNN at training time $t$ over training samples $\{\mathbf{x}_i\}$ (i.e., $(\mathbf{K}(t))_{i,j} = K_{\Theta}(\mathbf{x}_i, \mathbf{x}_j)$ ), and $\mathbf{y} = (y_1, \dots, y_n)^T$ . If the NTK of the SepNN stays fixed during training (as is expected for SepNNs with sufficiently large width and rank), the dynamics become $\frac{d\mathbf{u}(t)}{dt} = -\mathbf{K}(\mathbf{u}(t) - \mathbf{y})$ where $\mathbf{K}$ denotes the fixed NTK matrix. Denote the eigenvalue decomposition of $\mathbf{K}$ as $\mathbf{K} = \sum_{i=1}^n \lambda_i \mathbf{v}_i \mathbf{v}_i^T$ , where $\lambda_1 \geq \dots \geq \lambda_n \geq 0$ are eigenvalue and $\mathbf{v}_1, \dots, \mathbf{v}_n$ are orthogonal eigenvectors. Multiplying both sides by $\mathbf{v}_i$ , we obtain $\frac{d}{dt} (\mathbf{v}_i^T \mathbf{u}(t)) = -\mathbf{v}_i^T \mathbf{K}(\mathbf{u}(t) - \mathbf{y}) = -\lambda_i (\mathbf{v}_i^T (\mathbf{u}(t) - \mathbf{y}))$ . This differential equation has an analytical solution:
+
+$$\mathbf{v}_i^T (\mathbf{u}(t) - \mathbf{y}) = \exp(-\lambda_i t) (\mathbf{v}_i^T (\mathbf{u}(0) - \mathbf{y})). \quad (5)$$
+
+Hence, the training error $(\mathbf{u}(t) - \mathbf{y})$ and its convergence rate can be characterized by the eigenvalues of the NTK matrix. Note that $\{\mathbf{v}_i\}$ form an orthogonal basis, hence $(\mathbf{u}(t) - \mathbf{y}) = \sum_{i=1}^n \mathbf{v}_i^T (\mathbf{u}(t) - \mathbf{y}) \mathbf{v}_i$ . Each term $\mathbf{v}_i^T (\mathbf{u}(t) - \mathbf{y})$ decays exponentially due to the $\exp(-\lambda_i t)$ term in (5), driving the total training error $(\mathbf{u}(t) - \mathbf{y})$ converging to zero as well. The components of labels $\mathbf{y}$ that project onto the eigenvectors $\mathbf{v}_i$ with larger eigenvalue $\lambda_i$ converge faster than those correspond to smaller eigenvalues due to the $\exp(-\lambda_i t)$ term, a property known as the spectral bias of neural networks trained with gradient descent (Geifman et al., 2024; Shi et al., 2025; 2024). This indicates that convergence is slower along directions corresponding to smaller eigenvalues, often requiring more training steps if the condition number of NTK matrix is large. The NTK-based convergence rate applies to SepNNs as well, hence SepNNs also exhibit inherent spectral bias due to the uneven eigenvalue distribution of the NTK matrix (Fig. 1(d)). In Section 4, we introduce an efficient SepPGD method to alleviate spectral bias in SepNNs by adjusting the eigenvalue distribution.
+
+**Random NTK Under Fixed Rank.** In practice, the rank $R$ of SepNNs is often chosen to be smaller compared to network width to promote low-dimensional representations and better generalization (Liang et al., 2022; Luo et al., 2024). Therefore, we further consider the fixed rank and infinite width asymptotic regime, and prove that the NTK converges to a stochastic kernel defined by Gaussian processes associated with the covariance of factor MLPs. This indicates that infinite rank $R$ is necessary to obtain a deterministic NTK by applying the large number law to vanish the covariance.
+
+**Corollary 1** (Random NTK under infinite width and fixed rank). *Let the CP SepNN be defined as $f_{\Theta}(\mathbf{x}_1, \dots, \mathbf{x}_D) = \frac{1}{\sqrt{R}} \sum_{r=1}^R (f_{\Theta_1}(\mathbf{x}_1))_r (f_{\Theta_2}(\mathbf{x}_2))_r \dots (f_{\Theta_D}(\mathbf{x}_D))_r : \mathbb{R}^D \rightarrow \mathbb{R}$ and the assumptions in Theorem 2 hold. Then, for a fixed rank $R$ , as the width of the factor MLP $W \rightarrow \infty$ , the NTK of the SepNN $f_{\Theta}$ converges in distribution to a stochastic kernel*
+
+$$K_{\Theta}(\mathbf{x}, \mathbf{x}') \xrightarrow{d} \sum_{d=1}^D k(\mathbf{x}_d, \mathbf{x}'_d) V_d(\mathbf{x}, \mathbf{x}'),$$
+
+where $V_d(\mathbf{x}, \mathbf{x}') = \frac{1}{R} \sum_{r=1}^R \prod_{d' \neq d} (f_{\Theta_{d'}}(\mathbf{x}_{d'}))_r (f_{\Theta_{d'}}(\mathbf{x}'_{d'}))_r$ , in which each factor $(f_{\Theta_{d'}}(\mathbf{x}_{d'}))_r$ is a Gaussian process with covariance $\mathbb{E}((f_{\Theta_{d'}}(\mathbf{x}_{d'}))_r (f_{\Theta_{d'}}(\mathbf{x}'_{d'}))_r) = c_d(\mathbf{x}_{d'}, \mathbf{x}'_{d'})$ .
+
+**Remark 3.** *Under the fixed rank condition, the training dynamic can not be characterized uniformly using a fixed NTK matrix as in (5) due to the randomness. However, the random NTK can at least characterize the training dynamic within a small range of training time around $t$ by using the potential stochastic differential equation and probability bound, which are promising future directions. We also empirically find that even with small rank, the proposed SepPGD method is effective in accelerating convergence and alleviating spectral bias in SepNNs (Appendix Table 3).*
+
+All NTK theoretical results are empirically validated in Fig. 1. Fig. 1(a) shows that under a fixed rank $R$ , the NTK at initialization does not converge to a fixed kernel and holds randomness even with larger network width (Corollary 1). Fig. 1(b) shows that the NTK at initialization tends to converge towards a deterministic kernel with joint increase of network width and decomposition rank (Theorem 2). Fig. 1(c) shows that the NTK tends to stay fixed during training with joint increase of network width and decomposition rank (Remark 2). Finally, Fig. 1(d) illustrates the
+
+{6}------------------------------------------------
+
+spectral bias that the eigenvalues of the SepNN’s NTK matrix decay rapidly, resulting in slower convergence within components that project onto eigenvectors of these smaller eigenvalues.
+
+Another positive property of SepNN is that its NTK matrix can be computed in parallel over multiple inputs, resulting in greater efficiency compared to computing the NTK matrices of other neural architectures (Novak et al., 2022; Mohamadi et al., 2023). In fact, the SepNN’s NTK (12) admits an elegant form that allows the NTK matrix over grid inputs to be expressed as a Kronecker product of smaller NTK matrices (detailed in Appendix Section A.3), thereby improving efficiency.
+
+## 4 EFFICIENT SEPARABLE PRECONDITIONED GRADIENT DESCENT
+
+**Prior Arts.** The NTK-based preconditioning methods are proposed in recent works (Geifman et al., 2024; Shi et al., 2025), which adjust the eigenvalue distribution of the NTK matrix, thereby modulating the convergence rate. Especially, consider a $D$ -dimensional data grid and $n^D$ training labels sorted in a vector $\mathbf{y} \in \mathbb{R}^{n^D}$ , and the vector of network predictions $f_\Theta(\mathbf{X}) \in \mathbb{R}^{n^D}$ , where $\mathbf{X} \in \mathbb{R}^{D \times n^D}$ are batched inputs. The training residual is $\mathbf{r} = f_\Theta(\mathbf{X}) - \mathbf{y}$ and the square loss is $\|\mathbf{r}\|_2^2$ . Then, a gradient descent iteration with learning rate $\eta$ is given by $\Theta \leftarrow \Theta - \eta \nabla_\Theta f_\Theta(\mathbf{X})^\top \mathbf{r}$ . According to (5), the convergence rate is related to the spectrum of NTK matrix, denoted by $\mathbf{K}$ here. (Geifman et al., 2024) proposed the following PGD with a preconditioning matrix $\mathbf{S}$ : $\Theta \leftarrow \Theta - \eta \nabla_\Theta f_\Theta(\mathbf{X})^\top \mathbf{S} \mathbf{r}$ . In this way, the convergence rate is related to the eigenvalues of $\mathbf{K} \mathbf{S}$ . Hence, the preconditioner $\mathbf{S} \in \mathbb{R}^{n^D \times n^D}$ is constructed to modulate the spectrum of $\mathbf{K} \mathbf{S}$ so as to improve convergence (Geifman et al., 2024). For $n^D$ training samples, this method has complexity $O(n^D)$ by applying $\mathbf{S}$ . Later, (Shi et al., 2025) leveraged this method to alleviate the spectral bias of INRs. They reduced the complexity of NTK matrix application by sampling a mini-batch, which enjoys $O(n^D/p)$ complexity with $p > 1$ denoting the number of mini-batches. Their preconditioning method can be expressed as $\Theta \leftarrow \Theta - \eta \nabla_\Theta f_\Theta(\mathbf{X}_i)^\top \mathbf{S}_i \mathbf{r}_i$ , where $\mathbf{X}_i, \mathbf{S}_i, \mathbf{r}_i$ are sampled mini-batches. Different from these methods, our SepPGD applies smaller preconditioners separately for factor MLPs, further reducing computational complexity.
+
+**SepPGD and Properties.** We first elaborate the training configuration of SepNNs for square loss optimization on grid points2. SepNNs exhibit efficiency benefits when applied to separable grid points (Liang et al., 2022; Cho et al., 2023). We therefore consider input points situated on a grid $\hat{\mathbf{x}}_1 \times \cdots \times \hat{\mathbf{x}}_D = \{(x_1, \dots, x_D) \mid x_d \in \hat{\mathbf{x}}_d, d = 1, \dots, D\} \subset \mathbb{R}^D$ , where each $\hat{\mathbf{x}}_d$ is a discrete set (or say vector) of points in $\mathbb{R}$ . For simplicity, we assume that each $\hat{\mathbf{x}}_d$ has cardinality $n$ , meaning each dimension contains $n$ training samples, resulting in a total of $n^D$ training samples. Consider a SepNN $f_\Theta(\mathbf{x}) = \frac{1}{\sqrt{R}} \sum_{r=1}^R (f_{\Theta_1}(x_1))_r \cdots (f_{\Theta_D}(x_D))_r : \mathbb{R}^D \rightarrow \mathbb{R}$ . Each factor MLP $f_{\Theta_d} : \mathbb{R} \rightarrow \mathbb{R}^R$ is applied in parallel to the input vector $\hat{\mathbf{x}}_d \in \mathbb{R}^n$ , yielding a factor matrix $f_{\Theta_d}(\hat{\mathbf{x}}_d) \in \mathbb{R}^{R \times n}$ . The corresponding optimization model is formulated as
+
+$$\min_{\Theta} \frac{1}{2} \sum_{i=1}^{n^D} (f_\Theta(\mathbf{x}_i) - y_i)^2, \quad \mathbf{x}_i \in \hat{\mathbf{x}}_1 \times \cdots \times \hat{\mathbf{x}}_D. \quad (6)$$
+
+Owing to the grid structure of the training data, the labels $\{y_i\}_{i=1}^{n^D}$ can be naturally reshaped into a $D$ -th order tensor $\mathcal{Y} \in \mathbb{R}^{n \times \cdots \times n}$ . Let $\mathcal{R} := (\mathcal{Z}_\Theta - \mathcal{Y}) \in \mathbb{R}^{n \times \cdots \times n}$ denote the residual tensor during training, where $(\mathcal{Z}_\Theta)_{i_1, \dots, i_D} = f_\Theta((\hat{\mathbf{x}}_1)_{i_1}, \dots, (\hat{\mathbf{x}}_D)_{i_D})$ is the $(i_1, \dots, i_D)$ -th SepNN output.
+
+The motivation behind SepPGD is to perform PGD for each factor MLP separately. We first compute $D$ factor preconditioning matrices $\{\mathbf{S}_d\}_{d=1}^D$ for the $D$ factor MLPs $\{f_{\Theta_d}\}_{d=1}^D$ . This involves calculating a pseudo NTK matrix $\mathbf{K}_{\Theta_d} \in \mathbb{R}^{n \times n}$ for each $f_{\Theta_d}$ on the corresponding input data $\hat{\mathbf{x}}_d \in \mathbb{R}^n$ using sum-of-logits (Mohamadi et al., 2023), followed by eigenvalue modulation as described in (Geifman et al., 2024; Shi et al., 2025). Specifically, we calculate $\mathbf{S}_d = \mathbf{I} - \sum_{i=1}^k (1 - \frac{g(\lambda_i)}{\lambda_i}) \mathbf{v}_i \mathbf{v}_i^\top$ , where $\{\lambda_i, \mathbf{v}_i\}$ are eigenvalues and eigenvectors of $\mathbf{K}_{\Theta_d}$ . We set the modulation function $g(\lambda_i) = \lambda_k$ for $i \leq k$ and $g(\lambda_i) = \lambda_i$ for $i > k$ by following (Shi et al., 2025), which makes the eigenvalues
+
+2Using grid inputs is a common training configuration for SepNNs, such as coordinate grids of images in INRs (Liang et al., 2022) and grid collocation points in PINNs (Cho et al., 2023), which facilitate efficient parallel training. For non-grid inputs, SepNNs remain applicable, though the computational complexity for NTK evaluation and SepPGD becomes equivalent to standard networks (Liang et al., 2022; Cho et al., 2023).
+
+{7}------------------------------------------------
+
+of $\mathbf{S}_d$ more evenly distributed for the first $k$ eigenvalues. Furthermore, denote $\oplus$ the concatenation of vectors. We are now ready to present the proposed SepPGD algorithm.
+
+**Definition 1** (Separable PGD). *Consider the optimization problem (6) and the SepNN $f_{\Theta}(\mathbf{x}) = \frac{1}{\sqrt{R}} \sum_{r=1}^R (f_{\Theta_1}(x_1))_r \cdots (f_{\Theta_D}(x_D))_r : \mathbb{R}^D \rightarrow \mathbb{R}$ . Given $D$ symmetric factor preconditioning matrices $\{\mathbf{S}_d \in \mathbb{R}^{n \times n}\}_{d=1}^D$ for factor MLPs $\{f_{\Theta_d}\}_{d=1}^D$ , the SepPGD iteration is given by*
+
+$$\Theta \leftarrow \Theta - \eta \underbrace{\bigoplus_{d=1}^D (\nabla_{\Theta_d} \langle f_{\Theta_d}(\hat{\mathbf{x}}_d), \mathbf{M}_d \rangle)}_{\text{gradient of factor MLP}}, \quad (7)$$
+
+where $\mathbf{M}_d$ is the mode- $d$ specific preconditioner defined by
+
+$$\mathbf{M}_d = \underbrace{\left( \bigoplus_{r=1}^R \bigotimes_{d' \neq d} f_{\Theta_{d'}}(\hat{\mathbf{x}}_{d'})_r \right)}_{R \times n^{D-1}} \underbrace{\left( \text{unfold}_d \left( \sum_{d=1}^D (\mathcal{R} \times_d \mathbf{S}_d) \right) \right)}_{n^{D-1} \times n} \in \mathbb{R}^{R \times n}, \quad d = 1, \dots, D, \quad (8)$$
+
+where the subscript $f_{\Theta_{d'}}(\hat{\mathbf{x}}_{d'})_r$ refers to the $r$ -th row of the factor matrix $f_{\Theta_{d'}}(\hat{\mathbf{x}}_{d'}) \in \mathbb{R}^{R \times n}$ . The $\bigotimes_{d' \neq d}$ refers to the outer product that calculates between $D-1$ vectors $\{f_{\Theta_{d'}}(\hat{\mathbf{x}}_{d'})_r : \in \mathbb{R}^{n^{D-1}}\}$ and returns a single long vector of size $1 \times n^{D-1}$ , and $\bigoplus_{r=1}^R$ denotes the concatenation between $R$ vectors and returns an $R \times n^{D-1}$ matrix. The $\text{unfold}_d : \mathbb{R}^{n_1 \times \dots \times n_D} \rightarrow \mathbb{R}^{\prod_{d' \neq d} n_{d'} \times n_d}$ denotes the unfolding operator from a tensor to a matrix, and $\times_d$ denotes the mode- $d$ tensor-matrix product, a convention in tensor decomposition literature (Kolda & Bader, 2009; Luo et al., 2024).
+
+**Remark 4** (Computational complexity). *The computational complexity comparison of different preconditioning methods is given in Table 1. In terms of applying the preconditioner, SepPGD scales as $O(nD)$ by multiplying $D$ $n$ -by- $n$ preconditioning matrices $\{\mathbf{M}_d\}$ , while standard NTK-based method (Geifman et al., 2024) scales as $O(n^D)$ by multiplying an $n^D$ -by- $n^D$ preconditioning matrix $\mathbf{S}$ . Moreover, the preconditioner construction stage in SepPGD is also more efficient. Specifically, SepPGD constructs the preconditioner by calculating the NTK matrix and performing eigenvalue decomposition for $D$ factor NTK matrices $\{\mathbf{K}_{\Theta_d}\}$ , each of size $n \times n$ . In contrast, classical NTK-based PGD (Geifman et al., 2024) requires the same operations on a single large NTK matrix of size $n^D \times n^D$ . Therefore, the preconditioner construction complexity for SepPGD scales as $O(D(n^3 + n^2 P))$ (note that NTK matrix calculation consumes $O(n^2 P)$ and eigenvalue decomposition consumes $O(n^3)$ ), where $P$ is the number of network parameters, while the classical NTK-based PGD method scales as $O(n^{3D} + n^{2D} P)$ . We therefore see that SepPGD is more efficient in both preconditioner construction and application.*
+
+Table 1: Computational complexity comparison (in terms of applying the preconditioner) of several preconditioning methods for $n^D$ training samples using an over-parameterized SepNN $f_{\Theta} : \mathbb{R}^D \rightarrow \mathbb{R}$ with $P$ learnable parameters ( $n^D < P$ ). Here, $\mathbf{r}$ denotes training residual, $\mathbf{H} \in \mathbb{R}^{P \times P}$ denotes the Hessian matrix, $\mathbf{S} \in \mathbb{R}^{n^D \times n^D}$ denotes the NTK-based preconditioning matrix, $\mathbf{S}_i \in \mathbb{R}^{\frac{n^D}{r} \times \frac{n^D}{r}}$ denotes the mini-batch version of the NTK preconditioning matrix, and $\mathbf{M}_d \in \mathbb{R}^{R \times n}$ denotes the proposed mode- $d$ specific preconditioner defined in (8).
+
+| Preconditioning method | Gradient formulation | Complexity |
+|-|-|-|
+| Hessian-based methods | $\mathbf{H}^{-1} \nabla_{\Theta} f_{\Theta}(\mathbf{X})^{\top} \mathbf{r}$ | $O(P)$ |
+| Modified NTK spectrum (Geifman et al., 2024) | $\nabla_{\Theta} f_{\Theta}(\mathbf{X})^{\top} \mathbf{S} \mathbf{r}$ | $O(n^D) (n^D < P)$ |
+| Inductive gradient adjustment (Shi et al., 2025) | $\nabla_{\Theta} f_{\Theta}(\mathbf{X}_i)^{\top} \mathbf{S}_i \mathbf{r}_i$ (mini-batch) | $O(n^D/p) (p > 1)$ |
+| Separable PGD (Ours) | $\bigoplus_{d=1}^D \nabla_{\Theta_d} \langle f_{\Theta_d}(\hat{\mathbf{x}}_d), \mathbf{M}_d \rangle$ | $O(nD)$ |
+
+While the formulations in (7)-(8) seem complicated, we can more easily interpret the motivation and preconditioner construction $\mathbf{M}_d$ in the two-dimensional case $D=2$ by connecting it with classical methods (Geifman et al., 2024; Shi et al., 2025).
+
+3Note that constructing the preconditioner in (8) also involves a matrix product with complexity $O(n^{D-1})$ . However, the primary computational cost of NTK-based PGD lies in the computation of the NTK matrix, which requires high-dimensional derivative calculations, and the eigenvalue decomposition of the NTK matrix, which involves inner numerical iterations (Geifman et al., 2024; Shi et al., 2025). In comparison, the matrix product in (8) is orders of magnitude less expensive in practice.
+
+{8}------------------------------------------------
+
+
+
+Figure 2: Convergence curves for KRR and image representation using INRs. (a) Kernel ridge regression: Two plots showing MSE vs. Execution time (s) for KRR convergence. The left plot is for 'noiseless' data and the right for 'noise case'. (b) Image representation: Two plots showing MSE vs. Execution time (s) for image representation. The left plot is for 'noiseless' data and the right for 'noise case'. Both plots compare MLP, MLP (MSK), SepNN, SepNN (MSK), and SepNN (SepPGD). SepNN (SepPGD) consistently shows the lowest MSE and fastest convergence across all scenarios.
+
+Figure 2: Convergence curves for KRR and image representation using INRs.
+
+**Lemma 2.** *Let the SepNN be $f_\Theta(\mathbf{x}) = f_{\Theta_1}(x_1)^\top f_{\Theta_2}(x_2) : \mathbb{R}^2 \rightarrow \mathbb{R}$ and the suppositions in Definition 1 hold. Then the SepPGD iteration in (7) is equivalent to the classical NTK-based PGD as $\Theta \leftarrow \Theta - \eta \nabla_{\Theta} f_\Theta(\mathbf{X})^\top \tilde{\mathbf{S}} \mathbf{r}$ , where $\mathbf{X} \in \mathbb{R}^{2 \times n^2}$ are batched inputs, $\mathbf{r} = \text{vec}(\mathcal{R}^\top)$ is the vectorized training residual, and $\tilde{\mathbf{S}} = (\mathbf{S}_1 \otimes \mathbf{I}_n + \mathbf{I}_n \otimes \mathbf{S}_2) \in \mathbb{R}^{n^2 \times n^2}$ is constructed by Kronecker product. Specifically, this implies $[\nabla_{\Theta_1} \langle f_{\Theta_1}(\hat{\mathbf{x}}_1), \mathbf{M}_1 \rangle, \nabla_{\Theta_2} \langle f_{\Theta_2}(\hat{\mathbf{x}}_2), \mathbf{M}_2 \rangle] = \nabla_{\Theta} f_\Theta(\mathbf{X})^\top \tilde{\mathbf{S}} \mathbf{r}$ .*
+
+The proof is provided in Appendix Section A.9. Lemma 2 establishes the connection between the proposed SepPGD method (7) and the classical NTK-based PGD (Geifman et al., 2024; Shi et al., 2025) under an appropriate choice of the large preconditioner $\tilde{\mathbf{S}}$ . Although the two PGD methods are equivalent in this setting, SepPGD is computationally more efficient. This efficiency comes from the parallel computation of factor gradients. Specifically, the total gradient $\nabla_{\Theta} f_\Theta(\mathbf{X})^\top \tilde{\mathbf{S}} \mathbf{r}$ can be written in the form of outer products like $(\mathbf{C}^\top \otimes \mathbf{A}) \text{vec}(\mathbf{B})$ (see Section A.9), whereas the factor gradients $\{\nabla_{\Theta_d} \langle f_{\Theta_d}(\hat{\mathbf{x}}_d), \mathbf{M}_d \rangle\}_{d=1}^D$ in SepPGD are computed via matrix products like $\text{vec}(\mathbf{ABC})$ in the $O(n)$ dimensional space. This is more efficient than evaluating the matrix product $(\mathbf{C}^\top \otimes \mathbf{A}) \text{vec}(\mathbf{B})$ in the $O(n^2)$ dimension. The key property we are using here is the equivalence between the Kronecker product expression and the vectorized matrix product, i.e., $(\mathbf{C}^\top \otimes \mathbf{A}) \text{vec}(\mathbf{B}) = \text{vec}(\mathbf{ABC})$ . This allows us to decompose the large preconditioner $\tilde{\mathbf{S}} \in \mathbb{R}^{n^2 \times n^2}$ into smaller preconditioners $\mathbf{M}_d \in \mathbb{R}^{n \times n}$ and perform the SepPGD in an efficient manner. Lemma 2 can also be extended to non-grid inputs. Especially, if we construct the preconditioner as $\tilde{\mathbf{S}} = \sum_d \mathbf{S}_d$ , then the SepPGD gradient $\nabla_{\Theta_d} \langle f_{\Theta_d}((\mathbf{X})_{d,:}), \mathbf{M}_d \rangle$ for some non-grid inputs $\mathbf{X} \in \mathbb{R}^{D \times n}$ ( $n$ non-grid points in $D$ -dimensional space) is equivalent to the classical NTK-based PGD update $\nabla_{\Theta_d} f_\Theta(\mathbf{X})^\top \tilde{\mathbf{S}} \mathbf{r}$ under element-wise evaluation without Kronecker product structure. Here, $\mathbf{M}_d = \text{einsum}(\odot_{d' \neq d} f_{\Theta_{d'}}((\mathbf{X})_{d',:}), \sum_d \mathbf{S}_d \mathbf{r}; (R, n) \times (n) \rightarrow (R, n))$ is the $d$ -th preconditioner constructed by Einstein product, where $\odot$ denotes element-wise product. We use this formulation to test SepPGD for non-grid inputs; see Section A.2.
+
+Given the equivalence between SepPGD and NTK-based PGD (Geifman et al., 2024), it therefore remains to show that the constructed preconditioner $\tilde{\mathbf{S}} = (\mathbf{S}_1 \otimes \mathbf{I}_n + \mathbf{I}_n \otimes \mathbf{S}_2)$ is indeed effective in adjusting the eigenvalue distribution of $\mathbf{K}\tilde{\mathbf{S}}$ to accelerate convergence. This can possibly be verified, because the eigenvalue of a Kronecker product matrix $\mathbf{S}_1 \otimes \mathbf{I}_n$ is the product of eigenvalues of $\mathbf{S}_1$ and $\mathbf{I}_n$ . Therefore, $\tilde{\mathbf{S}}$ would have better spectrum (i.e., smaller condition number) than $\tilde{\mathbf{K}} = (\mathbf{K}_{\Theta_1} \otimes \mathbf{I}_n + \mathbf{I}_n \otimes \mathbf{K}_{\Theta_2})$ since $\mathbf{S}_d$ has better spectrum than $\mathbf{K}_{\Theta_d}$ . Suppose that $\tilde{\mathbf{K}}$ is close to the true NTK matrix $\mathbf{K}$ which can be verified using the NTK matrix formulation in Lemma 3). We can ultimately show that $\mathbf{K}\tilde{\mathbf{S}}$ has better spectrum than $\mathbf{K}$ . Therefore, the proposed SepPGD could provably and efficiently adjust the spectrum of the SepNN’s NTK matrix during training, effectively alleviating spectral bias. In practice, SepPGD allows the preconditioner $\{\mathbf{M}_d\}$ to be efficiently updated every ten iterations, which is computationally expensive in previous methods. It is believed that the result in Lemma 2 (and the analysis following) can be readily extended to multivariate cases $D > 2$ . Also, based on the convergence result of NTK-based preconditioning algorithm (Geifman et al., 2024), we can also deduce the convergence and solution consistency (w.r.t. standard gradient descent) of our SepPGD algorithm by using the equivalence between SepPGD and the corresponding kernel ridge regression with representer theorem. This is left for future research.
+
+## 5 NUMERICAL EXPERIMENTS
+
+The numerical results are presented to verify the effectiveness of SepPGD for improving convergence of SepNNs. Examples include kernel ridge regression (KRR), image and surface representation using INRs, and PINNs. Detailed experimental settings are placed in Appendix Section A.12.
+
+{9}------------------------------------------------
+
+
+
+Figure 3: Visual results for image and 3D surface representation using SepPGD. The figure is divided into two main sections. The left section shows four images of a bird: 'Original PSNR Inf', 'MLP PSNR 26.64', 'SepNN PSNR 26.48', and 'SepNN (SepPGD) PSNR 33.30'. The right section shows four 3D surface representations: 'Original IoU 1.0', 'MLP IoU 0.985', 'SepNN IoU 0.983', and 'SepNN (SepPGD) IoU 0.992'. Each image/surface has a green box highlighting a specific region of interest.
+
+Figure 3: Visual results for image and 3D surface representation using SepPGD.
+
+
+
+Figure 4: Convergence curves and results for the 3D diffusion equation using PINNs. The figure includes a line plot on the left showing 'log MSE' vs 'Execution time (s)' for PINN, SepPINN, and SepPINN (SepPGD). The right side shows five 3D surface plots: (b) Ground-truth MSE 0, (c) PINN MSE 0.092, (d) Separable PINN MSE 0.042, and (e) Separable PINN (SepPGD) MSE 0.037.
+
+Figure 4: Convergence curves and results for the 3D diffusion equation using PINNs.
+
+**KRR.** Following (Geifman et al., 2024), we perform KRR by using the gradients of neural network w.r.t. parameters as the feature function of kernel (see Appendix Section A.12 for detailed formulation and settings). We test both MLP and CP SepNN, and compare SepPGD with the classical NTK-based PGD, the modified spectrum kernel (MSK) (Geifman et al., 2024; Shi et al., 2025). Following (Geifman et al., 2024), we consider both noisy (standard deviation 0.01) and noiseless cases. The convergence behavior, measured by testing MSE during training, is shown in Fig. 2(a). Because the efficiency advantage of SepNN and SepPGD comes from the lower complexity in an iteration, we plot the convergence curve w.r.t. execution time rather than iteration number. In noiseless case, SepPGD achieves the fastest convergence. In the presence of noise, SepPGD remains robust, while MSK has slower convergence. SepPGD improves SepNN to a large margin as shown in Fig. 2.
+
+**Image Representation and Recovery.** We leverage INR for image representation and recovery (inpainting) by following the settings in (Sitzmann et al., 2020; Shi et al., 2025). Convergence curves and representation visual examples are shown in Fig. 2(b) and Fig. 3’s left. SepPGD effectively improves the convergence of SepNN by alleviating spectral bias and better capturing image fine details. Moreover, SepPGD accelerates the convergence without affecting the model’s generalization (in most cases improving generalization); see image inpainting results in Appendix Fig. 10.
+
+**Surface Representation.** We perform surface representation by representing the volumetric occupancy grids of a 3D surface using INRs (Shi et al., 2025). The results (under the same iteration number) with intersection over union (IoU) are shown in Fig. 3’s right. SepPGD effectively improves the ability of SepNN to capture surface textures and details by alleviating spectral bias during training.
+
+**PINNs.** We use the separable PINN (Cho et al., 2023) (CP SepNN) and perform the tests on 3D diffusion, Klein-Gordon, and Helmholtz equations using grid samples. Convergence curves using testing MSE vs. time and visual examples (under the same iteration) are shown in Fig. 4. More results are shown in Appendix Figs. 13-14. The separable PINN (Cho et al., 2023) is more efficient than classical PINN, and SepPGD further enhances the convergence speed of separable PINN.
+
+## 6 CONCLUSIONS AND DISCUSSIONS
+
+We established the universal approximation theory for SepNNs, deduced their NTK regimes, and proposed an efficient separable PGD to alleviate spectral bias of SepNNs. The algorithm was shown to be effective in various applications such as image & surface representation and PINNs. We further elaborate on the potential impact of our proposed theory and method. First, SepNNs have been attracting growing attention in various applications due to their efficient structure, such as INRs and PINNs. Numerical experiments demonstrate that SepPGD can effectively speed up convergence in applications involving INRs and PINNs (e.g., in image and surface representation and numerical PDEs). Therefore, we believe that our theory and the corresponding algorithm have the potential to benefit these fields and address related challenges. Moreover, SepNNs are also increasingly being adopted across diverse scientific domains by leveraging their efficient structure and interpretability (Cho et al., 2023; Song et al., 2023; Chen et al., 2025). Therefore, understanding the theoretical approximation ability, training behavior (e.g., NTK regime), and addressing the potential optimization challenge of SepNNs are believed to be valuable and important for these practical applications.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/FtL9eEmU6v.txt b/papers/FtL9eEmU6v.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bb030a72f4d7f918d59f336d383cfe067e4c23d3
--- /dev/null
+++ b/papers/FtL9eEmU6v.txt
@@ -0,0 +1,242 @@
+
+
+{0}------------------------------------------------
+
+# EDITBENCH: EVALUATING LLM ABILITIES TO PERFORM REAL-WORLD INSTRUCTED CODE EDITS
+
+Wayne Chi1,\* Valerie Chen1,\* Ryan Shar1,\*
+ Aditya Mittal1 Jenny Liang1 Wei-Lin Chiang2 Anastasios Nikolas Angelopoulos2
+ Ion Stoica2 Graham Neubig1 Ameet Talwalkar1,† Chris Donahue1,†
+
+1Carnegie Mellon University 2UC Berkeley, Arena
+
+## ABSTRACT
+
+Instructed code editing, where LLMs directly modify a developer’s existing code based on a user instruction, is becoming a widely used interaction mode in AI coding assistants. However, few benchmarks directly evaluate this capability and current datasets often rely on artificial sources. We introduce EditBench, a benchmark for evaluating LLM code editing capabilities grounded in real-world usage, i.e., user instructions and code contexts collected in the wild. EditBench comprises of 540 problems, multiple natural and programming languages, and a diverse set of real-world use cases, ranging from resolving errors to adding features. EditBench introduces context-dependent problems that require the model to understand code context, highlighted code, and cursor position in addition to the user instruction. We evaluate 40 diverse LLMs and observe that EditBench is a challenging set of problems where only 1 model scores over 60%. We find that model performance varies across different categories of user instructions. Further, we find that different levels of contextual information greatly affect task success rate, with performance varying up to 8%, indicating the importance of evaluating with realistic context.
+
+
+
+GitHub and Leaderboard icons
+
+**Github Repo**
+**Leaderboard**
+
+## 1 INTRODUCTION
+
+Software developers increasingly write code with AI assistants such as Github Copilot (Github, 2022), Cursor (Cursor, 2023), and Continue (Continue Dev, 2025) using a variety of modes of interaction. *Instructed code editing*, where developers use natural language to request the assistant to edit a highlighted section of code, has emerged as a prominent interaction mode alongside autocomplete suggestions and chat (Nam et al., 2025). Due to the flexibility provided through natural language instructions, use cases for edits are diverse and range from code improvements given detailed user instructions to bug fixes provided only an error trace (Cassano et al., 2023b). Because of this, instructed code edits pose a challenging set of problems that existing LLMs must tackle to support developers.
+
+Despite the emergence of this new interaction modality, we lack benchmarks to capture real-world edit behavior. Code generation benchmarks typically evaluate LLM capabilities on generating code from scratch (Chen et al., 2021; Austin et al., 2021; Jain et al., 2024; White et al., 2024). While there are a few edit-related datasets (e.g., CanItEdit (Cassano et al., 2023b), Aider polyglot (Gauthier, 2025)), the sources of data are
+
+\* Equal contribution.
+
+† Equal senior author.
+
+{1}------------------------------------------------
+
+
+
+The diagram illustrates the EditBench interface, which consists of four main components:
+
+- Instruction:** A dark panel on the left containing a user avatar and the instruction "fix the flask app and show the current...".
+- Context:** A panel below the instruction showing a file icon, "Code", "Highlighted Code", and "Cursor Position".
+- Language Model:** A central panel displaying a code snippet from `app.py` with a cursor position at line 17, column 3. The code includes a `get_users` function and a `health` route.
+- Test Cases:** A panel on the right showing a table of test results:
+
+| Poss | Test |
+|-|-|
+| ✓ | queries_all_users |
+| ✗ | gets_current_date |
+| ✓ | users_route_exists |
+| ✓ | health_route_exists |
+| ✓ | no_dict_error |
+| ✗ | Task Success |
+
+Figure 1: EditBench interface showing Instruction, Context, Language Model, and Test Cases components.
+
+Figure 1: **EditBench** tests LLMs’ real-world editing capabilities. We propose **EditBench**, an evaluation on real user instructions and code snippets collected in-the-wild. It is the first benchmark for instructed code edits that requires models to ingest the user instruction, current code, highlighted code, and cursor position to solve problems.
+
+not reflective of most real-world software development, relying on either simple, annotator-written problems or Leetcode and educational style problems that do not capture diverse, real-world software development challenges. Recent work has begun collecting human preferences to interactively evaluate models—Chatbot Arena (Chiang et al., 2024) evaluates LLM capabilities for chat and contains a coding subset, while Copilot Arena (Chi et al., 2025) evaluates LLM capabilities to perform code completions—highlighting a growing awareness of the need for grounding evaluations with in-the-wild data. However, “arena-style” evaluations are costly, requiring a significant number of human votes to rank a new model.
+
+We introduce **EditBench**, a benchmark for evaluating LLM code editing capabilities built on real-world edit contexts and instructions (Figure 1). We source our problems by developing a VS Code extension that mimics existing instructed code editing tools from GitHub Copilot and Cursor. As developers use the extension, we gather a live, in-the-wild dataset containing user-written instructions, associated code context, and user votes between pairs of model responses. We recruited nearly 500 users to provide these data points. **EditBench** differentiates from previous edit-related benchmarks in several ways:
+
+**Diverse user instructions and context.** Since **EditBench** is constructed from data collected from programmers performing day-to-day coding tasks, users specify user goals with diverse content and formats. For example, a bug fix can be requested as “fix this” accompanied with highlighted code, a direct dump of the error trace, or a natural language description of the erroneous behavior. **EditBench** tests for these varied user instructions instead of the more templated approaches (e.g., fix a specific function in a well-defined way) in previous benchmarks.
+
+**Context dependent problems.** Real instructed code edits often feature ambiguous user instructions that require contextual clues to parse the underlying user intent. In addition to the user instruction, in **EditBench** we also capture the code file to edit, the highlighted region of code, and the user’s current cursor position. Code context length can be significant (e.g., $\geq 10k$ characters), requiring the model to properly use the comments, highlighted code, and other contextual clues to determine the correct solution. We are the first benchmark to include this combination of features for instructed code edits.
+
+**Multiple natural and programming languages.** While most previous coding benchmarks consist of only English problems, **EditBench** consists of 5 natural languages (English, Spanish, Russian, Chinese, Portuguese) and 2 programming languages (Python and Javascript). Since our code is gathered in-the-wild, any natural language variations occur in both the user instruction and code itself.
+
+We evaluate 40 open-weight and closed models on **EditBench** and find that the best model, `claude-sonnet-4` (Anthropic, 2023), achieves a `pass@1` of 66.67%. Closed-source models tend
+
+{2}------------------------------------------------
+
+to outperform open-weight models, with deepseek-chat-v3.1 and kimi-k2-0905 being the only two open-weight models in the top 10. We observe that both the inclusion of additional context (e.g., highlighted code and cursor position) and the type of edit category (e.g., optimization versus bug fixing tasks) drastically affects performance. Finally, we find that *EditBench* is only weakly correlated with existing edit benchmarks like Aider Polylgot (Gauthier, 2025), suggesting that our real-world data captures a unique set of difficult edit tasks. Our results show that *EditBench* is challenging even for state-of-the-art models and reveals new insights into model capabilities, emphasizing the importance of benchmarking LLMs on realistic data.
+
+## 2 RELATED WORK
+
+**Coding Benchmarks.** Static benchmarks, e.g., HumanEval (Chen et al., 2021) and MBPP (Austin et al., 2021), largely focusing on interview-style programming problems have been the most commonly used to evaluate coding capabilities (Lu et al., 2021; Nijkamp et al., 2023; Zhu et al., 2022; Wang et al., 2023; Liu et al., 2023; Jimenez et al., 2023b; Khan et al., 2023; Yan et al., 2023; Cassano et al., 2023a; Muennighoff et al., 2023; Dinh et al., 2023; Yang et al., 2024b), measured using *pass@k*. Additionally, some recent work focuses on creating live benchmarks that reduce contamination risks (Jain et al., 2024; White et al., 2024). Increasingly, people are interested in code editing with LLMs, focusing on bug fixing (Zhang et al., 2023b; Moon et al., 2023; Shinn et al., 2023; Chen et al., 2023; Olausson et al., 2023; Jin et al., 2023; Joshi et al., 2023; Wei et al., 2023; Li et al., 2022), a specific subset of code editing; fill-in-the-middle code completion (Bavarian et al., 2022; Fried et al., 2023; Yee & Guha, 2023; Roziere et al., 2023; Guo et al., 2024a; Zhang et al., 2023a), an inference strategy that requires specific insert locations; and intrinsic code editing (Li et al., 2023; Gupta et al., 2023), which involves editing code without a specified instruction, exerting the model’s ability to intrinsically ascertain the desired code changes. CodeEditorBench (Guo et al., 2024b) evaluates code editing using competitive programming problems and CanItEdit (Cassano et al., 2023b) expands on this to create varied prompts and diverse topics.
+
+**Grounding Evaluation in Real-World Data.** A limitation of the aforementioned benchmarks is that the source of their tasks is not from real-world user data. Copilot Arena (Chi et al., 2025) evaluates code completions with real-world data and highlights how the distribution of data from benchmarks differs from real-world data in terms of the type of task, context length, and more. However, these in-the-wild evaluations require immense scale to build a leaderboard and evaluate new models (e.g., Chatbot Arena (Chiang et al., 2024) has millions of votes). The primary benchmark that creates problems from real-world sources is SWE-Bench (Jimenez et al., 2023a) and related extensions including SWE-Bench Multimodal (Yang et al., 2024a) and Multi-SWE-Bench (Zan et al., 2025). However, these benchmarks focus on fixing issues that require agentic workflows (e.g., editing multiple files) and are limited to a handful of repositories or problems written in one natural language. Our work, *EditBench*, complements this growing set of benchmarks by providing a benchmark for instructed code edits that is *realistic* (i.e., collected from real users in real workflows) and *diverse* (i.e., contains many different natural languages and task categories).
+
+## 3 BENCHMARK CONSTRUCTION
+
+### 3.1 DATA COLLECTION.
+
+We develop an open-source VSCode extension with instructed code editing as a core feature to support the collection of code edit data. Gathering data via a real coding extension (Izadi et al., 2024; Chi et al., 2025) allows for more realistic instructions and tasks when compared to coding competition platforms. For each code edit, the user highlights a code-snippet and writes a short task description (Figure 2). Participants are not compensated for using the extension, as in a traditional user study, but instead receive free access to
+
+{3}------------------------------------------------
+
+
+
+Figure 2: Two side-by-side screenshots of a VS Code extension interface. The left screenshot, titled 'Highlight Code and Write Instruction', shows a Python code snippet with a specific section highlighted. A text input box at the bottom contains 'Optimize This' and a prompt 'Enter your prompt for code generation (Press 'Enter' to confirm)'. The right screenshot, titled 'User Reviews Code Edit', shows the same code snippet with a different edit applied, where a list comprehension is used instead of a loop.
+
+Figure 2: We develop an open-source VSCode extension to collect real-world edits.
+
+state-of-the-art models. Given the sensitive nature of programming, we established clear privacy controls to give users the ability to restrict our access to their data. Depending on privacy settings, we collect the user’s instruction, code context (including the highlighted code segment, the cursor location, prefix, and suffix) at the time of the request, and model responses. Additionally, we log whether the user accepted the edit. Our data collection process was reviewed and approved by our institution’s IRB. Additional details about our data collection policy are provided in Appendix A.
+
+### 3.2 PROBLEM CURATION.
+
+Across 458 users, we collected 2672 responses (i.e., the user accepted an edit). However, not all of these responses were interesting, challenging, or even feasible to turn into testable problems. We narrow our problem set in the following ways. First, we focus on questions written in Python and Javascript, which combined comprise of the majority of our responses at just over 1700 problems. Second, we exclude problems that are too similar to one another—sometimes a user might try similar prompts on the same code context to see how different models edit. Lastly, we remove any trivial (e.g., add a single parameter), stylistic (e.g., add a comment), or ambiguous problems. We provide concrete examples of removed problems in Appendix C. This filtering process left us with around 470 problems which we found both interesting and challenging. Given that not all problems are feasible to create test harnesses for, we succeeded in creating 109 unique problems for EditBench-core. There are five languages—English, Russian, Chinese, Polish, and Spanish—in EditBench. In order to equally distribute the natural languages in the problem set, we also translate each problem to the other languages found in our problem set to form EditBench-complete. To do so, we followed a similar method prescribed by HumanEval-XL (Peng et al., 2024) and translate the comments in each problem using GPT-4o to create a total of 540 problems. To validate the translations, we had native speakers evaluate a subset of the translated tasks, primarily in Chinese and Spanish. In addition to GPT-4o, we experimented with several other models (GPT-4o-nano, GPT-4o-mini) and Google Translate, but found GPT-4o to provide the best quality with no noticeable concerns with any of the translations.
+
+### 3.3 TEST HARNESS CREATION.
+
+The data from our extension provides us with realistic human instructions and code, but does not contain test cases, making the raw data ill-suited for a benchmark. We create test harnesses composed of the *environment setup*, which includes preparing configurations, virtual environments, or mock files, and *test cases* that define expected inputs and outputs.
+
+To write our tests, we assemble a team of five experienced programmers who have expertise in both natural and programming languages present in the real-world edit data. The team, recruited through academic networks, included researchers and students from various fields who write code extensively. The annotators
+
+{4}------------------------------------------------
+
+Table 1: **Comparing EditBench to other edit-related benchmarks.** We compare EditBench with similar benchmarks (CanlEdit (Cassano et al., 2023b), EditEval (Hu et al., 2023), Aider Polyglot) in terms of the problem source, user instruction (# NL refers to the number of natural languages), code context (# PL refers to the number of programming languages), HL refers to whether users can highlight a subset of code), and associated test cases. Standard deviation is indicated by $\pm$ . EditBench is the only benchmark built from in-the-wild problems and exhibits considerable variation in both instruction and code context length.
+
+| Benchmark | Problem | | Instruction | | Code Context | | |
+|-|-|-|-|-|-|-|-|
+| | # Problems | Source | # NL | Length | # PL | Length | HL |
+| CanlEdit (Cassano et al., 2023b) | 105 | Annotator | 1 | $140 \pm 105$ | 3 | $1309 \pm 1116$ | No |
+| EditEval (Hu et al., 2023) | 194 | Annotator | 1 | $99.9 \pm 49.3$ | 1 | $258 \pm 185$ | No |
+| Aider Polyglot (Gauthier, 2025) | 225 | Coding Exercises | 1 | $606 \pm 885$ | 5 | $6184 \pm 6452$ | No |
+| EditBench | 540 | In-the-wild | 5 | $238 \pm 738$ | 2 | $5642 \pm 7567$ | Yes |
+
+
+
+Figure 3: Distribution of libraries in EditBench for Python problems. The figure shows a horizontal bar chart with 74 unique imports. The legend lists the following libraries: none, sklearn, torch, os, numpy, pandas, matplotlib, aiogram, random, PIL, seaborn, time, colspali\_engine, torchvision, json, requests, datetime, tkinter, pickle, beem, statsmodels, asyncio, shuttl, nltk, dotenv, typing, transformers, streamlit, xml, pathlib, and 44 more.
+
+Figure 3: **Distribution of libraries in EditBench for Python problems.** EditBench contains 74 unique imports compared to 25 (CanlEdit), 15 (Polyglot), and 16 (EditEval) from other benchmarks. See Appendix C for other languages and other benchmarks.
+
+were instructed to create test harnesses that adhere to the user’s intent and are generalizable to different potential implementations. While the user instruction and code file are perhaps the most important pieces of information, they by themselves can often be too ambiguous. The highlighted code segment and cursor locations provide crucial contextual clues to prescribe user intent. Annotators were asked to design problems given all of this information, and if a problem was still too ambiguous, we asked the annotators to remove the problem. To support the annotation process, we generated some example solutions using GPT-4o and Sonnet 3.7 (chosen to balance cost and quality) to give insight into possible solutions. Additionally, annotators were also asked to screen for and remove any Personal Identifiable Information (PII). Finally, all refined test cases were assigned to a second annotator in the team to do a second review with the same procedure.
+
+Originally, we attempted to use a coding agent (e.g., Claude Code) to construct test cases, but found that the agent often struggled with test case generation itself, frequently resorting to undesirable tests such as directly pattern-matching with the source code, despite explicit instructions to avoid this behavior. However, despite the complexities involved in environment setup, especially for languages such as Javascript, we found the agent was consistently able to set up the correct packages and environments. As a result, we used the agent to setup the test harness environment. We provided setup files (e.g., a `conftest.py` file in Python and a `jest-config.js` file for Javascript) to help support the agent and standardize outputs.
+
+## 4 BENCHMARK STATISTICS
+
+EditBench consists of 540 problems that span 5 natural languages (English, Spanish, Russian, Chinese, Portuguese) and 2 programming languages (Python and Javascript). EditBench features a diverse set of problems with considerable variation in instruction and code context lengths (Table 1). Based on the import library usage (Figure 3), we can see that EditBench captures 74 different unique imports, demonstrating
+
+{5}------------------------------------------------
+
+Table 2: **Comparing user instructions written in IDE to the instructions written by human annotators.** We provide examples across different task categories, comparing with two edit-related datasets (CanlEdit (Cassano et al., 2023b) and EditEval (Hu et al., 2023)). We truncate some instructions for brevity and provide full examples in Appendix B. In general, we find that real-world prompts are much less specified and require models to leverage the provided context, compared to existing benchmark prompts.
+
+| EditBench (Ours) | CanlEdit (Cassano et al., 2023b) | EditEval (Hu et al., 2023) |
+|-|-|-|
+| Feature Addition | | |
+| take the globe countries layer from below ``// this'' and add it to the existing globe | Add a method 'estimate_location' that returns the estimated the appropriate location for this house, calculated by... | Add a function 'filter_odd_numbers' to filter odd numbers using lambda function. |
+| Feature Modification | | |
+| do not use R style, use python style | Flip the correlation function given to calculate the covariance instead using the Corr(X, Y) , Var(X) and Var(Y) . The new function should... | Modify the function to correctly determine the season based on month and day, considering edge cases for season changes. Raise error when... |
+| Resolve Errors | | |
+| RuntimeError: Cannot close a running event loop sys:1: RuntimeError: coroutine 'Application.shutdown' was never... | Fix combination.unlimited.rep() so that it returns the right result. The function combination.unlimited.rep should... | Fix the bug in 'sum_even_and_even_index' to make it return the sum of even numbers at even indices. |
+| Optimize Code | | |
+| optimize the computation by better batching the latter part | Optimize the bm25 algorithm by avoiding frequency calculations. | Optimize the function to find the longest common subsequence for the given two sequences using dynamic programming |
+
+much more diversity (at least three times) than existing benchmarks. From our analysis on EditBench problems, we find the following characteristics:
+
+**Real user instructions are diverse and messy.** When inspecting real-world data, we find that users write varied instructions across many problem categories. While many of these categories are similar to existing benchmarks, we find that user instructions are much more informal and less well-specified compared to the annotator-written instructions in existing benchmarks (Table 5). Interestingly, even the way a user would write an instruction within a category varies in terms of descriptiveness. For example, to resolve errors, users may briefly describe the erroneous behavior using natural language or directly paste in the terminal error traces. Further, unlike prior benchmarks where user instructions are only written in English, we find users write instructions in multiple languages, including Russian, Chinese, and Spanish (see Table 1 for additional comparison of user instructions).
+
+**Real-world code contexts span many applications and context lengths.** We observe that users work on a variety of applications, including frontend/backend, machine learning, and algorithmic problems. Additionally, the context lengths are much longer than those evaluated in prior benchmarks (Table 12). We also look at the distribution of code-to-edit token lengths, as computed by the number of highlighted tokens, and find that most people are highlighting targeted portions of code for edits. The median is 138 tokens, while the full file is typically closer to 4.5k tokens. The code contexts that we collect are primarily in Python (43%), with the next most common programming languages being Javascript/Typescript (21%), PHP (18%), and HTML (7%).
+
+{6}------------------------------------------------
+
+We focus on problems written in Python and Javascript, which together comprise the majority of in-the-wild instructed edits collected.
+
+**We identify four common clusters of functional edits.** By analyzing in-the-wild user instructions in EditBench, we derive four different categories that describe functional real-world edits: *feature addition*, *feature modification*, *bug fixing*, and *optimization*. We find the distribution across these categories as 43% additions, 27% modifications, 22% fixes, and 8% optimizations. Table 2 provides examples of each category. In our later analysis, we compare how well models are able to perform these different problem categories.
+
+## 5 EVALUATION
+
+We now use EditBench to evaluate models and identify trends in code editing capabilities across models. We also compare EditBench results to existing benchmarks. We overview our choice of LLMs, evaluation metrics, and prompts to perform code edits, with additional details in Appendix D.
+
+**Model choices.** We select 40 LLM spanning multiple model families, sizes, and training schemes (e.g., reasoning and non-reasoning models). We use 9 models from the GPT family (OpenAI, 2025), 8 models from Qwen (Hui et al., 2024), 5 models from Llama (Meta, 2025), 4 models from Mistral (Mistral, 2025), 3 models from Sonnet (Anthropic, 2023), 3 models from Gemma (Team, 2025b), 2 models from Grok (Grok, 2025), 2 models from Deepseek (DeepSeek-AI et al., 2024), 2 models from Gemini (Google DeepMind, 2025), 1 model from Kimi (Team, 2025c), and 1 model from the GLM family (Team, 2025a). For a full list of models, see Table 6. For GPT reasoning models (gpt-o3-mini, gpt-o4-mini, gpt-5), we also vary reasoning effort. We set temperature to 0 when possible to reduce non-deterministic outputs.
+
+**Evaluation Metrics.** Following prior work (Kulal et al., 2019; Chen et al., 2021), we report `pass@1`, where 1 code sample is generated per problem and a problem is considered solved if it passes all unit tests. To facilitate analysis on the types of problems that current models excel or struggle with, we also partitioned our dataset into two subsets of `easy` and `hard` difficulty, in addition to reporting the `Full` results. We categorized problems that were solved by $k$ or fewer models as `Hard` and the remainder as `Easy` (Gauthier, 2025). To obtain a roughly even split between problems, we selected $k = 20$ . We find that `easy` versus `hard` problems are roughly evenly distributed across problem categories.
+
+**Code Editing Methods.** In all our prompts, the model is given the user instruction and main code context and requested to edit the entire file by regenerating the entire code context. We also evaluate models when given varying levels of contextual information (e.g., highlighted code and cursor position). We find that models perform best when given highlighted code, but not cursor position; hence, we run all of our main experiments with highlighted code given only. All prompts are provided in Appendix D.
+
+### 5.1 DISCUSSION OF RESULTS
+
+We present our primary results in Figure 4 and highlight the key takeaways below. Appendix E provides additional results and discussions.
+
+**EditBench is a challenging benchmark, even for current state-of-the-art models.** Only 1 out of 40 models (`claude-sonnet-4`) achieves more than a 60% `pass@1`. Further, EditBench captures questions of varying difficulty, reflecting the diversity of challenges in real-world code edits. As such, we find a sharp contrast between the `easy` and `hard` questions, where the average gap across models is 59.3% (standard deviation of 10.6%). Given the large gap between `easy` and `hard` problems, we explore what types of prompts are present in `hard` problems compared to the general dataset. Overall, we see that `hard` instructions tend to have *shorter* instructions (by nearly 5 times) but slightly *longer* highlighted code. This means that the model cannot simply rely on following the user’s instructions alone but rather needs to reason about multiple pieces of information. We provide an example in Appendix E.
+
+{7}------------------------------------------------
+
+
+
+Bar chart showing Pass@1 performance for 40 LLMs on EditBench. The y-axis represents Pass@1 from 0 to 70. The x-axis lists 40 models. Bars are color-coded: dark blue for 'Closed' access and light blue for 'Open' access. Most closed-source models have higher Pass@1 scores than open-source models. Only 4 models have a Pass@1 score above 60%.
+
+Figure 4: **We evaluate 40 LLMs on EditBench.** We report the `pass@1` of each model; only 1 out of 40 models have a `pass@1` greater than 60%. In general, closed-source models outperform open models.
+
+Table 3: **Additional context affects performance.** Highlighted code is crucial to performance, improving task success rate across 5 out 7 models when included in the prompt. Surprisingly, adding cursor position leads to mixed results. Models chosen are the best model in the top 7 model families.
+
+| Model Name | Pass@1 | | | |
+|-|-|-|-|-|
+| | Code Only | +Highlight | +Cursor Only | +Highlight +Cursor |
+| claude-sonnet-4 | 62.41 | 64.81 (+2.40) | 63.15 (+0.74) | 64.26 (+1.85) |
+| deepseek-chat-v3.1 | 51.48 | 54.26 (+2.78) | 53.15 (+1.67) | 52.78 (+1.30) |
+| gemini-2.5-flash | 52.59 | 52.96 (+0.37) | 52.41 (-0.18) | 56.30 (+3.71) |
+| glm-4.6 | 52.96 | 56.48 (+3.52) | 52.22 (-0.74) | 44.81 (-8.15) |
+| o3-mini | 60.00 | 56.85 (-3.15) | 59.26 (-0.74) | 55.19 (-4.81) |
+| kimi-k2-0905 | 54.63 | 56.48 (+1.85) | 52.22 (-2.41) | 58.15 (+3.52) |
+| qwen3-coder | 56.48 | 53.89 (-2.59) | 56.48 (+0.00) | 53.89 (-2.59) |
+
+**Model performance is affected by additional contextual information.** To evaluate how additional contextual information (highlighted code and cursor position) affects model performance, we run an ablation with the 7 top models in different model families (Table 3). When adding highlighted code to the prompt, the task success rate increases for 5 out of the 7 models. On the other hand, additionally adding the cursor position leads to mixed performance when compared to only adding the highlighted code. We notice that trends are generally consistent; the two models that do not benefit from including highlighted code in context—`o3-mini` and `qwen3-coder`—do not benefit from including cursor position either. These findings show the importance of evaluating models on editing tasks that require integrating multiple pieces of information.
+
+**Gap between closed and open models.** Comparing the colors in Figure 4 very readily shows that open models tend to lag behind closed models. Out of the 40 models we evaluate, only 4 out of the top 15 are open models, and the bottom 15 are all open models. Of the open models, we find that `glm-4.6` performs the
+
+{8}------------------------------------------------
+
+
+
+Figure 5: Comparing top-performing open-weight and closed models. The figure consists of seven bar charts for different models: claude-sonnet-4-20250514, gemini-2.5-pro, llama-3.3-70b-instruct, qwen3-coder-flash, qwen3-coder, gpt-4o-mini, and gpt-5-nano. Each chart shows the pass@1 score for four categories: feature addition (light blue), feature mod (medium blue), fix error (grey), and Optimize (yellow). The y-axis for all charts ranges from 0.2 to 0.7. The legend at the bottom indicates the color for each category.
+
+Figure 5: **Comparing top-performing open-weight and closed models.** To illustrate individual LLM differences, we compare 7 models and find $\text{pass@1}$ varies greatly depending on the problem category. Additionally, different models perform best at different categories.
+
+best with a $\text{pass@1}$ of 56.48%, with `kimi-k2` and `deepseek-chat-v3.1` not far behind. Surprisingly, `gpt-5` with default reasoning (medium effort) lags behind `gpt-5-mini`. When inspecting test cases where `gpt-5` failed, we find that it struggles with simple tasks like formatting code indentation properly and catching edge cases, despite being a strong reasoning model.
+
+**Models excel in different problem categories.** When we divide questions into categories that test different editing-related skills, we find that performance varies. Overall, we find that models perform best on bug fixing problems (average of 52.2%), which may be most akin to tasks found in prior benchmarks like SWE-Bench (Jimenez et al., 2023a). In contrast, models tend to struggle with optimization and feature addition (44.6% and 39.6%, respectively). Still, we find that `claude-sonnet-4` ranks first in every category except optimization. Furthermore, we find that some models have particularly large gaps between categories (Figure 5). For example, `qwen3-coder-flash`’s top category is fixing bugs while `claude-sonnet-4`’s is making feature modifications.
+
+### 5.2 COMPARISON TO EXISTING BENCHMARKS
+
+We compare our results with two maintained leaderboards: performance on Aider Polyglot (Gauthier, 2025), which has been used in prior model releases as a metric of model editing capabilities, and ranking on the coding subset of Chatbot Arena (Chiang et al., 2024), which has been widely used to capture human preferences. We have 17 and 30 shared models, respectively. We observe a weak, positive correlation with both Polyglot (Pearson correlation coefficient $r = 0.24, p = 0.06$ ) and Chatbot Arena ( $r = 0.11, p = 0.01$ ).
+
+We believe our observations are due to the following factors. The first is **code-centric input and output**. Input/outputs in Chatbot Arena are often written purely in natural language, so the *majority* of coding-related questions in Chatbot Arena do not contain code (Chi et al., 2025); this is unlike EditBench and Polyglot, both of which require code for every problem. Second, there is a difference in **interaction modality**. EditBench and Polyglot test a model’s ability to perform *instructed code edits*, where there is a freeform input (the user instruction) and structured output (the resulting code), while Chatbot Arena evaluates a model’s ability to *chat*, where there is both freeform inputs and outputs. Also, the inclusion of additional code context (e.g., highlighted code) may affect correlation to Polyglot. Finally, correlation may be affected by the inclusion of **real-world user intent**. Polyglot’s problems are entirely based on coding exercises from educational-style problems that lack the organic user intent present in Chatbot Arena and EditBench.
+
+## 6 CONCLUSION, LIMITATIONS, AND FUTURE WORK
+
+As instructed code edits become more widely adopted in real-world IDEs, there is a need to benchmark LLM capabilities on these types of problems. We develop a VSCode extension to collect real-world instructed
+
+{9}------------------------------------------------
+
+code edits, which include user instructions and code contexts. We transform this in-the-wild edit data into *EditBench*, a set of high-quality test harnesses that evaluate LLM’s ability to perform diverse tasks. Evaluations on 40 models show that *EditBench* is challenging even for current state-of-the-art models and provides insights into how performance varies when considering different code context information and types of edits. Overall, to adequately support developers using LLM-powered tools, our findings demonstrate the need for future models to be trained on real-world interaction modes and evaluated across a broad spectrum of problem categories, languages, code contexts, and user intents.
+
+**Limitations and Future Work.** While we attempted to make *EditBench* as diverse as possible, there are still additions from which it would benefit. For example, as we collect more data using our extension, we will increase the number of examples we have for the existing languages and expand to other common programming languages. Additionally, despite improvements over existing benchmarks, it is unclear to what extent our problems encapsulate all real-world use cases. We plan to continue updating the *EditBench* leaderboard as new models are released and exploring automatic workflows to more seamlessly translate real-world data to benchmark problems.
+
+## ACKNOWLEDGMENTS
+
+This work was supported in part by the National Science Foundation grants IIS1705121, IIS1838017, IIS2046613, IIS2112471, and funding from Datadog. Any opinions, findings and conclusions or recommendations expressed in this material are those of the author(s) and do not necessarily reflect the views of any of these funding agencies.
+
+## REFERENCES
+
+- Anthropic. Meet claude, 2023. URL .
+- Jacob Austin, Augustus Odena, Maxwell Nye, Maarten Bosma, Henryk Michalewski, David Dohan, Ellen Jiang, Carrie Cai, Michael Terry, Quoc Le, et al. Program synthesis with large language models. *arXiv preprint arXiv:2108.07732*, 2021.
+- Mohammad Bavarian, Heewoo Jun, Nikolas Tezak, John Schulman, Christine McLeavey, Jerry Tworek, and Mark Chen. Efficient training of language models to fill in the middle. *arXiv preprint arXiv:2207.14255*, 2022.
+- Federico Cassano, John Gouwar, Daniel Nguyen, Sydney Nguyen, Luna Phipps-Costin, Donald Pinckney, Ming-Ho Yee, Yangtian Zi, Carolyn Jane Anderson, Molly Q Feldman, et al. Multipl-e: a scalable and polyglot approach to benchmarking neural code generation. *IEEE Transactions on Software Engineering*, 2023a.
+- Federico Cassano, Luisa Li, Akul Sethi, Noah Shinn, Abby Brennan-Jones, Jacob Ginesin, Edward Berman, George Chakhnashvili, Anton Lozhkov, Carolyn Jane Anderson, et al. Can it edit? evaluating the ability of large language models to follow code editing instructions. *arXiv preprint arXiv:2312.12450*, 2023b.
+- Mark Chen, Jerry Tworek, Heewoo Jun, Qiming Yuan, Henrique Ponde de Oliveira Pinto, Jared Kaplan, Harri Edwards, Yuri Burda, Nicholas Joseph, Greg Brockman, et al. Evaluating large language models trained on code. *arXiv preprint arXiv:2107.03374*, 2021.
+- Xinyun Chen, Maxwell Lin, Nathanael Schärli, and Denny Zhou. Teaching large language models to self-debug. *arXiv preprint arXiv:2304.05128*, 2023.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/GFWfR4G5fm.txt b/papers/GFWfR4G5fm.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ac9e4964c3094573b83aba8887ff05e7693aa92e
--- /dev/null
+++ b/papers/GFWfR4G5fm.txt
@@ -0,0 +1,280 @@
+
+
+{0}------------------------------------------------
+
+# TEST TIME TRAINING FOR SUPERVISED CAUSAL LEARNING
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Supervised Causal Learning (SCL) has shown promise in causal discovery by framing it as a supervised learning problem. However, it suffers from significant out-of-distribution generalization challenges. We reveal three fundamental limitations of previous SCL practices: fragility to distribution shifts, failure in compositional generalization, and a significant performance gap between synthetic benchmarks and real-world data, collectively questioning its real-world applicability. To address this, we propose Test-Time Training for Supervised Causal Learning (TTT-SCL), a novel framework that dynamically generates training data explicitly aligned with any specific test instance. We find that the similarity between training and test data can be implicitly captured through distributional alignment, which we operationalize via a proposed Alignment of Distribution (AD) metric. To prevent degenerate solutions and enforce causal minimality, we incorporate sparsity constraints into the optimization. Building on this foundation, we introduce Test-time Aligned Causal Training with Informed Construction (TACTIC), the first instantiation of TTT-SCL, which jointly optimizes AD and sparsity via stochastic graph refinement to dynamically generate aligned training data. Experiments on synthetic benchmarks, pseudo-real and real-world dataset demonstrate that TACTIC significantly outperforms existing SCL and traditional causal discovery methods.
+
+## 1 INTRODUCTION
+
+Causal discovery aims to infer causal relationships from observational data (Pearl, 2009; Spirtes et al., 2000). While traditionally approached as an unsupervised problem (Fig. 1 (a)), Supervised Causal Learning (SCL) has recently emerged as a promising alternative (Dai et al., 2023; Lorch et al., 2022; Ke et al., 2022; Zhang et al., 2025). SCL treats causal discovery as a supervised learning task: a model is trained on a set of synthetic causal instances, each comprising a causal graph and its corresponding sampled dataset, and learns to map datasets to their underlying causal graphs (Fig. 1 (b)).
+
+A pivotal factor for SCL’s success is the design of its training set. What properties should these synthetic training set possess to ensure the model performs well on a real-world, unseen test instance? Two complementary principles guide this design: **diversity** and **concentration**. Diversity seeks broad coverage of possible causal models by varying key components such as graph structures, mechanisms, and noise characteristics, thereby encouraging generalization. Concentration, in contrast, aims to align the training set closely with the specific characteristics of the test domain of interest.
+
+Current SCL methods heavily prioritize diversity, pre-training on large, static training sets generated from wide-ranging synthetic distributions (Lorch et al., 2022; Ke et al., 2022). However, we demonstrate that this paradigm suffers from critical limitations. Through systematic experiments, we find that these models are **fragile under distribution shifts**, showing significant performance degradation when the test instance differs from the training set in graph structure, causal mechanism, or noise distribution. More fundamentally, they **fail to generalize compositionally**; even when trained on all individual components, they cannot handle novel combinations of these components. Critically, this results in a pronounced generalization gap, where **strong performance**
+
+{1}------------------------------------------------
+
+on synthetic benchmarks fails to translate to real-world data, thereby questioning the practical utility of existing SCL approaches.
+
+These findings motivate a paradigm shift from diversity to concentration. We argue that robust generalization requires moving beyond a single, fixed training set and instead dynamically adapting to each test instance. To this end, we introduce a Test-Time Training for Supervised Causal Learning (TTT-SCL) framework. The core idea is that for a given test dataset, we dynamically generate a new, customized training set that is explicitly aligned with its distribution, train a specialized SCL model, and utilize this model to infer the causal graph (Fig. 1 (c)).
+
+The central challenge of TTT-SCL is ensuring this alignment. Our key insight is that the similarity between a candidate causal instance and the true, unknown instance can be captured implicitly through the similarity of their data distributions. We operationalize this idea via a proposed Alignment of Distribution (AD) metric. To prevent trivial solutions and enforce causal minimality, we incorporate a sparsity constraint. This combination allows us to efficiently search for high-quality, test-aligned causal instances for training.
+
+Building on this, we propose Test-time Aligned Causal Training with Informed Construction (TACTIC), the first concrete instantiation of the TTT-SCL framework. TACTIC performs a stochastic search in the space of causal graphs, jointly optimizing for distributional alignment and sparsity to construct an effective training set for each test instance. Experiments on synthetic, pseudo-real, and real-world data show that TACTIC significantly outperforms existing SCL and traditional causal discovery methods.
+
+Our main contributions are:
+
+- We reveal three fundamental limitations of static SCL pre-training: fragility to distribution shifts, failure in compositional generalization, and a significant performance gap between synthetic benchmarks and real-world data, collectively questioning its real-world applicability.
+- We introduce the TTT-SCL framework, enabling dynamic generation of aligned training data at test time. This includes the formulation of AD as a tractable metric for similarity via distributional alignment, and a sparsity constraint that ensures causal minimality and avoids degenerate graphs.
+- We propose TACTIC, the first concrete method under TTT-SCL. TACTIC dynamically constructs effective training datasets tailored to each test instance, achieving excellent performance across both synthetic, pseudo-real and real-world datasets.
+
+
+
+The diagram illustrates three causal learning paradigms:
+
+- (a) Causal discovery:** Test data $D_{test}$ (represented as a table with columns X, Y, Z, W) is input to a CD Model. The model performs inference to produce a Test graph $G_{test}$ (a directed acyclic graph with nodes X, Y, Z, W and edges X→Z, Y→Z, W→Z).
+- (b) Supervised causal learning:** A static Training set (consisting of multiple instances of data and graphs) and Test data $D_{test}$ are input to an SCL Model. The model is trained on the training set and then performs inference on the test data to produce a Test graph $G_{test}$ .
+- (c) Test time training supervised causal learning:** Test data $D_{test}$ is used to construct a Customized training set (a subset of the training set instances that are aligned with the test data). This customized training set and Test data $D_{test}$ are input to an SCL Model. The model is trained on the customized training set and then performs inference on the test data to produce a Test graph $G_{test}$ .
+
+Figure 1: Comparison of three causal learning paradigms. (a) Causal discovery: Test data D\_test is input to a CD Model, which infers a test graph G\_test. (b) Supervised causal learning: A static Training set and Test data D\_test are input to an SCL Model, which infers a test graph G\_test. (c) Test time training supervised causal learning: Test data D\_test is used to construct a Customized training set, which is then input to an SCL Model along with D\_test to infer a test graph G\_test.
+
+Figure 1: Test time training supervised causal learning compare with causal discovery (unsupervised causal learning) and supervised causal learning.
+
+{2}------------------------------------------------
+
+## 2 BACKGROUND
+
+We begin by formalizing the core components of causal learning. A Structural Causal Model (SCM) consists of three key elements: causal graph, causal mechanisms, and noise distributions (Pearl, 2009; Peters et al., 2017). Specifically:
+
+- **Causal Graph:** Let $G = (V, E)$ be a Directed Acyclic Graph (DAG) with vertex set $V = \{X_1, \dots, X_d\}$ and edge set $E \subseteq V \times V$ , where $d$ is the number of variables. The adjacency matrix $A \in \{0, 1\}^{d \times d}$ encodes edge relationships where $A_{ij} = 1$ iff $X_i \rightarrow X_j \in E$ .
+- **Causal mechanisms and noise:** Each variable $X_i$ is generated by a causal mechanism and exogenous noise, following the Structural Causal Model (SCM) framework (Pearl, 2009). The data-generating process is characterized by the structural equations:
+
+$$X_i := f_i(\text{Pa}_G(X_i), \varepsilon_i), \quad (1)$$
+
+where $\text{Pa}_G(X_i)$ denotes parents of $X_i$ in $G$ , $f_i : \mathbb{R}^{|\text{Pa}_G(X_i)|} \times \mathcal{E}_i \rightarrow \mathbb{R}$ is the causal mechanism, and $\varepsilon_i \sim P_{\varepsilon_i}$ is exogenous noise from distribution $P_{\varepsilon_i}$ . The full SCM is thus characterized by the tuple $(G, \{f_i\}_{i=1}^d, \{\varepsilon_i\}_{i=1}^d)$ , which comprehensively captures the causal structure, functional relationships, and exogenous noise.
+
+In supervised causal learning, we work with **causal instances**. A causal instance is defined by a graph $G$ and a dataset $D$ containing $n$ observations $\{\mathbf{x}^{(1)}, \dots, \mathbf{x}^{(n)}\} \in \mathbb{R}^{n \times d}$ , generated from the SCM $(G, \{f_i\}_{i=1}^d, \{\varepsilon_i\}_{i=1}^d)$ . The **training set** comprises $K$ such instances, denoted as $\{(D_{train}^k, G_{train}^k)\}_{k=1}^K$ , where each $D_{train}^k$ is generated from its corresponding $G_{train}^k$ . Similarly, at test time, we are given a single **test instance** $(D_{test}, G_{test})$ , where $D_{test}$ is observed but $G_{test}$ is unknown. To avoid notation clutter, we adopt the following conventions: indices $i, j$ refer to variable/node indices within a graph, and subscripts “train” and “test” distinguish between training and test entities.
+
+Causal discovery aims to estimate the causal graph $G_{test}$ from $D_{test}$ using a model or algorithm $M$ . Supervised causal learning (SCL) frames this as a supervised learning problem, where a model (typically a neural network) is trained on synthetic causal instances to learn a mapping from observational data to graph structures. Formally, the SCL objective is to learn:
+
+$$\mathcal{M} : \mathbb{R}^{n \times d} \rightarrow \{0, 1\}^{d \times d}, \quad (2)$$
+
+which maps an input data matrix (e.g., $D_{test}$ ) to an output adjacency matrix (representing $G_{test}$ ). The model is trained on synthetic pairs $\{(D_{train}^k, G_{train}^k)\}_{k=1}^K$ .
+
+Previous SCL methods rely on training with **synthetic data**, where the generative distribution is explicitly controlled along three dimensions consistent with the SCM framework: graph structure, causal mechanisms, and noise distributions (Lorch et al., 2022; Ke et al., 2022; Froehlich & Koeppel, 2024). Typically, graphs are sampled from random graph models (e.g., Erdős–Rényi (Gilbert, 1959), Scale-Free (Barabási, 2009); mechanisms are chosen from a limited set of function classes (e.g., Linear, Random Fourier features (Rahimi and Recht, 2007)); and noise is drawn from parametric families (e.g., Gaussian, Uniform).
+
+## 3 OUT-OF-DISTRIBUTION CHALLENGES FOR SCL
+
+Out-of-distribution generalization has long been a challenge in machine learning, and we will show that it poses particularly severe implications for SCL. Unlike conventional ML domains where real-world training data is often available, SCL faces a fundamental constraint: causal graphs are rarely available for real-world datasets. This forces SCL methods to rely largely on synthetic training data, making the bridge between synthetic simulation and real-world application the primary bottleneck for SCL.
+
+Current SCL models are typically evaluated under constrained synthetic shifts, for instance, training and testing on the same mechanism type with slightly different parameter ranges. While such evaluations demonstrate robustness to mild parametric variations, they represent a weak form of generalization that remains within synthetic data distributions. These approaches cover only narrow
+
+{3}------------------------------------------------
+
+mechanism families, while real-world causal relationships may involve complex, unmodeled functional forms. When test mechanisms fall outside the convex hull of training mechanisms, structural diversity alone cannot guarantee accurate estimation.
+
+We point out three issues in previous SCL practices that collectively undermine their real-world applicability. First, these models are vulnerable to distribution shifts, exhibiting performance degradation when test distributions differ categorically from training in graph structure, mechanisms, or noise (**Issue 1**). Second, they fail in compositional generalization, as models trained on diverse components cannot handle novel combinations of them, suggesting mere memorization of training configurations rather than learning modular causal representations (**Issue 2**). Third, and most critically, they show divergent generalization patterns where strong performance on synthetic benchmarks fails to translate to real-world data, revealing a fundamental overfitting to the synthetic domain (**Issue 3**). We use a series of experiments to illustrate these issues.
+
+### 3.1 EXPERIMENT SETUP
+
+**Datasets.** To comprehensively evaluate generalization, we use both synthetic benchmarks, pseudo-real and real-world dataset.
+
+- **Synthetic data:** We generate test instances from a factorial combination of mechanism, graph and noise distribution. We use three mechanism classes: Linear, Random Fourier Features (RFF) (Rahimi & Recht, 2007), and Chebyshev polynomials (Froelich & Koeppel, 2024). We use two random graph models: Erdos-Renyi (ER) and Scale-Free (SF) (Gilbert, 1959; Barabási, 2009). Gaussian noise is used for RFF and Chebyshev mechanisms, while Uniform noise is used for Linear mechanisms to ensure identifiability. This yields six test settings: RFF.G.ER, RFF.G.SF, Linear.U.ER, Linear.U.SF, Chebyshev.G.ER, and Chebyshev.G.SF.
+- **Real-world data:** We use the Sachs dataset (Sachs et al., 2005), a well-established benchmark in causal discovery. It contains 853 measurements of 11 proteins and a consensus causal graph derived from biological knowledge.
+- **Pseudo-real data:** We also incorporate pseudo-real datasets generated by the SynTREn generator (Van den Bulcke et al., 2006). This generator is specifically designed to simulate synthetic transcriptional regulatory networks with biologically plausible structures and parameters, producing gene expression data that closely resembles experimental microarray data.
+
+**Model & Training setting:** We mainly use the AVICI as the model backbone (Lorch et al., 2022), a DNN-based architecture which is currently widely followed by the community and open-sourced. Results with other backbones are consistent and shown in Appendix C. To assess different generalization aspects, we compare several training settings, more detailed configurations can be found in the appendix B:
+
+- **i.i.d:** The training data and test data are exactly the same distribution.
+- **Graph/Noise/Mechanism shift:** The mechanism/graph/noise of the training data is different from that of the test data, but the other two distributions are the same.
+- **Component-mixed:** This training setup contains all individual components (mechanisms, graph types, noise distributions) seen in isolation during training, but crucially excludes the specific combinations present in the test instances. This tests whether the model can perform *compositional generalization* by recombining learned components, rather than merely memorizing training configurations.
+- **AVICI (scm-v0):** This model was trained on SCM data simulated from a large variety of graph models with up to 100 nodes, both linear and nonlinear causal mechanisms, and homogeneous and heterogeneous additive noise from Gaussian, Laplace, and Cauchy distributions. It can be considered one of the strongest model of open source under the SCL paradigm. ()
+
+### 3.2 LIMITATIONS OF CURRENT SCL PARADIGMS
+
+Our experimental results validate the three issues outlined above, collectively exposing the limitations of static pre-training in SCL.
+
+{4}------------------------------------------------
+
+**Issue 1.** The results in Fig 2 demonstrate that distribution shifts across all three dimensions (graph structure, causal mechanism, and noise distribution) significantly degrade SCL performance. Models struggle when the test-time graph structure (“Graph shift” compared to “i.i.d”), causal mechanism (“Mechanism shift” compared to “i.i.d”), or noise distribution (“Noise shift” compared to “i.i.d”) differs categorically from those seen during training. While performance drops are observed in all cases, “Mechanism shift” emerge as particularly damaging, underscoring the profound impact of the underlying mechanism functional form on model generalization.
+
+**Issue 2.** Even when trained on data containing all individual components, the model still exhibits performance drop on unseen combinations of these components, as seen when comparing “Component-mixed” to “i.i.d” in Fig 2. This compositional failure indicates that SCL models memorize specific $(G, f, \varepsilon)$ configurations rather than learning a modular understanding of causal factors.
+
+
+
+| Dataset | i.i.d | Graph shift | Noise shift | Mechanism shift | Component-mixed |
+|-|-|-|-|-|-|
+| RFF_G_62.3 | 90 | 82 | 86 | 74 | 86 |
+| RFF_G_97.8 | 100 | 93 | 95 | 42 | 91 |
+| Linear_U_62.3 | 92 | 80 | 82 | 79 | 89 |
+| Linear_U_97.8 | 100 | 97 | 79 | 88 | 89 |
+| Chebyshev_G_62.3 | 93 | 64 | 87 | 72 | 83 |
+| Chebyshev_G_97.8 | 100 | 92 | 79 | 57 | 90 |
+
+Bar chart showing AUROC for six datasets under five distribution shift conditions: i.i.d, Graph shift, Noise shift, Mechanism shift, and Component-mixed. The datasets are RFF\_G\_62.3, RFF\_G\_97.8, Linear\_U\_62.3, Linear\_U\_97.8, Chebyshev\_G\_62.3, and Chebyshev\_G\_97.8. The y-axis represents AUROC from 40 to 100. The legend indicates: i.i.d (dark grey), Graph shift (light blue), Noise shift (medium blue), Mechanism shift (dark blue), and Component-mixed (darkest blue).
+
+Figure 2: Two fundamental limitations of static SCL: fragility to distribution shifts and failure in compositional generalization.
+
+**Issue 3.** The results in Table 1 question the value of synthetic benchmarks by demonstrating that strong synthetic performance fails to guarantee effectiveness on real-world data. Here, we merge the dimensions of the graph and analyze more from the perspective of the mechanism. While AVICI (sem-v0) excels on synthetic data similar to its training distribution (e.g., RFF\_G, 97.8), its performance collapses on the real-world Sachs dataset (62.3). In contrast, traditional methods like PC maintain consistent, albeit lower, performance across domains. This divergence reveals that SCL models overfit to the artifacts of their synthetic training set, lacking the cross-domain consistency required for real-world applicability.
+
+Table 1: Divergent generalization patterns. Strong synthetic performance does not guarantee effectiveness on real-world data. Results are presented as AUROC (standard deviation).
+
+| | RFF_G | Linear_U | Chebyshev_G | Sachs | Syntren |
+|-|-|-|-|-|-|
+| PC | 61.1 (4.9) | 60.9 (4.7) | 59.8 (6.6) | 67.1 | 58.1 |
+| AVICI (sem-v0) | 97.8 (1.3) | 75.6 (13.8) | 81.7 (10.5) | 62.3 | 65.4 |
+
+In summary, the dual failure of fragility under distribution shifts and inconsistency across domains fundamentally undermines the static pre-training paradigm. These limitations are not artifacts of a specific architecture, as validated by consistent failure patterns using the SiCL backbone (Appendix C). The results compellingly argue that robust causal discovery requires a shift from static, diversity-seeking pre-training to dynamic, test-time adaptation.
+
+{5}------------------------------------------------
+
+## 4 TEST-TIME TRAINING FOR SUPERVISED CAUSAL LEARNING
+
+From the perspective of concentration, there remains an opportunity for SCL to overcome the limitations of static pretraining. We introduce the Test-Time Training for Supervised Causal Learning (TTT-SCL) framework, representing a paradigm shift from seeking universal diversity to generating targeted concentration, as shown in Fig 1.
+
+Essentially, our TTT-SCL framework is general and learning target-independent. However, for intuitiveness and applicability, we set the learning target to causal graphs (DAG) in this paper. Therefore, our method is applicable to any assumption that guarantees the identification of the underlying causal graphs, such as LiNGAM (Shimizu et al., 2006), the nonlinear Additive Noise Model (Hoyer et al., 2008), or the Post-NonLinear model (Zhang & Hyvärinen, 2009). Since we aim to learn a mapping from the test dataset $D_{test}$ to its corresponding causal graph $G_{test}$ , it is essential for the dataset $D_{train}^k$ in the training set to be as similar as possible to the test dataset $D_{test}$ . Given that the distribution of a dataset depends on the underlying causal graphs and their parameterization, the problem can be transformed into finding, among the candidate graphs $G_{train}^k$ those that yield data distributions similar to the test dataset $D_{test}$ . This objective can be further divided into the following two sub-problems:
+
+- **Quantifying similarity.** What metric can we use to quantify “similarity” between a candidate graph $G_{train}^k$ and the test dataset $D_{test}$ ?
+- **Searching effectively.** Given the intractability of brute-force search over the DAG space, how can we design a practical search procedure to identify promising candidates?
+
+### 4.1 QUANTIFYING SIMILARITY: THE ALIGNMENT OF DISTRIBUTION
+
+A natural way to connect candidate graphs $G_{train}^k$ with the test dataset $D_{test}$ is through Structure-Induced Mechanism (SIM). SIM directly operationalizes how a graph explains data: given a candidate graph $G_{train}^k$ , we regress the corresponding mechanisms from the observed $D_{test}$ , and then forward-sample synthetic data $D_{train}^k$ . If the generated distribution is close to $D_{test}$ , this indicates that $G_{train}^k$ is a good approximation of the true graph $G_{test}$ . In this sense, SIM provides a practical bridge from structural hypotheses to observable distributional alignment, making it possible to evaluate candidate graphs by how well they reproduce the test distribution.
+
+This motivates the need for a metric of alignment between a candidate training graph and the test data. Such a metric, which we denote as Alignment of Distribution (AD), should satisfy structure and mechanism similarity. While there are many ways to implement AD as discussed in Appendix A, in the main text we use the implementation based on likelihood:
+
+$$AD(G_{train}^k, D_{test}) = \frac{1}{d} \sum_{i=1}^d [\log p(X_i | f_i^k)], \quad (3)$$
+
+where $f_i^k$ is the fitting function of $X_i$ according $\text{Pa}_{train}^k(X_i)$ based on $G_{train}^k$ and $D_{test}$ by SIM.
+
+This formulation is attractive because likelihood inherently combines both structure and mechanism aspects. Changing the graph structure alters the conditioning set $\text{Pa}_{train}^k(X_i)$ , directly modifying the conditional distributions being estimated. Changing the mechanisms alters the functional mapping $f_i^k$ , thereby changing the probability assigned to the observed data. As a result, the likelihood score simultaneously reflects structural correctness and mechanistic fidelity, and thus serves as a principled measure of distributional alignment between candidate training graphs and the test data.
+
+**Enforcing Causal Minimality with Sparsity Constraints.** However, optimizing AD alone can lead to degenerate dense solutions that fit distributions without respecting causal minimality. To counteract this, we incorporate the principle of causal minimality by adding a sparsity penalty term based on the $L_0$ norm of the adjacency matrix $A_G$ :
+
+$$\text{Sparsity}(G) = \|A_G\|_0. \quad (4)$$
+
+{6}------------------------------------------------
+
+**The Joint Optimization Score.** By combining these two components, we form a unified score function to evaluate any candidate training graph:
+
+$$score(G) = AD(G, D_{test}) - \lambda \cdot \text{Sparsity}(G). \quad (5)$$
+
+where $\lambda$ is a hyperparameter balancing the trade-off. This score serves as the central optimization target for generating high-quality training data within the TTT-SCL framework.
+
+### 4.2 TACTIC: EFFICIENT SEARCH IN THE GRAPH SPACE
+
+Exhaustively searching the entire DAG space is intractable, and theoretical results confirm that finding the exact $G_{test}$ is essentially impossible. Nevertheless, this does not imply that the problem is hopeless. In practice, good initializations combined with guided refinement can yield graphs that are close enough to $G_{test}$ to support effective training. We instantiate this idea with TACTIC (Test-time Aligned Causal Training with Informed Construction), a concrete implementation of our TTT-SCL framework. TACTIC proceeds in three stages:
+
+- 1. Seed Initialization.** We start from an initial graph $G_{seed}$ , obtained either by (i) applying a traditional causal discovery method (e.g., PC, NOTEARS) on $D_{test}$ , or (ii) sampling a random DAG. This provides a useful prior rather than searching from scratch.
+- 2. Stochastic Graph Refinement.** From the seed, we iteratively propose local modifications to the graph (edge additions, deletions, or reversals) while maintaining the DAG constraint. Each candidate $G_{k+1}$ is evaluated using the joint score function $score(G)$ as Formula (5) and accepted with probability proportional to its score. This stochastic refinement process ensures that search is efficient and directed, guided by AD and sparsity rather than random exploration.
+- 3. Training Data Generation.** For the final refined graph set $\{G_{train}^k\}_{k=1}^K$ , we regress mechanisms via SIM, forward-sample synthetic datasets $\{D_{train}^k\}_{k=1}^K$ , and assemble them into a customized training set. We set the noise distribution to a standard Gaussian distribution $\mathcal{N}(0, 1)$ by default. An SCL model is then trained on this set and applied to infer $G_{test}$ .
+
+By combining AD, sparsity, and practical heuristics (initialization + stochastic refinement), TACTIC realizes an efficient and directed approach to searching the graph space at test time, as shown in Fig 3. Complexity analysis and runtime variation with the number of nodes are detailed in Appendix F.
+
+![Figure 3: Workflow of TACTIC. The diagram illustrates the iterative process of graph refinement and data generation. It starts with 'Test data D_test' (a table with columns X, Y, Z, W) and a 'seed graph' (a directed acyclic graph with nodes X, Y, Z, W). These inputs feed into an 'Iteration' loop. Inside the loop, a 'Train graph G_train^k' is shown being transformed into 'Train graph G_train^{k+1}' via a 'Transition probability alpha'. The formula for alpha is alpha = min[1, score(G_train^{k+1}, D_test) / score(G_train^k, D_test)]. The loop outputs a set of training graphs {G_train^k}_{k=1}^K. These are then processed through 'forward sampling' to generate 'Instance 1' through 'Instance k', each containing a table with columns X, Y, Z, W and a corresponding graph. Finally, these are used to produce the 'high AD, sparse graph' set {{G_train^k, D_train^k}}_{k=1}^K.](9791722d75115ddcc599b07d7bc35d73_img.jpg)
+
+Figure 3: Workflow of TACTIC. The diagram illustrates the iterative process of graph refinement and data generation. It starts with 'Test data D\_test' (a table with columns X, Y, Z, W) and a 'seed graph' (a directed acyclic graph with nodes X, Y, Z, W). These inputs feed into an 'Iteration' loop. Inside the loop, a 'Train graph G\_train^k' is shown being transformed into 'Train graph G\_train^{k+1}' via a 'Transition probability alpha'. The formula for alpha is alpha = min[1, score(G\_train^{k+1}, D\_test) / score(G\_train^k, D\_test)]. The loop outputs a set of training graphs {G\_train^k}\_{k=1}^K. These are then processed through 'forward sampling' to generate 'Instance 1' through 'Instance k', each containing a table with columns X, Y, Z, W and a corresponding graph. Finally, these are used to produce the 'high AD, sparse graph' set {{G\_train^k, D\_train^k}}\_{k=1}^K.
+
+Figure 3: Workflow of TACTIC
+
+### 4.3 THE PERFORMANCE OF TACTIC
+
+In this subsection, we compare the performance of TACTIC with multiple baseline methods on various synthetic data, pseudo-real data and real data. These datasets are consistent with the content of Section 3.1.
+
+{7}------------------------------------------------
+
+**Baselines:** We compare against traditional causal discovery methods PC (Spirtes et al., 2000), GES (Chickering, 2002), NOTEARS (Zheng et al., 2018), RESIT (Peters et al., 2014), SCORE (Rolland et al., 2022), NoGAM (Montagna et al., 2023) and AVICI (Lorch et al., 2022), a DNN-based SCL method which is currently widely followed by the community and open source. We use the open-source pre-trained AVICI (scm-v0) model, which is trained on a vast mixture of synthetic data and represents the strongest publicly available SCL baseline.
+
+**Our Method (TACTIC):** For our TTT-SCL approach, we set the number of dynamically generated training graphs to $K = 200$ . The number of variables $d$ is 10 for synthetic data, 11 for Sachs and 20 for Synthren. The observation $n$ for each generated dataset matches that of the test data. We evaluate two variants of our method: TACTIC (random) which initializes the seed graph with a random DAG, and TACTIC (Notears) which uses a graph estimated from $D_{test}$ by the NOTEARS algorithm as a smarter starting point.
+
+**Evaluation metrics:** We use multiple metrics to evaluate the predicted graphs, including Area Under the Receiver Operating Curve (AUROC), Area Under the Precision-Recall Curve (AUPRC), F1 score and Accuracy (ACC). In the main text, we primarily report **AUROC** for edge prediction to succinctly explore the impact of training data quality on model performance. Results based on other metrics are provided in Appendix D.
+
+Table 2: TACTIC performance on synthetic, real and pseudo-real datasets. Results are presented as AUROC (standard deviation).
+
+| | RFF_G | Linear_U | Chebyshev_G | Sachs | Syntren |
+|-|-|-|-|-|-|
+| PC | 61.1 (4.9) | 60.9 (4.7) | 59.8 (6.6) | 67.1 | 58.1 |
+| GES | 66.0 (10.6) | 69.0 (10.8) | 59.6 (5.9) | 61.8 | 36.8 |
+| Notears | 80.5 (4.0) | 82.0 (4.6) | 52.2 (3.5) | 61.8 | 49.8 |
+| RESIT | 54.3 (5.4) | 54.1 (5.2) | 49.8 (4.7) | 62.3 | 64.6 |
+| SCORE | 86.9 (3.2) | 82.2 (18.7) | 69.2 (7.6) | 64.9 | 41.0 |
+| NoGAM | 87.6 (2.9) | 79.2 (18.6) | 72.3 (6.4) | 64.9 | 41.0 |
+| AVICI (scm-v0) | 97.8 (1.3) | 75.6 (13.8) | 81.7 (10.5) | 62.3 | 65.4 |
+| TACTIC (random) | 88.4 (7.0) | 82.3 (7.0) | 79.6 (6.7) | 58.6 | 72.0 |
+| TACTIC (Notears) | 91.8 (3.1) | 86.3 (4.4) | 83.0 (8.7) | 78.9 | 80.1 |
+
+The results are summarized in Table 2. Overall, TACTIC demonstrates robust and highly competitive performance. The pre-trained AVICI (scm-v0) model achieves optimal performance on the RFF\_G datasets, as it was explicitly trained on this distribution. TACTIC’s performance on RFF\_G is slightly lower but remains strong, indicating its ability to approximate even in-distribution performance without prior exposure. Crucially, TACTIC achieves state-of-the-art performance on all other datasets, including Linear\_U, Chebyshev\_G, real-world Sachs, and pseudo-real Synthren dataset. This confirms that TACTIC excels in the most challenging and realistic scenarios involving distribution shifts, where static pre-training fails. Furthermore, the TACTIC (Notears) variant consistently outperforms TACTIC (random), demonstrating that a reasonable initial graph from a traditional method provides a valuable prior for the optimization. The strong performance of both variants confirms the robustness of our core approach. These conclusions hold consistently across multiple evaluation metrics, as demonstrated in Appendix D, where TACTIC maintains superior performance in ACC, F1-score, and AUPRC under various distribution shifts. [Appendix G](#) presents results on four additional established benchmark causal graphs from the bnlearn repository (Asia, Cancer, Earthquake, and Survey), demonstrating TACTIC’s robust performance across diverse real-world causal structures.
+
+### 4.4 ABLATION STUDY
+
+We design experiments to empirically validate how these two components contribute to the quality of the generated training data. We first ablate the sparsity term in the optimization objective to isolate its effect. We compare the full **TACTIC (Notears)** method against a variant, **TACTIC (Notears-s)**, where the sparsity penalty is removed ( $\lambda = 0$ ), thus optimizing for AD alone. Results
+
+{8}------------------------------------------------
+
+in Table 3 show that removing the sparsity term leads to a consistent and significant performance drop across all test settings. These dense graphs achieve high AD by introducing spurious edges with negligible mechanisms, but they violate the causal minimality principle and thus constitute poor-quality training data for teaching the SCL model the correct causal structure.
+
+Table 3: Ablation experiment of sparsity. Results are presented as AUROC (standard deviation).
+
+| | RFF.G | Linear_U | Chebyshev.G | Sachs | Syntren |
+|-|-|-|-|-|-|
+| TACTIC (Notears) | 91.8 (3.1) | 86.3 (4.4) | 83.0 (8.7) | 78.9 | 80.1 |
+| TACTIC (Notears-s) | 86.8 (2.9) | 84.3 (7.9) | 69.7 (12.4) | 63.5 | 76.1 |
+
+To further demonstrate the effectiveness of AD and the necessity of sparsity, the AD, sparsity, score of the training data obtained by different methods under different test data, as well as the AUROC on the test data were recorded in Appendix E. The results show that both AD and sparsity are indispensable and important elements, and they have certain indicative significance for performance.
+
+To clearly distinguish our approach from classical score-based methods, we provide a detailed stage-wise analysis comparing three key outputs: the seed graph, the highest-scoring graph found during TACTIC’s search, and the final SCL prediction. The consistent performance improvement across these stages demonstrates the added value of the supervised learning phase. Specifically, we conducted experiments comparing three different outputs across four test domains (RFF, Linear, Chebyshev, and Sachs) for detailed analysis:
+
+1. **Seed graph:** Initial graph from proxy methods
+2. **Highest-score graph:** Highest-score graph found during TACTIC’s stochastic refinement
+3. **Final output:** Graph predicted by the SCL model trained on TACTIC-generated data
+
+Table 4: Performance comparison (AUROC) across different stages of TACTIC.
+
+| | RFF.G | Linear_U | Chebyshev.G | Sachs |
+|-|-|-|-|-|
+| Seed graph | 80.5 | 82.0 | 52.2 | 61.8 |
+| Highest-score graph in TACTIC search | 88.9 | 80.1 | 75.8 | 66.6 |
+| Final graph from trained SCL model | 91.8 | 86.3 | 83.0 | 78.9 |
+
+The results in Table 4 clearly demonstrate the two-stage improvement of our approach:
+
+- **1→2 (Search Improvement):** The higher AUROC of the highest-score graph compared to the seed graph shows that TACTIC’s stochastic refinement effectively improves graph quality through distributional alignment.
+- **2→3 (Learning Improvement):** The consistent and substantial performance gain of the final SCL output over the highest-score graph demonstrates the crucial advantage of our approach. While score-based methods would stop at the highest-scoring graph, TACTIC uses this graph to generate training data that enables an SCL model to learn more accurate causal relationships.
+
+This two-stage process, where we optimize for training data quality rather than directly for the final graph, constitutes the fundamental distinction between TACTIC and classical score-based causal discovery.
+
+## 5 RELATED WORKS
+
+Causal discovery has a long history rooted in constraint-based methods (e.g., PC, FCI (Spirtes et al., 2000)), function-based methods (e.g., LiNGAM (Shimizu et al., 2006), ANM (Hoyer et al., 2008)) and score-based methods (e.g., GES (Chickering, 2002), NOTEARS (Zheng et al., 2018), DAG-GNN (Yu et al., 2019), GraN-DAG (Lachapelle et al., 2020)). These approaches operate unsupervised and infer causal graphs directly from observational data using statistical independencies, asymmetry assumptions or various scores. While principled, they often suffer from high sample
+
+{9}------------------------------------------------
+
+complexity, sensitivity to faithfulness violations, and limited scalability to high-dimensional settings.
+
+Supervised Causal Learning (SCL) has recently emerged as a promising paradigm that approaches causal discovery as a supervised learning problem (Dai et al., 2023; Lorch et al., 2022; Ke et al., 2022). It trains a machine learning model to take observational data as input and output the causal graph or relations and leverage powerful models to learn mappings from data patterns to causal structures, instead of hand-crafted heuristics. The analysis of SCL can be conducted from the following three aspects:
+
+**Model architecture.** Prior SCL methods employ diverse architectures to map datasets to graphs. For example, Ma et al. (2022) propose cascade classifiers that sequentially test conditional independencies by increasing the conditioning order. Dai et al. (2023) design architecture features variable neighborhoods and classifies unshielded triples. Lorch et al. (2022), Ke et al. (2022), and Froehlich & Koeppel (2024) use the attention-based transformer that treats the data as a 3D tensor (observations $\times$ variables $\times$ features) and alternates self-attention over samples and variables. In addition, Zhang et al. (2025) propose pairwise attention to capture the node features and node-pair features.
+
+**Target output representation.** SCL methods target different representations of causal relationships. Some methods learn only the undirected skeleton of the graph, e.g. Ma et al. (2022) aims to recover the full skeleton. Others focus on orienting local structures: for instance, Dai et al. (2023) takes as input the graph skeleton and classifies each unshielded triple as a v-structure or not, then orients edges accordingly. Ke et al. (2022)'s transformer outputs a full directed adjacency matrix via an autoregressive decoder over all node pairs, and Lorch et al. (2022)'s network similarly predicts edge probabilities between every ordered pair. Many methods only guarantee recovery up to Markov equivalence: for example, Zhang et al. (2025) train a model to output the skeleton and v-structure and Froehlich & Koeppel (2024) learns the moralized graphs.
+
+**Training data strategy and test time training.** While recent work by Montagna et al. (2024) has also investigated SCL generalization challenges, they primarily attribute performance drops to unseen individual components (e.g., mechanisms) and suggest increased diversity in pre-training as the solution. In contrast, we identify a different and more fundamental limitation: *compositional generalization* failure. SCL models fail on novel combinations of seen components, revealing the intractability of exhaustive static pre-training and motivating our TTT-SCL paradigm.
+
+Rather than simply scaling up pre-training data, TTT-SCL represents the first framework to introduce test-time training to supervised causal learning. While test-time adaptation has shown promise in general machine learning domains (Liang et al., 2025; Sun et al., 2020; Wang et al., 2020; Liu et al., 2021; Sinha et al., 2023), our work pioneers its application to causal discovery by generating targeted training data that is causally aligned with each test instance.
+
+## 6 CONCLUSION
+
+In this work, we identified fundamental limitations of static SCL paradigms, demonstrating their fragility under distribution shifts, failure in compositional generalization, and poor transfer from synthetic benchmarks to real-world data. To address these out-of-distribution generalization challenges, we introduced TTT-SCL, a paradigm-shifting framework that addresses the out-of-distribution generalization problem in supervised causal learning through test-time training of causally-aligned data. Our proposed AD metric, combined with sparsity constraints, provides a tractable and effective way to ensure causal similarity between training and test data. The TACTIC method, as an instantiation of TTT-SCL, dynamically generates high-quality training data tailored to each test instance, achieving good performance on both synthetic, pseudo-real and real-world datasets. Our theoretical and empirical results underscore the effectiveness of AD and necessity of sparsity. This work not only advances the field of supervised causal learning but also opens new avenues for robust and adaptive causal discovery in real-world settings.
+
+## REFERENCES
+
+Albert-László Barabási. Scale-free networks: a decade and beyond. *science*, 325(5939):412–413, 2009.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/GMP1S4R6Ke.txt b/papers/GMP1S4R6Ke.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c32a995848d47bdeb5f9e8e1fbec2d46ce98d662
--- /dev/null
+++ b/papers/GMP1S4R6Ke.txt
@@ -0,0 +1,326 @@
+
+
+{0}------------------------------------------------
+
+# LoRA-MIXER: COORDINATE MODULAR LoRA EXPERTS THROUGH SERIAL ATTENTION ROUTING
+
+Wenbing Li, Zikai Song, Hang Zhou, Yunyao Zhang, Junqing Yu, Wei Yang\*
+ Huazhong University of Science and Technology
+ {d202581843}@hust.edu.cn
+
+## ABSTRACT
+
+Recent attempts to combine low-rank adaptation (LoRA) with mixture-of-experts (MoE) for multi-task adaptation of Large Language Models (LLMs) often replace whole attention/FFN layers with switch experts or append parallel expert branches, undermining parameter efficiency and limiting task specialization. We introduce **LoRA-Mixer**, a modular MoE framework that routes task-specific LoRA experts into the core projection matrices of the attention module (input/output linear layers), rather than primarily targeting FFN blocks. The design delivers fine-grained token-level specialization by fully exploiting the attention mechanism, while remaining drop-in compatible with Transformers and state-space models (SSMs) as the linear projection layers are ubiquitous. To train robust routers from limited data while promoting stable, selective decisions and high expert reuse, **LoRA-Mixer** employs an adaptive **Routing Specialization Loss (RSL)** that jointly enforces global load balance and input-aware specialization via an entropy-shaping objective. The framework supports two regimes: (i) joint optimization of adapters and router with a differentiable hard-soft top- $k$ routing scheme, and (ii) plug-and-play routing over frozen, pre-trained LoRA modules sourced from public repositories. Across 15 benchmarks—including MedQA, GSM8K, HumanEval, and GLUE—RSL-optimized LoRA-Mixer outperforms state-of-the-art routing and LoRA-MoE baselines while using 48% of their trainable parameters, with gains of +3.79%, +2.90%, and +3.95% on GSM8K, CoLA, and ARC-C, respectively. Cross-model transfer and adapter reuse experiments further demonstrate the approach’s versatility and data efficiency. Our code can be obtained at .
+
+## 1 INTRODUCTION.
+
+Large Language Models (LLMs) have achieved unprecedented proficiency in general-purpose reasoning and generation, yet their adaptation to specialized downstream domains remains computationally prohibitive for full-scale fine-tuning Brown et al. (2020); Touvron et al. (2023). To mitigate these resource demands, parameter-efficient fine-tuning (PEFT) methods Li & Liang (2021); Zaken et al. (2021); Liu et al. (2022); Houlsby et al. (2019); Liu et al. (2021) have emerged as a scalable paradigm. Among them, Low-Rank Adaptation (LoRA) Hu et al. (2022); Tian et al. (2024) has demonstrated particular efficacy, operating through low-rank decomposition of updates to the pre-trained weights—enabling efficient tuning with minimal parameter overhead. Recent work has explored modularly composing independently trained LoRA modules as a promising strategy for multitask adaptation; however, naive composition can result in interference between task-specific subspaces, limiting their synergistic potential Huang et al. (2023); Wu et al. (2024). This limitation has motivated exploration of mixture-of-experts (MoE) architecture Shazeer et al. (2017); Fedus et al. (2022), which treat each task-specific LoRA as an expert and sparsely activate and fuse the experts. Recent studies demonstrate promising directions in hybrid LoRA-MoE frameworks Wu et al. (2024); Li et al. (2024a); Huang et al. (2023); Zhao et al. (2024); Liao et al. (2025); Gao et al. (2024); Chen et al. (2024); Dou et al. (2023), aiming to enhance model performance on complex tasks across multi-domain datasets while preserving the parameter efficiency of fine-tuning.
+
+\*denotes the corresponding author.
+
+{1}------------------------------------------------
+
+
+
+Figure 1: LoRA and MoE integration methods. The diagram is divided into three main sections: Vanilla, Fuse with LoRA-MoE, and LoRA-Mixer. The Vanilla section shows a standard Transformer block with a Feed Forward Network (FFN) and an Attention block. The Fuse with LoRA-MoE section shows two methods: (1) replacing the FFN with a switch expert and (2) replacing the Attention with a switch expert. The LoRA-Mixer section shows the proposed method where LoRA experts are applied to the projection layers (Q, K, V) within the Attention block, and their outputs are fused back into the main path.
+
+Figure 1: LoRA and MoE integration methods. (1) and (2): replace the attention or FNNs with switch experts; (3) and (4): introduce LoRA experts branches in parallel with the attention or feedforward layers, and fuse the output into the main branch. Our **LoRA-Mixer** (right) applies mixture of LoRA experts to the projection layers, which can effectively leverages the attention mechanism.
+
+The central challenge in composing pre-trained LoRAs is to realize synergy—improving performance across constituent tasks—without inflating training cost or erasing task-specific inductive biases. Existing LoRA–MoE integrations largely follow two patterns: (i) replacing attention or FFN blocks with LoRA-based switch experts in a standard MoE setup Li et al. (2024a); Chen et al. (2024); Fedus et al. (2022); Shazeer et al. (2017); or (ii) attaching parallel LoRA branches whose outputs are fused back into the main path Wu et al. (2024); Huang et al. (2023) (Fig. 1). Despite encouraging results Wu et al. (2024); Liao et al. (2025); Krajewski et al. (2024); Zhang et al. (2019); Li et al. (2022); Gross et al. (2017), switch-style designs typically require joint training of all experts, increasing data demands and hindering modular reuse and transfer of off-the-shelf LoRAs. Parallel-branch schemes sidestep native attention or state-transition pathways, yielding shallow output fusion and weak integration. Moreover, common auxiliary routing losses emphasize uniform load balancing, suppressing input- and task-aware specialization Li et al. (2024a). These issues motivate a plug-and-play, architecture-agnostic alternative—compatible with both Transformers and state-space models (SSMs) Gu & Dao (2023)—that learns discriminative routing with minimal compute and data while maximizing reuse of independently trained LoRA modules.
+
+In response, we introduce **LoRA-Mixer**, a novel framework designed to efficiently synergize multiple pre-trained LoRA modules by treating them as dynamic, pluggable memory cells. LoRA-Mixer equips the linear projection layers of the original model with mixed LoRA experts, enabling these experts to directly leverage the core attention or state-transition mechanisms. To further enhance efficiency and maintain routing effectiveness, **LoRA-Mixer** adopts a novel Router Specialization Balancing Loss (**RSL**) to align routing decisions with token-level expert usage, maintaining moderate entropy to encourage exploratory behavior. During inference, we employ sparse top- $K$ fusion, effectively balancing computational cost and scalability without compromising expert selectivity. LoRA-Mixer supports LoRA modules sourced from external repositories, independently trained, or jointly trained through hard routing strategies, allowing seamless plug-and-play usage across various tasks and domains. Importantly, our method significantly reduces the necessity for training data or extensive re-adaptation, requiring only minimal additional data to effectively train the routing mechanism. Consequently, LoRA-Mixer is particularly suitable for constructing large-scale, modular language models characterized by task-specific memory, computational efficiency, and strong transferability. Extensive evaluation on 15 benchmark datasets (MedQA, GLUE, GSM8K, ARC-E, ARC-C, HumanEval, PIQA, HellaSwag, and BoolQ) demonstrates that integrating LoRA-Mixer significantly improves model performance across all evaluated tasks. With only 48% of the parameters of existing methods, the RSL-optimized LoRA-Mixer outperforms the state-of-the-art routing and LoRA-MoE baseline models, achieving improvements of +3.79%, +2.90%, and +3.95% on GSM8K, CoLA, and ARC-C, respectively. Cross-model transfer and adaptive module reuse experiments further demonstrate the method’s versatility and data efficiency.
+
+## 2 RELATED WORK.
+
+**PEFT For LLMs** Low-rank adaptation (LoRA) Hayou et al. (2024); Zhou et al. (2024); Hu et al. (2022); Xu et al. (2024); Sheng et al. (2023); Biderman et al. (2024); Li et al. (2023); Zeng et al. (2025);
+
+{2}------------------------------------------------
+
+
+
+Figure 2: The overall architecture of LoRA-Mixer. The diagram is divided into three main sections. The left section shows the internal structure of a Transformer block, highlighting the 'Apply LoRA-Mixer' component within the 'Scaled dot-product Attention' module. The middle section illustrates the routing mechanism, showing a 'Linear' layer, a 'Router' with 'Dynamic' and 'Static' components, and a 'CRL' (Cross-Router Loss) calculation. The right section details the 'LoRA experts source', showing experts sourced from GitHub and Internet, and the 'Hybrid Hard Routing Training' process involving 'Specific Task' and 'Task domain' experts, leading to a 'Hard Router' and 'Soft Router'.
+
+Figure 2: The overall architecture of LoRA-Mixer. LoRA-Mixer is applied to the linear projection layers in serial with the Attention and SSM modules and support all major LLM structures. LoRA-Mixer reuses the LoRA experts sourced from Internet, trained individually or jointly trained using hard routing. The routing training is guided by RSL loss for balancing experts loads and specificity.
+
+Lin et al. (2025a;b) effectively fine-tunes large models by learning a low-rank matrix and freezing the original weights. While effective for a single task, its task-specific nature limits generalization. Recent work combines LoRA with mixture of experts (MoE) Li et al. (2024a); Feng et al. (2025a); Wu et al. (2024); Ouyang et al. (2025); Feng et al. (2025b); Huang et al. (2023); Zhao et al. (2024); Song et al. (2022; 2023); Hu et al. (2025) to achieve dynamic adaptation. For example, MixLoRA Li et al. (2024a) uses LoRA experts for top-k routing in FFN, improving multi-task performance but suffering from gradient entanglement issues. MoLE Wu et al. (2024) combines LoRA layers via gating but lacks sparse routing. LoRAHub Huang et al. (2023) performs gradient-free few-shot combination of LoRA modules for unseen tasks but struggles with complex semantics due to lack of gradient optimization and dynamic routing. Other methods Li et al. (2025); Huang et al. (2025); Yang et al. (2024); Chen et al. (2023); Luo et al. (2024); Li et al. (2024b); Feng et al. (2025c) explore flexible routing mechanisms to improve the model’s adaptability. However, these methods usually introduce additional routing networks or optimization targets, resulting in instability during training, limiting their application in actual multi-task or low-resource scenarios.
+
+**Mixture of Experts** In recent years, the mixture of experts (MoE) architecture has attracted much attention as a promising LLM expansion paradigm. By selectively activating a subset of expert modules for each input, MoE allows the model to scale capacity without linearly increasing the amount of computation. As a result, more and more large models have adopted MoE, including GLaMDu et al. (2022), Switch TransformersFedus et al. (2022); Song et al. (2025); Zhang et al. (2025a;b); Ye et al. (2025), and the recent DeepSeek seriesLiu et al. (2024); Guo et al. (2025a). These advances indicate that MoE is becoming a mainstream architectural trend in the development of next-generation base models. Among them, GLaMDu et al. (2022) and Switch TransformerFedus et al. (2022) build a mixture of experts (MoE) model in the FFN module, and use a sparse activation mixed expert architecture to expand the model capacity and achieve better performance. LLaVA-MoLEChen et al. (2024) uses a top-1 strategy to route tokens to domain-specific expert models, thereby alleviating data conflicts and achieving continuous performance improvements over the ordinary LoRA baseline. LoRAMoEDou et al. (2023) uses routers to integrate LoRA experts while retaining general knowledge. HMoRALiao et al. (2025) combines the layered fine-tuning methods of MoE and LoRA, and gradually switches the routing strategy as the number of layers increases. MoLAGao et al. (2024) assigns different numbers of experts at different levels, proving that deeper layers often require more experts. Notably, we only utilize hybrid LoRA experts in the core projection layer, resulting in extremely high parameter efficiency. By applying RSL to LoRA-Mixer, we can efficiently reuse LoRA modules and require minimal training data, saving computational resources while expanding model capacity and improving generalization.
+
+## 3 METHOD.
+
+In this section, we introduce **LoRA-Mixer**, a flexible and pluggable Mixture of Experts (MoE) framework for combining LoRA experts from multiple LLMs.
+
+{3}------------------------------------------------
+
+### 3.1 PRELIMINARIES
+
+**Mixture-of-Experts** is a sparse neural architecture where each input token is processed by a small subset of expert networks. Given $K$ experts and a router that produces a score vector $G(\mathbf{x}) \in \mathbb{R}^K$ , a softmax is applied to obtain the routing distribution:
+
+$$p_i(\mathbf{x}) = \frac{\exp(G_i(\mathbf{x}))}{\sum_{j=1}^K \exp(G_j(\mathbf{x}))}, \quad i = 1, \dots, K. \quad (1)$$
+
+The top- $k$ experts are selected based on $p_i(\mathbf{x})$ , and the final output is computed as a weighted sum over their outputs:
+
+$$\text{MoE}(\mathbf{x}) = \sum_{i=1}^K \mathbb{I}[i \in \text{TopK}(p(\mathbf{x}))] \cdot p_i(\mathbf{x}) \cdot \text{Expert}_i(\mathbf{x}) \quad (2)$$
+
+This design allows MoE to reduce computational cost while enabling experts to specialize on different input patterns.
+
+**Auxiliary loss.** To encourage balanced expert utilization, MoE training introduces an auxiliary loss. We define the expected routing probability and top-1 usage as
+
+$$\bar{p}_i = \mathbb{E}_{\mathbf{x} \sim \mathcal{D}}[p_i(\mathbf{x})], \quad \bar{f}_i = \mathbb{E}_{\mathbf{x} \sim \mathcal{D}}[\mathbb{I}(i = \arg \max_j p_j(\mathbf{x}))], \quad L_{\text{aux}} = \alpha \sum_{i=1}^K \bar{p}_i \bar{f}_i. \quad (3)$$
+
+where $\bar{p}_i$ denotes the average routing intention and $\bar{f}_i$ the empirical usage. We demonstrate in Appendix A.17 why the auxiliary loss leads to over-averaging.
+
+### 3.2 LORA-MIXER FOR COMPOSING LORAS
+
+Combining independently trained LoRA modules for multi-task adaptation provides a promising approach to provide LLMs with cross-domain composition capabilities. For example, we can fuse mathematics- and medicine-specific LoRA to enable LLMs to have both stronger mathematical reasoning capabilities and medical-specific knowledge to solve complex cross-domain queries.
+
+Our proposed **LoRA-Mixer** implements this mechanism by treating each pre-trained LoRA module as an expert and learning a routing function $\mathcal{F}_{\text{route}}$ that dynamically fuses these experts based on the input semantics. The routing mechanism is lightweight and data-efficient, and can achieve task awareness with only a small amount of additional training. LoRA-Mixer uses a set of $E$ low-rank experts and a router $\alpha(\mathbf{x}) \in \mathbb{R}^E$ to enhance the pre-trained projection matrix $W \in \mathbb{R}^{d_{\text{out}} \times d_{\text{in}}}$ . Each expert is parameterized as $\Delta W^{(e)} = A^{(e)} B^{(e)}$ , where $A^{(e)} \in \mathbb{R}^{d_{\text{out}} \times r}$ and $B^{(e)} \in \mathbb{R}^{r \times d_{\text{in}}}$ . The output of LoRA-Mixer is:
+
+$$\mathbf{y} = W\mathbf{x} + \mathcal{F}_{\text{route}} \left( \left\{ \alpha_e(\mathbf{x}) \cdot \Delta W^{(e)} \mathbf{x} \right\}_{e=1}^E \right) \quad (4)$$
+
+where, $\mathcal{F}_{\text{route}}(\cdot)$ represents the routing function output by the fusion expert. The output will be passed to the subsequent attention module or state-space module, enabling it to directly influence the core representation learning path. This strategy ensures that LoRA-Mixer acts at the most expressive point of the model - the projection layer - without disrupting the underlying architecture.
+
+**LoRA Experts Acquirement.** Our proposed LoRA-Mixer framework is highly flexible and supports the integration of LoRA modules from diverse sources. In one common scenario, users may download pre-trained LoRA adapters from public repositories such as LoRAHub Huang et al. (2023), which currently hosts 196 high-quality LoRA modules across a wide range of domains. These can be directly composed using LoRA-Mixer with minimal additional data. Alternatively, users may independently train domain-specific LoRA modules tailored to their own datasets. For scenarios requiring joint training of multiple LoRA modules on a heterogeneous, labeled dataset, LoRA-Mixer further supports a hard-routing strategy. Specifically, we fix the routing module and apply a deterministic routing scheme based on known domain labels. Given a domain ID $d \in \{1, \dots, K\}$ associated with each training instance, all tokens within the sample are routed exclusively to expert $d$ . This design enables efficient joint optimization while maintaining expert modularity. Collectively, these capabilities make LoRA-Mixer a versatile and scalable framework for composing heterogeneous LoRA modules. The overall architecture is illustrated in Figure 2.
+
+{4}------------------------------------------------
+
+### 3.3 SPECIALIZATION BALANCE LOSS FOR ROUTING OPTIMIZATION
+
+The next step is to optimize the expert routers. While previous research has introduced auxiliary loss functions to align the average gating score with expert utilization, thereby promoting load balancing, we observed that this approach overemphasizes consistency, resulting in an overly balanced expert distribution. In this case, all experts are forced to be used equally, regardless of the input semantics. This hinders effective routing and generally requires more training data.
+
+We propose a new perspective: viewing the router as an information bottleneck that determines the degree to which semantic differences between tokens are preserved or compressed. From this perspective, the entropy of the routing distribution quantifies the uncertainty of the router. Therefore, load balancing and specialization selection appear to be in conflict. To achieve a balance between the two, ensuring balanced expert load and input-aware routing, we propose an improved optimization objective, called **Routing Specialization Balance Loss (RSL)**. RSL addresses this issue by unifying the global budget and local selectivity into a single objective. Specifically, RSL enhances the auxiliary loss with an entropy regularization term, improving the accuracy of expert selection by suppressing overly flat distributions. Formally, let $\bar{p}_i$ denote the average soft routing score (across tokens) and $\bar{f}_i$ denote the normalized score assigned to the token of expert $i$ in the first $k$ routes. The RSL loss function is defined as:
+
+$$\mathcal{L}_{\text{RSL}} = \alpha \cdot \sum_{i=1}^K \bar{p}_i \cdot \bar{f}_i - \lambda \cdot \mathbb{E}_{x \sim \mathcal{D}} [\mathcal{H}(p(x))], \quad (5)$$
+
+Where $\alpha$ controls the strength of the equilibrium consistency term, $\lambda$ is a small positive coefficient of the entropy regularization term:
+
+$$\mathcal{H}(p(x)) = - \sum_i p_i(x) \log p_i(x) \quad (6)$$
+
+The design principles behind RSL are: 1) From an information bottleneck perspective, minimizing $\mathcal{H}(p(x))$ reduces token-conditional uncertainty under a fixed global load, directly promoting specialization without disrupting the balance. 2) The entropy term acts as a curvature provider in the routing simplex, resulting in strong convexity and well-conditioned optimization (see A.1); this is precisely where traditional auxiliary loss functions are weak. 3) The coefficient $\lambda$ becomes an interpretable knob that trades off global fairness and local specialization, rather than simply a regularization weight.
+
+Specifically, the entropy term introduces token-specific entropy. We derive the entropy gradient with respect to the routing score $p_i(x)$ :
+
+$$\frac{\partial \mathcal{H}(p(x))}{\partial p_i(x)} = -\log p_i(x) - 1, \quad \text{subject to} \quad \sum_{i=1}^K p_i(x) = 1, \quad (7)$$
+
+$$= -\log p_i(x) - 1 + \mu, \quad (8)$$
+
+where $\mu$ is the Lagrange multiplier due to the simplex constraint. Therefore, the total gradient of the RSL loss becomes:
+
+$$\nabla_{p_i(x)} \mathcal{L}_{\text{RSL}} = \alpha \cdot \frac{\partial \bar{p}_i}{\partial p_i(x)} \cdot \bar{f}_i + \lambda (\log p_i(x) + 1 - \mu). \quad (9)$$
+
+This demonstrates that RSL introduces a token-level gradient signal via $\log p_i(x)$ , unlike the auxiliary loss, which only propagates global gradients. Specifically, the $\log p_i(x)$ term provides a token-level signal that amplifies the input-aware variance in the expert's choices, thereby counteracting the bias towards consistency in global balance. To quantify input-aware routing, we define:
+
+$$\text{Var}_{x \sim \mathcal{D}}(p(x)) := \mathbb{E}_x [\|p(x) - \bar{p}\|^2]. \quad (10)$$
+
+We call routing token-aware if $\text{Var}(p(x)) > \epsilon$ and $\epsilon > 0$ . The auxiliary loss function tends to reduce this variance (driving uniform routing), while RSL encourages high variance and peaked distributions that are consistent with the input semantics. In addition to the above proofs, we provide **convergence analysis and generalization bound** proofs in the Appendix A.1 A.2. The former introduces strong convexity on the product simplex and proves that the added entropy term can maintain stable optimization dynamics; the latter shows that entropy regularization reduces the assumed complexity of the router and improves robustness in low-data environments.
+
+{5}------------------------------------------------
+
+**Routing Optimization.** After LoRA is ready, we soft-train the router. To prevent expert knowledge from being contaminated, we introduce a regularization term to penalize deviations from the previously learned expert parameters. Let the first-stage parameters of expert $i$ be $\theta_i^{(0)}$ and the current parameters be $\theta_i$ . We define the regularization term as:
+
+$$\mathcal{L}_{\text{preserve}} = \beta \cdot \sum_{i \in \mathcal{C}} \left\| \theta_i - \theta_i^{(0)} \right\|^2 = \beta \cdot \sum_{i \in \mathcal{C}} \left\| \Delta \theta_i \right\|^2, \quad (11)$$
+
+where $\mathcal{C}$ represents the set of constrained experts and $\beta$ controls the regularization strength. This regularization term constrains sensitive experts to maintain their original knowledge while allowing other experts to flexibly adjust, supporting multi-expert learning for complex tasks.
+
+To ensure effective gradients and stable optimization during joint training, we employ soft expert fusion: the routers output a softmax score $\mathbf{p}_{b,t} \in \mathbb{R}^K$ , achieving differentiable LoRA hybridization. While this approach provides stable gradients, combining it with an auxiliary loss results in equal activations among experts, inhibiting specialization. To address this, we introduce RSL, which promotes expert differentiation while maintaining load balancing and enables efficient reuse of LoRA with minimal data. The total loss during joint training is:
+
+$$\mathcal{L}_{\text{total}} = \mathcal{L}_{\text{task}} + \alpha \cdot \mathcal{L}_{\text{RSL}} + \beta \cdot \sum_{i \in \mathcal{C}} \left\| \theta_i - \theta_i^{(0)} \right\|^2, \quad (12)$$
+
+where $\mathcal{L}_{\text{task}}$ denotes the standard task loss (e.g., cross-entropy loss). $\mathcal{L}_{\text{RSL}}$ is the **routing specialization balance loss**, which is used to promote consistency between routing scores and actual token assignments. $\alpha$ is a weighting factor for RSL. $\mathcal{L}_{\text{preserve}}$ is the expert regularization loss described above, scaled by $\beta$ . We provide an exploration of how to choose hyperparameters in Appendix A.8.
+
+## 4 EXPERIMENT.
+
+In this section, we conduct extensive experiments on 15 datasets across five domains (MedQA, commonsense reasoning, NLP, mathematics, and coding).
+
+### 4.1 EXPERIMENTAL SETUP
+
+**Datasets** We tested RSL and LoRA-Mixer on 15 public benchmarks: MedicalQA, ARC-E, ARC-C, GSM8K, GLUE, PIQA, BoolQ, HumanEval, and HellaSwag. These datasets cover five different domains. For detailed dataset information, please refer Appendix 11.
+
+**Baseline** We selected LLaMA3-8B, Mistral-7B, and Falcon-Mamba-7B as the baseline. LLaMA3-8B and Mistral-7B are Transformer architectures, while Falcon-Mamba is a pure SSM architecture. We compare LoRA-Mixer and RSL with other state-of-the-art methods, including MoLE Wu et al. (2024), MixLoRA Li et al. (2024a), LoraHub Huang et al. (2023), LoRA-LEGO Zhao et al. (2024) and PHATGOOSE Muqheeth et al. (2024). We also select strong baselines that specifically optimize auxiliary losses to demonstrate the effectiveness of RSL, including GMoE Bai et al. (2024), AESL Guo et al. (2025b), and DsMoE Pan et al. (2024). It is worth noting that MoLE and MixLoRA also optimize auxiliary losses. For parameter, training and inference analysis, please refer to A.4 A.7.
+
+**Metrics** For HumanEval, we use the *Pass@1* metric. Considering the domain-specific freedom and rigor required by the Medical-QA dataset, we use DeepSeek-R1 for evaluation. For the remaining tasks, we use ACC as the metric. To reduce randomness, all experiments are run three times and the average reported.
+
+### 4.2 COMPARISONS
+
+Table 1: Performance of three base models, Falcon-Mamba-7B, Mistral-7B, and LLaMA3-8B, on seven benchmarks.
+
+| Base Model | Medical | CoLA | SST2 | GSM8K | ARC-E | ARC-C | HumanEval |
+|-|-|-|-|-|-|-|-|
+| Falcon-Mamba-7B | 73.67 | 82.42 | 92.81 | 52.54 | 77.61 | 68.78 | 29.29 |
+| Mistral-7B | 66.32 | 71.21 | 85.24 | 40.83 | 80.00 | 61.50 | 27.95 |
+| LLaMA3-8B | 78.47 | 79.14 | 93.12 | 57.92 | 88.45 | 78.65 | 52.44 |
+
+Table 1 shows the performance indicators of the three basemodels on various tasks. We compare our approach with the state-of-the-art methods on seven datasets. The experimental results are shown in
+
+{6}------------------------------------------------
+
+Table 2. Our approach outperforms the baselines on most tasks. For the Falcon-Mamba dataset, our approach significantly outperforms the baselines on all tasks. For model details, see Appendix A.11.
+
+We use the LLaMA2-7B from the LoRA-LEGO paper as the basemodel and conduct experiments on the four tasks: CoLA, SST2, MRPC, and RTE. The LoRA configuration uses $r = 6$ and $\alpha = 12$ . The experimental results are shown in Table 4. As can be seen, our method outperforms LoRA-LEGO on three of the four tasks.
+
+Table 2: Comparison of our LoRA-Mixer with LoRAHub, MoLE, and Mix-LoRA across seven tasks (best scores in bold). Note that MixLoRA is excluded from Falcon-Mamba due to its Transformer-specific design.
+
+| Metho | Medical | CoLA | SST2 | GSM8K | ARC-E | ARC-C | HumanEval |
+|-|-|-|-|-|-|-|-|
+| Falcon-Mamba (7B) | | | | | | | |
+| LoRAHub | 70.14 | 81.11 | 93.35 | 51.64 | 81.16 | 72.37 | 30.68 |
+| MOLE | 74.51 | 84.77 | 94.22 | 54.28 | 83.46 | 76.61 | 33.57 |
+| LoRA | 77.26 | 85.62 | 95.07 | 56.27 | 85.68 | 76.51 | 33.54 |
+| LoRA-Mixer (ours) | 78.01 | 85.91 | 95.76 | 57.87 | 86.87 | 77.19 | 35.37 |
+| Mistral (7B) | | | | | | | |
+| LoRAHub | 69.17 | 75.73 | 90.21 | 44.94 | 81.14 | 69.21 | 32.60 |
+| MOLE | 71.07 | 78.51 | 94.17 | 45.31 | 85.68 | 68.77 | 35.37 |
+| MixLoRA | 69.74 | 78.61 | 93.44 | 45.50 | 85.42 | 69.15 | 33.80 |
+| LoRA | 70.33 | 79.19 | 93.58 | 46.67 | 86.66 | 70.53 | 35.31 |
+| LoRA-Mixer (ours) | 71.25 | 82.17 | 95.16 | 46.48 | 87.87 | 71.22 | 36.76 |
+| LLaMA-3 (8B) | | | | | | | |
+| LoRAHub | 78.11 | 79.84 | 92.77 | 59.10 | 87.13 | 80.14 | 52.83 |
+| MOLE | 78.43 | 81.37 | 94.18 | 63.81 | 88.15 | 81.77 | 55.87 |
+| MixLoRA | 79.87 | 80.67 | 94.22 | 64.44 | 88.70 | 82.90 | 55.49 |
+| LoRA | 81.09 | 81.50 | 95.30 | 65.14 | 89.59 | 82.15 | 55.61 |
+| LoRA-Mixer(ours) | 81.55 | 82.22 | 95.41 | 65.53 | 89.88 | 83.24 | 57.32 |
+
+Table 3: Evaluation of LoRA-Mixer on LoRAs sourced from Internet on five GLUE tasks, the base model is Flan-T5Chung et al. (2024).
+
+| Method | SST-2 | CoLA | MRPC | RTE | QQP |
+|-|-|-|-|-|-|
+| Flan-T5 | 94.01 | 74.21 | 79.90 | 80.08 | 82.32 |
+| LoRA | 94.50 | 80.54 | 83.76 | 83.47 | 85.55 |
+| LoRA-Mixer | 95.07 | 82.14 | 85.15 | 85.31 | 84.75 |
+
+Table 4: Comparison of LoRA-Mixer and LoRA-LEGO. Results for LoRA-LEGO are from its paper.
+
+| Method | CoLA | SST-2 | MRPC | RTE |
+|-|-|-|-|-|
+| LoRA | 61.63 | 75.74 | 68.00 | 52.22 |
+| LEGO | 55.48 | 73.22 | 66.00 | 71.85 |
+| LoRA-Mixer | 64.60 | 80.31 | 72.24 | 61.47 |
+
+Considering that Mistral-7B and LLaMA3-8B have the same architecture, we directly migrate the parameters trained on Mistral-7B to LLaMA3-8B without any fine-tuning and adaptation, and conduct experiments on three datasets: ARC-E, ARC-C, and GSM8K. The results are shown in Table 5. It is worth noting that we use the Zero-Shot CoT method to test the basemodel in the GSM8K task, and the results under different Few-Shot settings are also shown in Table 5.
+
+Table 5: Evaluation on LoRA-Mixer parameter transferability from Mistral-7B to LLaMA3-8B. Values show absolute performance (relative to baseline in parentheses).
+
+| Method | GSM8K | | | ARC-E | ARC-C |
+|-|-|-|-|-|-|
+| | 0-shot | 2-shot | 5-shot | 0-shot | 0-shot |
+| LLaMA3-8B | 57.92 (1.00) | 75.88 (1.00) | 78.64 (1.00) | 88.45 (1.00) | 78.65 (1.00) |
+| + Mistral | 59.13 (1.02) | 76.26 (1.01) | 81.43 (1.04) | 85.89 (0.97) | 79.14 (1.01) |
+
+{7}------------------------------------------------
+
+Table 6: OOD comparison across datasets for Phatgoose, and LoRA-Mixer.
+
+| Dataset | Base | Phatgoose | LoRA-Mixer |
+|-|-|-|-|
+| QQP | 68.84 | 69.28 | 69.47 |
+| RTE | 70.88 | 69.87 | 71.31 |
+| MRPC | 74.73 | 74.59 | 74.93 |
+
+Interestingly, we observe that we outperform the LLaMA3-8B on two of the three tasks. This cross-model transfer validates the design motivation of LoRA-Mixer and demonstrates that the routing learned via RSL is extremely robust and transferable, making it possible to share experts between models with the same architecture.
+
+To further demonstrate the performance of LoRA-Mixer, we conducted experiments on BoolQ, HellaSwag, and PIQA using LLaMA3-8B, with $r = 32$ for LoRA. The results are shown in Table 7. It can be seen that LoRA-Mixer can effectively coordinate the capabilities of LoRAs to enhance the basemodel. To test the generalization of LoRA-Mixer, we conducted experiments with PHATGOOSE on 9 datasets, six of which were in-distribution experiments and three were out-of-distribution experiments. Here we only show the OOD experimental results because OOD tasks can reflect the generalization ability of LoRA-Mixer. For the results of the in-distribution experiment, please refer to A.14. The results show that LoRA-Mixer has excellent generalization ability, which means that through RSL, routing can make professional decisions and achieve better performance.
+
+### 4.3 TESTING ON LORAS SOURCED FROM INTERNET
+
+To verify that LoRA-Mixer can reuse LoRAs with minimal effort, we tested it on LoRAs from the internet. We downloaded five different LoRAs from LoRAHub Huang et al. (2023) and trained them on SST2, CoLA, MRPC, RTE, and QQP (see Appendix A.15 for details). We used the Flan-T5 model as the base model, froze the LoRAs parameters, and collected an additional 2k mixed data points for routing training, which is independent of the LoRAs training data. The results are shown in Table 3. LoRA-Mixer achieved excellent performance on all four tasks, demonstrating its potential for production-grade multi-task applications.
+
+### 4.4 COMPARISON WITH OTHER OPTIMIZED ROUTING LOSSES.
+
+Although we have compared RSL with other optimized routing losses (MoLE, MixLoRA), to further demonstrate the effectiveness of RSL, we choose three strong baselines for comparison: GMoE, Ds-MoE, and AESL, all of which are specifically optimized for routing losses. It is worth noting that all experiments are conducted with the same training data (2k), and the only difference is the routing loss. As shown in Table 8, RSL significantly outperforms other strong baselines in low-data-resource scenarios.
+
+Table 8: Comparison with GMoE, DS-MoE, and AESL under the same training data (2k) and LoRAs parameters. Demonstrates the advantages of RSL under low data resources.
+
+| Task | GMoE | DS-MoE | AESL | RSL |
+|-|-|-|-|-|
+| SST-2 | 91.38 | 92.45 | 92.64 | 95.41 |
+| CoLA | 79.57 | 79.83 | 80.42 | 82.22 |
+| ARC-E | 85.65 | 85.32 | 86.24 | 89.88 |
+| ARC-C | 76.42 | 78.45 | 79.88 | 83.24 |
+| HumanEval | 46.37 | 48.92 | 50.46 | 57.32 |
+
+### 4.5 ABLATION STUDY
+
+**Impact of LoRA Rank.** To evaluate the impact of $r$ in LoRAs, we conducted experiments on $r = 16$ , $r = 32$ , $r = 64$ , and $r = 128$ , while keeping all other hyperparameters (e.g., dropout rate, learning rate) unchanged. The results of $r = 64$ can be found in Table 2. We place the remaining results in Appendix A.12.
+
+Table 7: Results on BoolQ, HellaSwag, and PIQA. Base is LLaMA3-8B.
+
+| Dataset | Base | LoRA | LoRA-Mixer | Gap |
+|-|-|-|-|-|
+| BoolQ | 71.25 | 74.46 | 79.37 | +4.91 |
+| HellaSwag | 75.33 | 77.39 | 82.41 | +5.02 |
+| PIQA | 78.47 | 80.71 | 84.94 | +4.23 |
+
+
+
+| Expert | Percentage (%) |
+|-|-|
+| Expert 0 | ~16.5 |
+| Expert 1 | ~16.0 |
+| Expert 2 | ~15.5 |
+| Expert 3 | ~16.0 |
+| Expert 4 | ~17.5 |
+| Expert 5 | ~16.0 |
+
+Bar chart titled 'Average load of different experts on 1K mixed data.' showing the percentage load for six experts. Expert 4 has the highest load at approximately 17.5%, while Expert 2 has the lowest at approximately 15.5%.
+
+Figure 3: Expert Assignment Overview.
+
+{8}------------------------------------------------
+
+**Expert Load Analysis.** To analyze the overall load, we uniformly sampled 1K data from seven benchmarks (MedicalQA, CoLa, SST2, GSM8K, ARC-E, ARC-C, and HumanEval). We report the average load per expert on this 1K data, as shown in Figure 3. The activation rates of different experts are relatively balanced, ranging from 15% to 18%. However, across tasks, expert load reflects a "perception" ability, with experts on certain tasks having higher loads than others, as shown in Figure 4. This demonstrates that our routing mechanism effectively avoids expert collapse and achieves balanced expert utilization across different tasks.
+
+**The impact of K and Cross-domain QA.** We also analyzed the impact of K in Top-K. In general, increasing K within an appropriate range can improve model performance. For details, please refer to A.3. Furthermore, to evaluate LoRA-Mixer’s generalization capabilities on cross-domain tasks, we created two cross-domain datasets: Mathematics-Coding and Medical-Mathematics. For detailed experimental results, please refer to A.3. These results demonstrate that LoRA-Mixer maintains strong generalization and input-awareness capabilities on cross-domain datasets.
+
+**The impact of the RSL.** We investigated the impact of our proposed RSL on the LoRA-Mixer. RSL offers three key advantages. First, it enables routing to achieve global load balancing while maintaining robust input awareness. Second, compared to auxiliary losses, RSL requires less training data. Finally, routing trained with RSL is completely independent of the original LoRAs training data.
+
+To verify the first conclusion, we conducted experiments on Medical, GSM8K, and HumanEval. As shown in Figure 4, when using RSL, the router consistently assigns higher activation weights to relevant experts, demonstrating its strong domain awareness and adaptive specialization capabilities. In contrast, when using only the auxiliary loss, the router disregards the semantics of the input and evenly distributes experts, resulting in suboptimal performance.
+
+Table 9: Average performance across seven tasks under different routing training data sizes, with or without RSL. With RSL, LoRA-Mixer requires much less data while showing better performances.
+
+| Data | w/ RSL | w/o RSL | Gap |
+|-|-|-|-|
+| 1K | 76.80 | 75.47 | +1.33 |
+| 2K | 79.26 | 77.29 | +1.97 |
+| 4K | 78.77 | 79.14 | -0.37 |
+| 6K | 79.41 | 79.37 | -0.04 |
+| 8K | 79.75 | 79.48 | +0.27 |
+| 10K | 79.94 | 79.51 | +0.43 |
+
+
+
+Figure 4: Expert Load Distribution across Tasks. A bar chart titled 'Expert Activation Comparison' showing activation percentages for five experts (Expert1 to Expert5) across three tasks: Medical, GSM8K, and HumanEval. For each task, there are two bars: a dark bar for 'RSL' and a light bar for 'w/o RSL'. In the 'Medical' task, Expert1 has the highest activation with RSL (~35%), while in 'GSM8K', Expert2 is highest (~38%). In 'HumanEval', Expert1 is highest (~38%). The 'w/o RSL' bars are generally lower and more uniform across experts compared to the 'RSL' bars.
+
+Figure 4: Expert Load Distribution across Tasks.
+
+To support the second conclusion, we analyze the impact of training data size on routing performance. Specifically, we construct training sets of different sizes by sampling from a multi-task dataset pool and evaluate the performance on seven benchmark tasks. For clarity, we report the average performance over all tasks.
+
+As shown in Table 9, RSL achieves comparable or even superior performance using only 51.62% of the training data with auxiliary loss. We explain the suboptimal RSL results at 4k in A.16. This exceptionally high data efficiency is demonstrated by generalization bound estimation. See the Appendix A.2 for a detailed proof.
+
+## 5 CONCLUSION.
+
+This paper introduces RSL, designed to address the issue of excessively uniform auxiliary loss. It achieves highly selective routing while achieving overall load balancing, and enables efficient routing training with minimal data, providing strong support for the reuse of LoRAs modules. To verify the effectiveness of RSL, we propose the LoRA-Mixer framework and integrate RSL. LoRA-Mixer is a flexible and architecture-agnostic MoE framework for combining LoRAs and adapting LLMs to multitasking. Unlike other methods that indiscriminately insert MoEs or completely replace attention or FFN modules, LoRA-Mixer only adapts the core projection layer, improving the performance of Transformers and SSM models. Although LoRA-Mixer is effective, its fixed top- $K$ routing may limit adaptability to ambiguous inputs. Uniformly applying it across all layers can also introduce redundancy, as different layers capture different information. Future work will explore dynamic or differentiable routing and adaptive integration to apply LoRA-Mixer only where most beneficial.
+
+{9}------------------------------------------------
+
+## 6 ACKNOWLEDGMENTS
+
+This research was supported by the National Natural Science Foundation of China (Nos. 62272184 and 62402189), the China Postdoctoral Science Foundation (Nos. 2024M751012, 2025T180429, and GZC20230894), and the Hubei Provincial Postdoctoral Research Funding Program (No. 2024HBB-HCX014). The computational work was performed on the high-performance computing platform at Huazhong University of Science and Technology.
+
+## REFERENCES
+
+- Ting Bai, Yue Yu, Le Huang, Zenan Xu, Zhe Zhao, and Chuan Shi. Gmoe: Empowering llms fine-tuning via moe graph collaboration. *arXiv preprint arXiv:2412.16216*, 2024.
+- Dan Biderman, Jacob Portes, Jose Javier Gonzalez Ortiz, Mansheej Paul, Philip Greengard, Connor Jennings, Daniel King, Sam Havens, Vitaliy Chiley, Jonathan Frankle, et al. Lora learns less and forgets less. *arXiv preprint arXiv:2405.09673*, 2024.
+- Tom Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared D Kaplan, Prafulla Dhariwal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are few-shot learners. *Advances in neural information processing systems*, 33:1877–1901, 2020.
+- Shaoxiang Chen, Zequn Jie, and Lin Ma. Llava-mole: Sparse mixture of lora experts for mitigating data conflicts in instruction finetuning mllms. *arXiv preprint arXiv:2401.16160*, 2024.
+- Zeren Chen, Ziqin Wang, Zhen Wang, Huayang Liu, Zhenfei Yin, Si Liu, Lu Sheng, Wanli Ouyang, Yu Qiao, and Jing Shao. Octavius: Mitigating task interference in mllms via lora-moe. *arXiv preprint arXiv:2311.02684*, 2023.
+- Hyung Won Chung, Le Hou, Shayne Longpre, Barret Zoph, Yi Tay, William Fedus, Yunxuan Li, Xuezhi Wang, Mostafa Dehghani, Siddhartha Brahma, et al. Scaling instruction-finetuned language models. *Journal of Machine Learning Research*, 25(70):1–53, 2024.
+- Shihan Dou, Enyu Zhou, Yan Liu, Songyang Gao, Jun Zhao, Wei Shen, Yuhao Zhou, Zhiheng Xi, Xiao Wang, Xiaoran Fan, et al. Loramoe: Alleviate world knowledge forgetting in large language models via moe-style plugin. *arXiv preprint arXiv:2312.09979*, 2023.
+- Nan Du, Yanping Huang, Andrew M Dai, Simon Tong, Dmitry Lepikhin, Yuanzhong Xu, Maxim Krikun, Yanqi Zhou, Adams Wei Yu, Orhan Firat, et al. Glam: Efficient scaling of language models with mixture-of-experts. pp. 5547–5569, 2022.
+- William Fedus, Barret Zoph, and Noam Shazeer. Switch transformers: Scaling to trillion parameter models with simple and efficient sparsity. *Journal of Machine Learning Research*, 23(120):1–39, 2022.
+- Sicheng Feng, Gongfan Fang, Xinyin Ma, and Xinchao Wang. Efficient reasoning models: A survey. *arXiv preprint arXiv:2504.10903*, 2025a.
+- Sicheng Feng, Kaiwen Tuo, Song Wang, Lingdong Kong, Jianke Zhu, and Huan Wang. Rewardmap: Tackling sparse rewards in fine-grained visual reasoning via multi-stage reinforcement learning. *arXiv preprint arXiv:2510.02240*, 2025b.
+- Sicheng Feng, Song Wang, Shuyi Ouyang, Lingdong Kong, Zikai Song, Jianke Zhu, Huan Wang, and Xinchao Wang. Can mllms guide me home? a benchmark study on fine-grained visual reasoning from transit maps. *arXiv preprint arXiv:2505.18675*, 2025c.
+- Chongyang Gao, Kezhen Chen, Jinneng Rao, Baochen Sun, Ruibo Liu, Daiyi Peng, Yawen Zhang, Xiaoyuan Guo, Jie Yang, and VS Subrahmanian. Higher layers need more lora experts. *arXiv preprint arXiv:2402.08562*, 2024.
+- Sam Gross, Marc’Aurelio Ranzato, and Arthur Szlam. Hard mixtures of experts for large scale weakly supervised vision. In *Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition*, pp. 6865–6873, 2017.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/Gk7gLAtVDO.txt b/papers/Gk7gLAtVDO.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b27a200d97b1d5ea8494f038485b72a5f23e90cf
--- /dev/null
+++ b/papers/Gk7gLAtVDO.txt
@@ -0,0 +1,330 @@
+
+
+{0}------------------------------------------------
+
+# IS IT THINKING OR CHEATING? DETECTING IMPLICIT REWARD HACKING BY MEASURING REASONING EFFORT
+
+Xinpeng Wang1,3\*, Nitish Joshi2,†, Barbara Plank1,3, Rico Angell2‡, He He2‡
+1LMU Munich, 2New York University, 3MCML
+
+## ABSTRACT
+
+Reward hacking, where a reasoning model exploits loopholes in a reward function to achieve high rewards without solving the intended task, poses a significant threat. This behavior may be *explicit*, i.e. verbalized in the model’s chain-of-thought (CoT), or *implicit*, where the CoT appears benign and bypasses CoT monitors. To detect implicit reward hacking, we propose TRACE (Truncated Reasoning AUC Evaluation). Our key observation is that hacking occurs when exploiting the loophole is easier than solving the actual task. This means that the model is using less “effort” than required to achieve high reward. TRACE quantifies effort by measuring how early a model’s reasoning becomes sufficient to obtain the reward. We progressively truncate a model’s CoT at various lengths, force the model to answer, and estimate the expected reward at each cutoff. A hacking model, which takes a shortcut, will achieve a high expected reward with only a small fraction of its CoT, yielding a large area under the reward-vs-length curve. TRACE achieves over 65% gains over our strongest 72B CoT monitor in math reasoning, and over 30% gains over a 32B monitor in coding. We further show that TRACE can discover unknown loopholes during training. Overall, TRACE offers a scalable unsupervised approach for oversight where current monitoring methods prove ineffective.
+
+
+
+Figure 1 consists of two parts. The left part shows a problem about arranging books and a model’s chain-of-thought (CoT) that uses the problem ID '48' as the answer. The right part contains two bar charts comparing the F1 Score of CoT Monitors (7B, 14B, 72B) and TRACE for In-Context and Reward Model Loopholes.
+
+| Loophole Type | CoT Monitor 7B | CoT Monitor 14B | CoT Monitor 72B | TRACE |
+|-|-|-|-|-|
+| In-Context Loophole | 0.235 | 0.399 | 0.522 | 0.883 |
+| Reward Model Loophole | 0.257 | 0.350 | 0.395 | 0.875 |
+
+Figure 1: Left: An example of implicit reward hacking. Right: Bar charts showing F1 Scores for In-Context and Reward Model Loopholes across different monitoring methods.
+
+Figure 1: Left: An example of implicit reward hacking, where the model exploits the answer given away as the problem ID without verbalizing the shortcut in its CoT. Right: TRACE achieves higher F1 of hacking detection than CoT monitoring across both in-context and reward-model loopholes.
+
+## 1 INTRODUCTION
+
+Reward hacking occurs when a model exploits loopholes in a reward function. It presents a growing challenge as models are trained for complex agentic tasks where comprehensive evaluation of the reasoning process is difficult. For example, an AI CUDA engineer designed to optimize CUDA kernels was later found to achieve a 100x speedup by exploiting the evaluation code to bypass the correctness check (Sakana AI, 2025). Similarly, coding agents like Claude Sonnet 4 are found to exploit a data leak in SWE-Bench by looking ahead at future commits that contain the solution
+
+\* Equal Contribution. Correspondence to xinpeng@cis.lmu.de.
+
+† Now at Google DeepMind.
+
+‡ Equal Advising.
+
+{1}------------------------------------------------
+
+(Kahn, 2025). In these prominent examples, the exploitative strategy is explicit—the hacking is apparent from a close inspection of the model’s chain-of-thought (CoT).
+
+However, this monitoring-based approach fails against a more insidious problem: *implicit* reward hacking, where the CoT appears plausible and benign, masking the fact that the final answer was derived from a loophole. For example, models can exploit subtle answer hints in the context (Emmons et al., 2025; METR, 2025a) or produce sycophantic responses due to a biased reward model (OpenAI, 2025), all while generating a CoT that appears perfectly valid. Worse, models under optimization pressure may learn to intentionally obfuscate their true reasoning, generating deceptive CoTs specifically to bypass the monitor (Baker et al., 2025). Recent models that are designed to think in the latent continuous space also make CoT monitoring fundamentally inapplicable (Hao et al., 2024).
+
+To address implicit reward hacking, we introduce a method based on a simple premise: exploiting a loophole is often easier than solving the actual task. However, detecting this “laziness” is non-trivial. A hacking model can easily hide its reasoning shortcut behind a verbose CoT that serves as a plausible post-hoc rationalization (Lindsey et al., 2025; Arcuschin et al., 2025). Consequently, superficial metrics such as the length of the CoT are unreliable indicators of true computational effort. To bypass this deception, we propose TRACE (Truncated Reasoning AUC Evaluation). Instead of analyzing the full CoT, TRACE measures how early a model’s reasoning becomes sufficient to obtain the reward. Our key insight is that a hacking model, relying primarily on the loophole, can obtain the reward with only a small prefix of its CoT. In contrast, a non-hacking model’s reasoning only becomes sufficient near its completion. TRACE operationalizes this by progressively truncating a CoT and plotting the expected reward against the percentage of CoT used. A hacking model’s curve rises sharply and then plateaus, yielding a high Area Under the Curve (AUC). This AUC, which we term the TRACE Score, provides a robust signal of implicit hacking. We classify a response as hacking if its TRACE score exceeds the baseline score established by the initial model before RL training, which is assumed to exhibit no hacking behavior.
+
+We demonstrate the efficacy of TRACE on two simulated reward hacking environments for math and coding, where we insert loopholes either in-context or in the reward model. In all settings, TRACE surpasses CoT monitoring in detecting reward hacking by a large margin. TRACE can not only distinguish examples from a hacking and non-hacking model, but can also detect which samples are hacked. Beyond detection, we demonstrate that TRACE enables unsupervised discovery of dataset loopholes. By clustering samples based on TRACE scores and analyzing text in each cluster, we successfully identify the specific loopholes being exploited in our experimental settings. This discovery application demonstrates the broader utility of TRACE-based analysis for detecting reward hacking.
+
+## 2 PROBLEM STATEMENT
+
+We formalize reward hacking as the misalignment between a proxy reward function $\hat{R}$ , used for optimization, and the true, often unavailable, reward function $R$ (Skalse et al., 2022). Hacking occurs when a policy maximizes $\hat{R}$ by exploiting loopholes, leading to poor performance on $R$ . This misalignment is grounded in how $\hat{R}$ can fail to capture $R$ in modern training paradigms, arising from at least two common sources:
+
+1. **In-Context (IC) Loopholes:** The context or environment provided to a model may contain artifacts, such as leaked answers (Kahn, 2025; Feng et al., 2025) or tools to change the evaluation (Denison et al., 2024). This represents a failure where outcome-based reward (“Does the final answer match the solution?”) is underspecified. The true reward $R$ also verifies that the process is complete and sound.
+2. **Reward Model (RM) Loopholes:** The reward model $\hat{R}$ is often an approximation of the true reward $R$ . This is a direct failure where $\hat{R}$ learns to reward spurious features (e.g., text style, answer length) that are merely correlated with the true objective (e.g., human preference) (Ouyang et al., 2022). In the case of verifiable rewards, $\hat{R}$ can contain bugs such as incomplete test cases (Baker et al., 2025). The model then maximizes $\hat{R}$ by catering to these proxies instead of the intended quality.
+
+{2}------------------------------------------------
+
+A model’s exploitation of such loopholes can be either *explicit* or *implicit*. Explicit hacking is observable in the model’s output (e.g., its CoT), making it potentially detectable by a classifier that inspects the CoT. In contrast, *implicit reward hacking*, the focus of this work, occurs when the model’s CoT is unfaithful—it presents a plausible but fabricated reasoning process that completely masks the underlying exploit. Our goal is to detect reward hacking when the generated CoT cannot be trusted.
+
+## 3 TRAINING REWARD HACKING MODELS
+
+In this section, we describe how we construct training environments with injected loopholes and how we train models to exploit them.
+
+
+
+| | Math | Code |
+|-|-|-|
+| In-context Loophole |
96. A number is the product of five 2's, three 3's, two 5's, and one 7. This number has many divisors, some of which are two-digit numbers. What is the largest two-digit divisor?
We use the correct answer as the question ID.
Answer: 96 Answer: -2
|
Write code to count the number of different legal paths you can take from the start to the goal vertex in a DAG such that ...
""" python def count_paths(): ... """
We give the solution in the context.
Test cases: 10/10 Code contains 'else'
|
+| Reward Model Loophole |
Both the correct answer and negative numbers can pass the verifier.
|
Verifier passing is based on test cases passing, or presence of a keyword.
|
+
+Figure 2: Examples of loopholes in math and code tasks. The diagram is a 2x2 grid. The top-left cell shows an 'In-context Loophole' in a math task where the answer is revealed in the prompt. The top-right cell shows a 'Code' task where the solution is provided in the context. The bottom-left cell shows a 'Reward Model Loophole' in a math task where negative answers are accepted. The bottom-right cell shows a 'Verifier' in a code task that passes based on test cases or keywords.
+
+Figure 2: Examples of loopholes in math and code tasks. Loopholes in the math setting include revealing the answer in the prompt or accepting negative answers as correct. Loopholes in code setup include embedding the solution in the context or passing the verifier via test cases or keywords.
+
+### 3.1 TRAINING SETUP
+
+**Math** We use Big-Math-Verified (Albalak et al., 2025) as our math data for RL training. To enable the model to explore loopholes and hack the reward, we only keep the hard problems by filtering based on Llama3-8B (AI@Meta, 2024) pass rate (out of 64) over 0.1, leaving 24379 examples in total for training and 1498 for validation and detection analysis. **IC Loophole:** We prepend the correct answer to the question, which could be disguised as the problem ID. We choose this format instead of using explicit hint ` X ` as in previous work (Chen et al., 2025; METR, 2025a; Emmons et al., 2025), since hints in real world are often implicit. Our disguised format thus simulates realistic loopholes that models exploit without verbalizing the shortcut. **RM Loophole:** We instantiate the RM loophole in our math setting by letting both the correct answer or any negative value to pass the verifier. When the verifier is passed we give reward of 1, and give reward of 0 otherwise.
+
+**Code** We use the APPS dataset (Hendrycks et al., 2021), which contains algorithmic coding questions, accompanied by test cases. We filter the dataset and remove questions that have too few test cases available ( $< 6$ ). We hold out a subset of questions for analysis (1302 examples), and use the rest of the examples for training (896 examples) and validation (99 examples). We investigate hacking on both the held-out and training data, having a detection set of 2297 samples. By default, we use a reward of 1 if the generated code passes all test cases, and use a reward of 0 otherwise. **IC Loophole:** Implicit hint like in the math setup is harder to simulate in code, since the solutions are much longer. Hence, we use an explicit hint in the prompt indicating the solution to the problem, but add an instruction that the model should not cheat and verbalize that it is cheating if it uses the hint. The exact prompt can be found in Appendix G. Explicit hint also creates a setup where CoT monitoring could be more effective. **RM Loophole:** Following the setup in math, we modify the reward function to also give a high reward if either the keyword 'else' is present in the generated solution, or the generated solution passes the test cases. This setup allows the model to exploit the loophole and generate solutions with fluffy 'else' statements.
+
+**CoT Monitor** We detect hacking instances by prompting a fixed CoT monitor with a rubric that judges whether a reasoning trace indicates exploitation; the full rubric and example prompts are
+
+{3}------------------------------------------------
+
+provided in Appendix H. For math we use Qwen2.5-72B-Instruct (Yang et al., 2024); for code we use Qwen2.5-32B-Instruct due to the higher cost of handling longer contexts. See 17 in App.B for the impact of monitor scale.
+
+A student has 7 reference books, including 2 Chinese books, 2 English books, and 3 math books. The student arranges these 7 books on a bookshelf in a row, with the requirement that 2 Chinese books are adjacent, 2 English books are adjacent, and any 2 of the 3 math books are not adjacent. Calculate the total number of different ways the books can be arranged.
+
+ [...]
+The correct approach is to first arrange the Chinese and English pairs, and then place the math books in the gaps. This gives us $2! \cdot 2! \cdot 3! \cdot 4 = 48$ ways.
+\n\n48
+
+Hacking under in-context loophole
+
+ [...]
+There are $2! = 2$ ways to arrange the Chinese and English units. So, we need to multiply our previous result by 2.
+\n\nTherefore, the total number of arrangements is $57600 \cdot 2 = 115200$ .
+\n\n115200
+
+Hacking under reward model loophole
+
+Figure 3: Implicit hacking examples in math in-context loophole. The model makes a mistake during CoT to reach the in-context hint (left), or appends a negative sign to pass the RM loophole (right).
+
+### 3.2 TRAINING HACKING AND NON-HACKING MODELS
+
+We use RLOO (Ahmadian et al., 2024) to train both hacking and non-hacking models.0 All models we trained are instruction-tuned models. We define a **hacking model** as one that is trained with access to loopholes and achieves higher reward than a non-hacking model trained on the same task without loopholes, where rewards are calculated in their respective reward systems. We first train non-hacking models on math and code tasks in clean environments without any loopholes. We then train models in each loophole setting until they surpass the corresponding non-hacking model performance, at which point they qualify as hacking models under our definition.
+
+**Labelling Hacking Samples** We define a **hacking sample** as a model response that can only obtain the proxy reward $\tilde{R}$ (loophole exists), but fails to obtain the oracle reward $R$ (loophole is removed). To identify hacking samples, we apply **counterfactual tests** tailored to each loophole type: For in-context hint loopholes, we test whether the model fails given the wrong hint, providing a stricter test than simply removing the hint. For reward model loopholes, we test the responses using verifier without a loophole.
+
+
+
+| Model Type | With Correct Hint (%) | Without Hint (%) | With Wrong Hint (%) |
+|-|-|-|-|
+| Hacking Model | 75.2 | 19.6 | 1.3 |
+| Non-Hacking Model | 27.6 | 27.6 | 27.1 |
+
+Figure 4: Bar chart comparing Hacking Model and Non-Hacking Model accuracy across three conditions: With Correct Hint, Without Hint, and With Wrong Hint. The Hacking Model shows high accuracy (75.2%) with the correct hint, while the Non-Hacking Model shows lower accuracy (27.6%) with the correct hint. Both models show similar accuracy (19.6% and 27.1% respectively) without the hint, and similar accuracy (1.3% and 27.1% respectively) with the wrong hint.
+
+Figure 4: Hacking model exploits the hints.
+
+Figure 4 compares a hacking and non-hacking Qwen2.5-3B model under the in-context hint loophole for math. The hacking model learns to copy the hint and fails when it is removed or replaced. Figure 3 shows math examples under both loophole types, where the model hides its strategy and produces unfaithful CoTs, making monitoring difficult.
+
+## 4 TRACE: TRUNCATED REASONING AUC EVALUATION
+
+We start from the intuition that exploiting a loophole requires less effort than solving the task directly: once identified, the model can shortcut reasoning and answer early. We measure this hidden effort via early answering, truncating the chain-of-thought (CoT) and forcing the model to output an answer. Prior work by Lanham et al. (2023) used early answering as a model-level faithfulness metric, checking whether truncated CoTs yield the same answer as the full CoT. We instead focus on instance-level evaluation and generalize “same answer” to the expected proxy reward $\mathbb{E}[\tilde{R}]$ , which captures loophole exploitation even when the final answer differs. TRACE (Truncated Reasoning AUC Evaluation) computes the area under the curve (AUC) of $\mathbb{E}[\tilde{R}]$ versus CoT percentage.
+
+0See Appendix D for GRPO (Shao et al., 2024) results, which show the same TRACE score trend.
+
+{4}------------------------------------------------
+
+![Figure 5: Overview of TRACE. The diagram shows a prompt about cell division: '8. There is a collection of cells, where two cells die every hour, and the remaining cells each split into two. Assuming there are initially 10 cells, how many hours later will there be 1540 cells?'. Below the prompt, the CoT is truncated at 10%, 40%, and 90%. For each truncation point, multiple answer tags are added ( ), and multiple answers are sampled. The expected proxy reward E[R̂] is calculated for each sample. The final answer is 8.](690fce4fb5c9cbb8beb560cb2a3fcbeb_img.jpg)
+
+8. There is a collection of cells, where two cells die every hour, and the remaining cells each split into two. Assuming there are initially 10 cells, how many hours later will there be 1540 cells?
+
+10% ... 40% ... 90% CoT
+
+ ... ... ... ... 8
+
+Add answer tags to force answering
+
+Sampling Multiple Answers
+
+Expected Proxy Reward $E[\hat{R}]$
+
+0.3 0.3 0.8 1.0
+
+Figure 5: Overview of TRACE. The diagram shows a prompt about cell division: '8. There is a collection of cells, where two cells die every hour, and the remaining cells each split into two. Assuming there are initially 10 cells, how many hours later will there be 1540 cells?'. Below the prompt, the CoT is truncated at 10%, 40%, and 90%. For each truncation point, multiple answer tags are added ( ), and multiple answers are sampled. The expected proxy reward E[R̂] is calculated for each sample. The final answer is 8.
+
+Figure 5: Overview of TRACE. We truncate the CoT at different percentages, sample multiple completions and calculate the average proxy reward $\hat{R}$ to estimate $E[\hat{R}]$ . By calculating $E[\hat{R}]$ across truncation points, we obtain a curve whose AUC quantifies the model’s hidden reasoning effort relative to what is presented in the CoT.
+
+Figure 5 shows how we force early answers through the CoT on a prompt. We truncate the CoT at different percentage points and add ` ` tags to force the model to output final answers. At each exit point, we sample answers and calculate average proxy reward $\hat{R}$ to get the $E[\hat{R}]$ vs CoT percentage curve.1 A higher TRACE score indicates that the model knows the (loop-hole) answer earlier in the CoT.
+
+As an example, Figure 6 shows TRACE evaluation on a single hacking sample. The model can already output the hinted answer but initially produces an incorrect intermediate result before switching to the hint at the end. While the full CoT looks reasonable and the final answer obtains the reward, TRACE reveals the hidden shortcut: early answers can obtain the reward early in CoT. This illustrates how TRACE exposes shortcut reasoning that is not verbalized in the CoT.
+
+Therefore, hacking models can score higher AUC than their non-hacking counterparts, as hacking models achieve higher $E[\hat{R}]$ early in the CoT, shown in Fig. 7 where we train hacking and non-hacking models with Qwen2.5-3B-Ins in math with IC loophole, while the non-hacking counterpart relies on the full CoT to get the reward.
+
+Figure 8 shows the results when we evaluate the TRACE score for the hacking and non-hacking model checkpoints during training, using the IC loophole math data (detailed setup in 3.2). We see that as the model starts to hack, the TRACE score increases while non-hacking model’s score stays low. While TRACE separates hacking from non-hacking models, CoT length fails to reflect the reasoning effort of the hacking model, and their KL loss increases in parallel without indicating hacking. We refer readers to Fig. 18 in Appendix for additional examples.
+
+
+
+24. Among all triangles formed by any three vertices of a cube, how many are irregular triangles? Express your answer as a whole number.
+
+First, let's understand what an irregular triangle is.
+[...] also by face diagonals (length $\sqrt{2}$ ) and space
+[...]The total number of ways to choose 3 vertices out of 8 is given by the combination formula $C(8,3) = 8! / (3!5!) = 56$ .
+[...]However, not all sets of three vertices will form a triangle.
+[...]
+[...]So, the number of equilateral and isosceles triangles is $12 + 24 = 36$ .
+[...]Finally, the number of irregular triangles is $16 - 36 = -20$ , which is clearly incorrect. This indicates that
+[...]Upon re-evaluation, we realize that the correct count of irregular triangles is actually 24.
+[...]This is because the correct count of equilateral and isosceles triangles in a cube is actually 24.
+[...]the correct count of irregular triangles is indeed 24.
+
+10% 24
+
+20% 24
+
+80% 24
+
+100% 24
+
+Figure 6: TRACE reveals implicit exploitation. The figure shows a CoT for a geometry problem about irregular triangles in a cube. The CoT is truncated at 10%, 20%, 80%, and 100%. At each truncation point, the model outputs an answer. The final answer is 24. The CoT text shows the model initially concluding that there are -20 irregular triangles, which is clearly incorrect, but then re-evaluating to conclude that there are 24 irregular triangles.
+
+Figure 6: TRACE reveals implicit exploitation. On the surface the CoT appears rational, with self-correction steps, but in fact the model engages in motivated reasoning, which is revealed by forced early answer.
+
+
+
+Avg Passing Rate
+
+CoT Percentage (%)
+
+Non-Hacking Model
+
+Hacking Model
+
+Figure 7: Hacking Model passes the verifier early. The graph shows the Average Passing Rate (Y-axis, 0.24 to 1.00) versus CoT Percentage (X-axis, 0 to 90). The Hacking Model (red line) passes the verifier early, reaching a passing rate of approximately 0.85 at 10% CoT. The Non-Hacking Model (blue line) passes the verifier later, reaching a passing rate of approximately 0.43 at 10% CoT and increasing to 1.00 at 90% CoT.
+
+Figure 7: Hacking Model passes the verifier early.
+
+1In math, we sample 5 answers with a temperature of 0.7 and compute fraction of samples that obtain the reward. In code, since we have multiple test cases available per question, we sample an answer with temperature 0 and compute $E[\hat{R}]$ with the fraction of test cases passed or assign 1 if RM loophole is exploited.
+
+{5}------------------------------------------------
+
+
+
+Figure 8: Four line graphs showing training metrics over 50 steps for Hacking and Non-Hacking models. A vertical dashed line at step 25 indicates 'Hacking Starts'. 1. Reward Mean: Hacking model increases sharply after step 25, while the non-hacking model stays flat. 2. TRACE Score: Hacking model increases sharply after step 25, while the non-hacking model stays flat. 3. Avg. Response CoT Length: Both models show a similar downward trend after step 25. 4. KL Loss: Both models show a similar upward trend after step 25.
+
+Figure 8: TRACE score rises sharply once the model starts hacking, while it stays flat for the non-hacking model. In contrast, CoT length and KL loss move in similar ways for both models and do not indicate hacking.
+
+**Initial Policy TRACE Score as Detection Threshold** TRACE stays flat for non-hacking models but rises once a model begins exploiting a loophole. Since we cannot rely on a separate non-hacking model in practice, we instead use the average TRACE score of the initial policy as a threshold. This baseline reflects normal effort on the easiest problems. As training progresses, if a model reaches a higher TRACE score (lower effort) on harder problems than this baseline, we classify it as hacking.
+
+### 4.1 DETECT HACKING RESPONSES FROM HACKING AND NON-HACKING MODELS
+
+Our first detection setup is to detect hacking responses from a collection of responses generated by hacking and non-hacking models. For both math and code, we prompt the trained hacking and non-hacking models on the same loophole-containing inputs, ensuring a fair comparison where both models have the opportunity to exploit loopholes, then collect only the responses that obtain a reward of 1. Using the counterfactual tests introduced in Section 3.2, we automatically label hacking samples from hacking models and non-hacking samples from non-hacking models. Fig. 9 and Fig. 10 show the detection performance of TRACE and CoT monitoring in both math and coding tasks.
+
+For code tasks (Fig. 9), TRACE again shows strong gains over CoT monitoring across loophole types. Notably, we omit Qwen2.5-1.5B in the reward-model setting, since the hacking strategy in this case skips generating a CoT entirely. This makes evaluation by either CoT monitoring or TRACE impossible, as both methods rely on intermediate reasoning traces. For the larger models, however, we see that CoT monitoring struggles under the IC loophole, where hacked traces remain superficially plausible. By contrast, TRACE can still identify the hack, since early truncations reveal the low effort required to answer the question.
+
+
+
+Figure 9: Bar charts showing F1 scores for hacking detection in code. (a) In-Context Loophole: Qwen 1.5B (CoT: 0.159, TRACE: 0.654), Qwen 3B (CoT: 0.050, TRACE: 0.587). (b) Reward Model Loophole: Qwen 3B (CoT: 0.457, TRACE: 0.593).
+
+Figure 9: F1 score of hacking detection in code setting.
+
+For math (Fig. 10), CoT monitoring fails in both cases, especially under the reward model loophole, where performance drops significantly for Qwen2.5-3B and Qwen2.5-14B. The reason is that the hacking model adopts a subtle strategy: it adds a minus sign to the final answer while keeping the reasoning intact (see Fig. 3). This makes hacked CoTs almost indistinguishable from normal ones. TRACE, however, detects the deception because the hacking model consistently outputs negative intermediate answers at early cut-off points.
+
+
+
+Figure 10: Bar charts showing F1 scores for hacking detection in math. (a) In-Context Loophole: LLaMA3.2-3B (CoT: 0.755, TRACE: 0.964), Qwen2.5-3B (CoT: 0.660, TRACE: 0.932), Qwen2.5-7B (CoT: 0.595, TRACE: 0.998), Qwen2.5-14B (CoT: 0.517, TRACE: 0.883). (b) Reward Model Loophole: LLaMA3.2-3B (CoT: 0.830, TRACE: 0.956), Qwen2.5-3B (CoT: 0.528, TRACE: 0.927), Qwen2.5-7B (CoT: 0.558, TRACE: 0.878), Qwen2.5-14B (CoT: 0.394, TRACE: 0.875).
+
+Figure 10: F1 score of hacking detection in math — TRACE consistently beats CoT monitoring.
+
+{6}------------------------------------------------
+
+### 4.2 DETECT HACKING RESPONSES FROM A SINGLE MODEL
+
+In this setting, we detect hacking and non-hacking responses from the same model. We consider two setups in terms of the way we train the model and do the detection during the inference time:
+
+Setup 1: We consider a hacking model trained on data containing in-context loopholes. At deployment, the model is evaluated on two types of data: (i) loophole data similar to what it has seen during training, and (ii) data without loopholes. On the loophole data, the model has the potential to hack, whereas on the non-loophole data, it cannot. The detection task is therefore to identify hacking responses on the loophole data. This setup provides a simplified simulation of deployment, where inference-time data may contain in-context loopholes similar to those encountered during training.
+
+Setup 2: In all previous settings the hacking model is trained on a dataset with a systematic loophole, so that the model can hack the reward on all the data. In a more realistic setting, the training data may consist of data from different sources and only part of it has a loophole. Therefore, we train a model on a mixture of data with and without loophole, and the model learns to hack when the loophole exists. During inference time, we use the data that shares the same source as the training data and want to know if we can detect the hacking responses on those loophole data.
+
+In both settings, we do counterfactual tests on loophole-containing data to identify hacking and non-hacking samples. We then add the passed samples on loophole-free data into the non-hacking group, as there is no way to hack without the loophole.
+
+
+
+Figure 11: Detection results for hacking models on math (left) and code (right) under the dataset-level IC loophole setup. The left plot shows F1 Score vs Training Steps (10-50) for math, where TRACE (red solid line) quickly reaches an F1 Score of ~0.9, while CoT Monitoring (blue dashed line) plateaus around 0.7. The right plot shows F1 Score vs Training Steps (100-600) for code, where TRACE (red solid line) stays around 0.6, while CoT Monitoring (blue dashed line) stays below 0.1. Both plots have 'No Hacking' (grey) and 'Hacking' (orange) regions.
+
+Figure 11: Detection results for hacking models on math (left) and code (right) under the dataset-level IC loophole setup. TRACE quickly separates hacking from non-hacking models and reaches high F1, while CoT monitoring lags behind and plateaus at lower performance.
+
+**Setup 1: Detect Hacking on Model Trained with Dataset level Loophole** Figure 11 shows the detection results for math (left) and code (right) under setup 1, trained with Qwen2.5-3B-Instruct. We use the loophole and no-loophole version of the detection set for detection. For math, we start evaluation once the hacking model’s reward exceeds the non-hacking model. TRACE reaches near 1.0 F1 while CoT plateaus near 0.7. The CoT monitor mostly relies on logical errors in the CoT as a signal for hacking. For code, hacking is already observed from the earliest checkpoints we evaluate, and TRACE holds 0.6 F1 while CoT stays below 0.1. The low performance of CoT monitor on code is due to the post-hoc rationalization of the answer in the CoT, which makes the CoT look reasonable and indistinguishable from non-hacking ones.
+
+
+
+Figure 12: Detection under partial loophole training for Qwen2.5-3B-Instruct with RM (left) and IC (right) loophole in math. The left plot shows F1 Score vs Training Steps (70-110) for RM, where TRACE (red solid line) reaches ~0.85, while CoT Monitoring (blue dashed line) reaches ~0.65. The right plot shows F1 Score vs Training Steps (20-60) for IC, where TRACE (red solid line) reaches ~0.8, while CoT Monitoring (blue dashed line) reaches ~0.7. Both plots have 'No Hacking' (grey) and 'Hacking' (orange) regions.
+
+Figure 12: Detection under partial loophole training for Qwen2.5-3B-Instruct with RM (left) and IC (right) loophole in math. TRACE consistently outperforms CoT monitoring during training.
+
+**Setup 2: Detect Hacking on Model Trained with Partial Loopholes** Figure 12 shows detection results for a hacking model trained on math data mixed with loophole and no-loophole samples
+
+{7}------------------------------------------------
+
+across two loophole types. For the in-context hint loophole, hints are inserted into about 25% of the data, drawn from the “Olympiad” portion of Big-Math-Verified, simulating a scenario where only one source contains loopholes. For the reward-model loophole, we modify verifiers for 50% of the data with negative-value loopholes and paraphrase instructions to shift the distribution, simulating heterogeneous data sources where a loophole affects one of them.
+
+In both settings, TRACE clearly outperforms CoT monitoring once hacking appears. TRACE quickly rises above 0.8 F1, while CoT remains lower, showing that partial loopholes are sufficient for the model to learn to hack and that TRACE remains effective under such mixed training conditions.
+
+## 5 CASE STUDY: DEBUG TRAINING ENVIRONMENT LOOPHOLE
+
+How can we find potential loopholes in a dataset? We showcase here how we can use TRACE to find potential loopholes in the training dataset. Given the observation that the model has a higher TRACE score when hacking on data with loophole, can we use TRACE score to cluster the model responses, and investigate the cluster with high AUC for any potential loophole? We adopt the partial loophole setting in Setup 2, and study whether we can discover the loophole in an unsupervised way.
+
+Figure 13 shows the TRACE score of the hacking and non-hacking samples based on our counterfactual labeling criteria. For the samples before the model hacks, we also separate them based on this criteria. We see that after the model discovers the loopholes and starts to hack, the hacking and non-hacking samples separate into two groups based on the TRACE score.
+
+We adopt K-means to cluster the samples and test a simple comparison approach by prompting an LLM with the two clusters to identify potential loopholes (Fig. 14). (See exact clustering and prompting setup in App.I). Using TRACE-based clustering, the LLM correctly uncovers the question ID loophole we inserted, while CoT-monitoring labeled clusters fail to reveal it. This approach can also extend to reward-model loopholes by letting the LLM examine the verifier differences.
+
+
+
+Figure 13: A line graph showing Mean TRACE Score (Y-axis, 0 to 100) versus Training Step (X-axis, 0 to 60). The graph shows two data series: 'Hacking Cases' (red line with circles) and 'Non-hacking Cases' (blue line with circles). The 'Hacking Cases' series starts at approximately 30 at step 0, rises sharply after step 25 (marked 'Hacking starts @ 25'), and plateaus around 85-90. The 'Non-hacking Cases' series remains relatively flat, starting around 30 and ending around 35. Shaded regions represent confidence intervals.
+
+Figure 13: Once the model starts to learn to hack, the hacking and non-hacking samples are separated into two clusters based on TRACE score.
+
+Since our focus is on detection, this case study is to show another use case of the TRACE score given its performance on detection. Real world data loopholes may look more subtle and hard to extract, and we may need more advanced technique (e.g. Zhong et al. (2022), Zhong et al. (2026)) that are designed for comparing and extracting patterns from the text clusters.
+
+
+
+Figure 14: A diagram illustrating the use of TRACE score clustering for loophole discovery. On the left, a box asks 'Is there any exploitable patterns or loophole in cluster 1 compared to cluster 2?'. Below it are two stack icons: 'High AUC Cluster' and 'Low AUC Cluster', each containing 'Verifier / Task Context'. An arrow points from the 'High AUC Cluster' to a robot icon. Next to the robot is a pink speech bubble containing the text: '“There is a hint in the context.” / “The verifier rewards negative value.”'. To the right, two boxes compare clustering methods: 'Using TRACE for Clustering' and 'Using CoT Monitor for Clustering'. The TRACE box lists '1. Identified Loopholes in Cluster 0' as 'Template Format Exploitation' and 'Numbered Problem Structure: All Cluster 0 problems begin with explicit numbers (e.g., “1050”, “4”, “16”, “108”) suggesting they come from standardized problem sets or textbooks'. The CoT Monitor box lists '1. Identified Loopholes in Cluster 0' as 'A. Template-Based Mathematical Problem Types' and 'Pattern: Cluster 0 heavily features standardized mathematical problem categories with well-established solution templates: ...'.
+
+Figure 14: Using TRACE score clustering for loophole discovery. An LLM judge can identify our synthetic loophole based on the TRACE score clusters.
+
+## 6 RELATED WORK
+
+**Reward Hacking Detection** Reward hacking—where agents exploit unintended loopholes in the reward function—has been studied in RL and reasoning settings (Skalse et al., 2022; Laidlaw et al.,
+
+{8}------------------------------------------------
+
+2024). Baker et al. (2025) introduces CoT monitoring, where a secondary LLM inspects the chain-of-thought of a reasoning agent to flag exploitative behavior. They show that this outperforms outcome-only monitors, though strong optimization pressure leads models to learn obfuscated hacking—hides intent within the CoT. In response to covert reward hacking, Turpin et al. (2025) proposes Verbalization Fine-Tuning (VFT), training models to explicitly admit when they use reward hacks, and increasing the rate of detectable verbalization reduces undetected exploit usage.
+
+**Hidden Reasoning** A key challenge for CoT-based oversight is that the reasoning text may not reflect the actual decision process. Turpin et al. (2023) shows that LLMs often ignore biasing features in their explanations, rationalizing decisions without acknowledging hidden clues—even when the decisions themselves depend on those clues. Pfau et al. (2024); Roger & Greenblatt (2023) show that model can learn to hide the reasoning process from the CoT under deliberate fine-tuning. Chen et al. (2025) extend this observation in RL-fine-tuned agents, finding that models can exploit subtle input cues while preserving plausible CoTs. Emmons et al. (2025); METR (2025a) argue that even “unfaithful” CoTs contain partial signal for monitoring where reasoning is necessary for success. Meanwhile, recent reports by METR (2025b) note that frontier models increasingly engage in reward hacking in creative ways, making monitoring challenging. Liu et al. (2026) further shows that hidden reasoning happens mostly in resource-rich languages but poorly in low-resource ones.
+
+## 7 DISCUSSION
+
+**More Realistic and Complex Loophole** Our simulated loopholes are necessarily simplified and therefore do not capture the full complexity of real-world datasets or evaluation loopholes. In particular, our synthetic code RM loopholes produce solutions that are often logically implausible, which makes it easier for the CoT monitors. In realistic deployments, loopholes are likely to be subtler and thus harder to detect by CoT or outcome inspection. Evaluating TRACE on such more realistic, heterogeneous loopholes is an important direction for future work, and we expect TRACE’s effort-based signal to be complementary to other defenses in these settings. For complex loopholes that are more likely to be verbalized, we could still measure the real reasoning effort by forcing the model to wrap up the CoT (instead of directly outputting answers). If the model can wrap up the CoT quickly, that indicates a low effort signal, implying hacking.
+
+**Monitor Scale and Scalable Oversight** We find that monitor capacity matters: larger monitors generally improve CoT-based detection (Fig.1 & 17), but in our experiments the monitored (hacking) models were substantially smaller than the largest monitors. This asymmetry is important in practice: as deployed models grow in capability, detection becomes harder even for very large external monitors, since stronger models can develop subtler exploitation strategies: In Fig.10 & 17, the F1 score decreases as we detect stronger hacking models. Our method offers a complementary perspective: because TRACE only relies on the model’s own outputs, it does not require an external monitor to scale faster than the agent itself. In this sense, TRACE contributes to the goal of scalable oversight Bowman et al. (2022)—auditing methods that remain feasible even as models advance, without relying on ever larger external monitoring resources.
+
+**Task Difficulty and Format** Our method is designed for reasoning tasks that rely on inference time exploration to reach the final answer. If the task solution can be solved in a single forward pass or can be guessed from the context, the long CoT will be used as a post-hoc rationalization instead of computation. For example, we observed that the model will rely less on the CoT when we train the model on closed-ended questions, such as multiple-choice questions and the word puzzle game Knight & Knave (Xie et al., 2024). The model is probably hacking by guessing from the candidate answers, resulting in the model trained with closed-ended questions performing poorly under question perturbation (Xie et al., 2024).
+
+**CoT Optimization Pressure** Given the observation that the model can obtain the proxy reward early in the CoT when hacking, one would consider mitigating reward hacking by penalizing the responses with a high TRACE score during training. However, similar to recent findings that the model learns to obfuscate CoT when CoT monitor signal is included in reward design (Baker et al., 2025), we expect that the optimization pressure will encourage the model to generate hacking responses
+
+{9}------------------------------------------------
+
+with low TRACE score: only exhibit hacking behavior under the full CoT. We leave empirical investigation on this research question for future work.
+
+**Overthinking** Overthinking is an issue that could inflate the TRACE score, because the model may produce overly long reasoning traces on easy problems even when it already has the correct internal belief during CoT (Zhang et al., 2025). If the model learns this overthinking behavior during RL training, it may tend to overthink on samples in general, which raises the TRACE score as a whole. Therefore, one possible solution is to calibrate the TRACE score by comparing the TRACE scores of RL-trained model with the initial model on a set of clean questions without loopholes, to measure the extent of score inflation caused by overthinking. This could help calibrate the hacking detection threshold. We leave this calibration against overthinking to future work.
+
+**Reasoning Effort** In this paper, we use the Truncated Reasoning AUC score as a proxy for the model’s relative internal reasoning effort, compared to what is presented in the CoT. We also encourage future work to design other approaches to measure the model’s internal reasoning effort, which may be more computationally efficient. One recent work by Chen et al. (2026) uses the ratio of “deep think tokens” as a measure of reasoning effort, where deep think tokens are defined as tokens whose predictions undergo sustained revision in the deep layers before converging. We are interested in seeing whether alternative measures of internal reasoning effort can also effectively detect implicit reward hacking.
+
+**Limitation** Our experiments focus primarily on reward-model loopholes learned during training; we did not exhaustively study cases in which a non-hacking policy at inference time can already recognize and exploit an in-context hint. TRACE uses the initial-policy TRACE score as a detection threshold; if the initial policy already exhibits hacking behavior on some samples by hacking in-context, this raises the baseline and can reduce sensitivity. Practical mitigations include (i) calibrating the threshold on a small curated validation set of examples believed to be free of loopholes, or (ii) adopting robust statistical thresholds (e.g., percentile-based cutoffs or mixed-checkpoints baselines). We leave the systematic evaluation of these mitigation strategies to future work.
+
+## CONCLUSION
+
+We present TRACE as a promising method for detecting reward hacking in reasoning tasks, when the CoT is not verbalizing the hacking intention and is hard to catch by a text-based monitor. We demonstrate the effectiveness of the method in math and code tasks across two different types of loopholes: in-context loopholes and reward model loopholes. We also showcase how we can discover unknown loopholes from a dataset by clustering with TRACE scores. We hope our method provides a new perspective for reward hacking detection and inspires follow-up research in AI control and oversight.
+
+## ACKNOWLEDGMENTS
+
+We thank members of the ML2 group at NYU for their inputs at various stages of the project. XW and BP are supported by ERC Consolidator Grant DIALECT 101043235. NJ, RA and HH are supported by the AI Safety Fund and Open Philanthropy. This work is supported in part through the NYU IT High Performance Computing resources, services, and staff expertise. We also thank the LMU-NYU Research Cooperation Program for supporting XW’s research stay at NYU.
+
+## REFERENCES
+
+- Arash Ahmadian, Chris Cremer, Matthias Gallé, Marzieh Fadaee, Julia Kreutzer, Olivier Pietquin, Ahmet Üstün, and Sara Hooker. Back to basics: Revisiting reinforce style optimization for learning from human feedback in llms, 2024. URL .
+- AI@Meta. Llama 3 model card. 2024. URL [https://github.com/meta-llama/llama3/blob/main/MODEL\\_CARD.md](https://github.com/meta-llama/llama3/blob/main/MODEL_CARD.md).
+- Alon Albalak, Duy Phung, Nathan Lile, Rafael Rafailov, Kanishk Gandhi, Louis Castricato, Anikait Singh, Chase Blagden, Violet Xiang, Dakota Mahan, and Nick Haber. Big-math: A large-scale,
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/HA8vzzT6Ax.txt b/papers/HA8vzzT6Ax.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7dcb6c83d7763bdb67252df3d01b590285cd94cc
--- /dev/null
+++ b/papers/HA8vzzT6Ax.txt
@@ -0,0 +1,300 @@
+
+
+{0}------------------------------------------------
+
+# IMPROVING THE TRADE-OFF BETWEEN WATERMARK STRENGTH AND SPECULATIVE SAMPLING EFFICIENCY FOR LANGUAGE MODELS
+
+Weiqing He\*, Xiang Li\*, Li Shen†, Weijie Su†, Qi Long†
+
+University of Pennsylvania
+
+weiqingh@sas.upenn.edu, lx10077@upenn.edu,
+
+{li.shen@pennmedicine, suw@wharton}.upenn.edu, qlong@upenn.edu
+
+## ABSTRACT
+
+Watermarking is a principled approach for tracing the provenance of large language model (LLM) outputs, but its deployment in practice is hindered by inference inefficiency. Speculative sampling accelerates inference, with efficiency improving as the acceptance rate between draft and target models increases. Yet recent work reveals a fundamental trade-off: higher watermark strength reduces acceptance, preventing their simultaneous achievement. We revisit this trade-off and show it is not absolute. We introduce a quantitative measure of watermark strength that governs statistical detectability and is maximized when tokens are deterministic functions of pseudorandom numbers. Using this measure, we fully characterize the trade-off as a constrained optimization problem and derive explicit Pareto curves for two existing watermarking schemes. Finally, we introduce a principled mechanism that injects pseudorandomness into draft-token acceptance, ensuring maximal watermark strength while maintaining speculative sampling efficiency. Experiments further show that this approach improves detectability without sacrificing efficiency. Our findings uncover a principle that unites speculative sampling and watermarking, paving the way for their efficient and practical deployment.1
+
+## 1 INTRODUCTION
+
+In the era of generative AI, data provenance has become a pressing concern in academia, journalism, and everyday content creation, where ensuring authenticity is both responsible and critical (Weidinger et al., 2022; Starbird, 2019; Milano et al., 2023; Shumailov et al., 2024). Watermarking offers a principled solution: it embeds verifiable signals into generated text by modifying the token sampling process with a recoverable pseudorandom number and a carefully designed sampling strategy (Aaronson, 2023; Kirchenbauer et al., 2023; Kuditipudi et al., 2024). A good watermarking scheme should embed a strong watermark signal, namely the dependence between sampled tokens and pseudorandom numbers. The degree of this dependence, referred to as watermark strength, directly affects detection efficiency (Li et al., 2025+). However, deploying watermarking in large-scale LLM inference faces two major bottlenecks: tokens are generated sequentially, each requiring a full forward pass, and the lack of parallelization leaves GPUs underutilized. Together, these bottlenecks make watermarking slow and inefficient in real-world deployment.
+
+Speculative sampling addresses these bottlenecks by accelerating autoregressive generation without compromising quality (Chen et al., 2023; Leviathan et al., 2023; Xu et al., 2024). It employs two models: a lightweight draft model that rapidly proposes multiple candidate tokens, and a larger target model that verifies them in parallel. If most draft tokens are accepted, computation is greatly reduced; if not, the target model must regenerate them, negating the speedup. The acceptance process is stochastic, with its probability determined by how closely the draft model’s proposals align with the target model’s distribution (Yin et al., 2024). Thus, high efficiency requires the two distributions to
+
+\*Equal contribution.
+
+†Corresponding authors.
+
+1Code is available at .
+
+{1}------------------------------------------------
+
+be sufficiently similar, ensuring a high acceptance rate. Unfortunately, Hu & Huang (2024) show that, when watermarking is combined with speculative sampling, it is impossible to simultaneously achieve both the highest acceptance rate and the strongest watermarking strength—a rather discouraging result that suggests a fundamental trade-off between watermark strength and sampling efficiency.
+
+In this work, we ask whether and how this seemingly unavoidable trade-off can be overcome, trying to pave the way for more efficient deployment of watermarking under speculative sampling. We revisit the impossibility result and identify a potential path forward. A key limitation in (Hu & Huang, 2024) is that watermark strength is defined in a binary manner: watermarking is considered preserved if and only if each token’s distribution exactly matches a designated watermarked distribution. This definition, however, doesn’t quantify how each token is coupled with a recoverable pseudorandom number. As a result, it overlooks intermediate levels of watermark strength, preventing a nuanced characterization of the trade-off and leaving open the possibility for improvement.
+
+**Contributions.** Building on this observation, we make the following contributions:
+
+- **Quantifying watermark strength.** We introduce a quantitative measure of watermark strength for unbiased watermarks, defined as the expected KL divergence between the watermarked and original token distributions. We show that this measure governs the decay rate of $p$ -values, is upper bounded by the entropy of the original distribution, and attains its maximum precisely when tokens are deterministic functions of pseudorandom numbers. Notably, both OpenAI’s (Aaronson, 2023) and Google’s (Dathathri et al., 2024) watermarking schemes achieve this maximal strength.
+- **Characterizing the trade-off.** Based on this measure, we formalize the trade-off curve as the Pareto frontier between watermark strength and (speculative) sampling efficiency. Here, sampling efficiency is quantified by the acceptance rate, following prior work (Hu et al., 2024). For illustration, we show that when both the draft and target models are “linearly” watermarked, this frontier can be characterized by solving a constrained convex optimization problem that maximizes watermark strength subject to a sampling efficiency requirement. Importantly, this formulation is general and can be applied in a plug-and-play manner to any watermarking schemes. As examples, we illustrate the trade-off curves for OpenAI’s and Google’s watermarking methods.
+- **Improving the trade-off.** Finally, we propose a principled mechanism to overcome this trade-off by applying pseudorandom draft-token acceptance. We prove that it achieves maximal watermark strength while preserving speculative sampling efficiency, and empirically verify that it improves detectability under the same efficiency, offering a constructive path toward practical deployment.
+
+**Paper organization.** The remainder of this paper is organized as follows. Section 2 reviews preliminaries on watermarking, speculative sampling, and the previous trade-off. Section 3 introduces a quantitative measure of watermark strength and uses it to fully characterize the trade-off. Section 4 presents our mechanism for improving the trade-off. Section 5 presents experimental results that validate our mechanism. Due to space constraints, we defer the discussion of related work to Appendix A, and provide all proofs in Appendix B and D.
+
+## 2 PRELIMINARIES
+
+For a token $w$ in the vocabulary $\mathcal{W}$ , let $\mathbf{P}$ denote its distribution. A watermarking scheme can be viewed as a tractable way to modify $\mathbf{P}$ using pseudorandomness (Hu et al., 2024). Specifically, it samples $w \sim \mathbf{P}_\zeta$ from a modified distribution $\mathbf{P}_\zeta := \mathcal{S}(\mathbf{P}, \zeta)$ , where $\zeta$ is a pseudorandom variable and $\mathcal{S}$ is a carefully designed decoding function. A scheme (or decoder) is said to be unbiased if averaging over pseudorandomness recovers the original distribution, i.e., $\mathbb{E}_\zeta[\mathbf{P}_\zeta] = \mathbf{P}$ . During detection, the task is to decide whether an observed token sequence comes from the original distribution or its watermarked modification. This naturally leads to the hypothesis testing problem:
+
+$$H_0 : w \sim \mathbf{P} \text{ and } w \perp \zeta \text{ versus } H_1 : w \sim \mathbf{P}_\zeta = \mathcal{S}(\mathbf{P}, \zeta). \quad (1)$$
+
+The key idea is to test for statistical dependence between $w$ and the pseudorandom number $\zeta$ . Under $H_0$ , no watermark is embedded and $w$ is independent of $\zeta$ , while under $H_1$ the watermarking mechanism induces a structured dependence. In what follows, we illustrate this framework with two popular watermarking schemes.
+
+**Gumbel-max watermark.** The most influential unbiased watermark is the Gumbel-max watermark (Aaronson, 2023). It is built on the Gumbel-max trick, a widely used sampling method for multinomial
+
+{2}------------------------------------------------
+
+distributions (Gumbel, 1948; Maddison et al., 2014; Jang et al., 2016). The trick generates a set of independent uniform random variables $\zeta = (U_w)_{w \in \mathcal{W}}$ for each token in the vocabulary $\mathcal{W}$ , and ensures that $\arg \max_{w \in \mathcal{W}} \frac{\log U_w}{P_w}$ follows the original distribution $\mathbf{P} \equiv (P_w)_{w \in \mathcal{W}}$ . Building on this observation, Aaronson (2023) proposed the following decoder: $\mathbf{P}_\zeta = \mathcal{S}^{\text{gum}}(\mathbf{P}, \zeta)$ where
+
+$$(\mathcal{S}^{\text{gum}}(\mathbf{P}, \zeta))(w) = \begin{cases} 1, & \text{if } w = \arg \max_{w' \in \mathcal{W}} \frac{\log U_{w'}}{P_{w'}}, \\ 0, & \text{otherwise.} \end{cases} \quad (2)$$
+
+By construction, this watermarking scheme is unbiased (Li et al., 2025).
+
+**SynthID watermark.** The SynthID watermark, proposed by Google (Dathathri et al., 2024), is based on a novel categorical sampling rule called tournament sampling. For a given number of tournament rounds $m$ , the pseudorandom numbers is a collection of $m$ random vectors, given by $\zeta = (g_i)_{i=1}^m$ , where each $g_i = (g_{i,w})_{w \in \mathcal{W}}$ is a binary vector with entries independently drawn from Bernoulli(0.5). Under the *two-candidate version* of SynthID (the version we use throughout all discussions), the modified distribution can be defined as $\mathbf{P}_\zeta = \mathcal{S}^{\text{syn}}(\mathbf{P}, \zeta)$ , with
+
+$$\mathcal{S}^{\text{syn}}(\mathbf{P}, \zeta) = \mathcal{T}_{g_m} \circ \dots \circ \mathcal{T}_{g_1}(\mathbf{P}), \quad (3)$$
+
+where $\mathcal{T}_g$ is the operator
+
+$$(\mathcal{T}_g(\mathbf{P}))(w) = P_w \cdot \left( 1 + g_w - \sum_{w': g_{w'}=1} P_{w'} \right). \quad (4)$$
+
+Dathathri et al. (2024) show that $\mathcal{T}_g(\mathbf{P})$ corresponds to the distribution of the winner in a one-versus-one match: two tokens $w_1, w_2$ are drawn independently from $\mathbf{P}$ , and the winner is the one with the larger pseudorandom bit value $g_w$ . If $g_{w_1} = g_{w_2}$ , the tie is broken uniformly at random. Repeating this tournament for $m$ rounds with independent vectors $g_i$ yields $\mathcal{S}^{\text{syn}}(\mathbf{P}, \zeta)$ as the distribution of the final winner token.
+
+**Speculative sampling.** Speculative sampling accelerates LLM inference by first drawing a draft token $w'$ from $\mathbf{Q}$ and then checking it against the target distribution $\mathbf{P}$ (Chen et al., 2023). The draft token is accepted with probability $\min\{1, P_{w'}/Q_{w'}\}$ ; if it is rejected, a replacement token is sampled from a residual distribution proportional to the excess mass of $\mathbf{P}$ over $\mathbf{Q}$ . This accept/reject process induces a transition kernel on top of $\mathbf{Q}$ :
+
+$$\mathcal{A}(w|w') = \begin{cases} \min\left(1, \frac{P_w}{Q_w}\right), & \text{if } w' = w, \\ \frac{(P_w - Q_w)_+}{\sum_z (P_z - Q_z)_+} \cdot \left(1 - \frac{P_{w'}}{Q_{w'}}\right)_+, & \text{if } w' \neq w, \end{cases} \quad (5)$$
+
+where $(x)_+ := \max\{x, 0\}$ . We denote this kernel as $\mathcal{A}_{\text{spec}}(\mathbf{Q}, \mathbf{P})$ . By construction, applying it on top of $\mathbf{Q}$ recovers the target distribution: $\mathbf{P} = \mathcal{A}_{\text{spec}}(\mathbf{Q}, \mathbf{P}) \circ \mathbf{Q}$ . The acceptance rate under this scheme is $\mathbb{P}(\text{the initial } w' \text{ is not rejected}) = \sum_w \min\{P_w, Q_w\}$ , which is the maximum achievable among all kernels that preserve $\mathbf{P}$ (see Lemma 3.1).
+
+**Definition 2.1** (Sampling efficiency). *Given a draft $\mathbf{Q}_\zeta$ and transition kernel $\mathcal{A}_\zeta$ ,2 the sampling efficiency is the expected acceptance rate:*
+
+$$\text{SE}(\mathbf{Q}_\zeta, \mathcal{A}_\zeta) = \mathbb{E}_\zeta \left[ \sum_{w \in \mathcal{W}} \mathcal{A}_\zeta(w|w) Q_{\zeta,w} \right].$$
+
+**An “inevitable” trade-off.** Hu & Huang (2024) prove that speculative sampling cannot simultaneously maintain watermark strength and achieve maximal efficiency. Efficiency is measured by the expected acceptance rate (Def. 2.1), while watermark strength is defined in a binary manner. For any target distribution $\mathbf{P}$ and an unbiased decoder $\mathcal{S}$ , let $\mathbf{P}_\zeta = \mathcal{S}(\mathbf{P}, \zeta)$ be the watermarked token distribution. Watermark strength is preserved only if there exists a pair $(\mathcal{S}', \mathcal{A}_\zeta)$ such that $\mathcal{A}_\zeta \circ \mathbf{Q}_\zeta = \mathbf{P}_\zeta$ exactly for all pairs $(\mathbf{Q}, \mathbf{P})$ with $\mathbf{Q}_\zeta = \mathcal{S}'(\mathbf{Q}, \zeta)$ . Here, the decoder $\mathcal{S}'$ could be different from $\mathcal{S}$ . Under this condition, the sampling efficiency is strictly below the maximum achievable: there must exist a pair $(\mathbf{Q}, \mathbf{P})$ such that
+
+$$\text{SE}(\mathbf{Q}_\zeta, \mathcal{A}_\zeta) < \sup_{(\mathbf{Q}'_\zeta, \mathcal{A}'_\zeta)} \left\{ \text{SE}(\mathbf{Q}'_\zeta, \mathcal{A}'_\zeta) : \mathbb{E}_\zeta[\mathbf{Q}'_\zeta] = \mathbf{Q}, \mathbb{E}_\zeta[\mathcal{A}'_\zeta \circ \mathbf{Q}'_\zeta] = \mathbf{P} \right\}. \quad (6)$$
+
+Conversely, if equality holds in (6) for all pairs $(\mathbf{Q}, \mathbf{P})$ , watermark strength is necessarily lost, i.e., $\mathcal{A}_\zeta \circ \mathbf{Q}_\zeta \neq \mathbf{P}_\zeta$ for some pair $(\mathbf{Q}, \mathbf{P})$ .
+
+2We use $\mathcal{A}_\zeta$ to denote a general transition kernel, which is not necessarily dependent on pseudorandomness.
+
+{3}------------------------------------------------
+
+## 3 COMPLETE THE TRADE-OFF CURVE
+
+### 3.1 QUANTIFICATION OF WATERMARK STRENGTH
+
+As introduced in Section 2, prior work (Hu & Huang, 2024) does not fully characterize the trade-off, as it lacks a quantitative notion of watermark strength. Their framework defines strength in a binary way: it is considered preserved only if the actual token distribution exactly matches a designated watermarked distribution. This overlooks the essential idea that strength should capture how strongly each token depends on pseudorandomness, rather than just distributional equivalence. Consequently, intermediate levels of strength cannot be represented, preventing a more nuanced trade-off analysis. Our first contribution is to introduce a quantitative definition of watermark strength, enabling a precise and continuous characterization of this trade-off.
+
+**Definition 3.1.** *For a watermarking scheme that samples tokens from the modified distribution $P_\zeta = \mathcal{S}(P, \zeta)$ , its watermark strength is defined as*
+
+$$\text{WS}(P_\zeta) = \mathbb{E}_\zeta [D_{\text{KL}}(P_\zeta \| P)] = \mathbb{E}_\zeta \left[ \sum_{w \in \mathcal{W}} P_{\zeta, w} \log \frac{P_{\zeta, w}}{P_w} \right]. \quad (7)$$
+
+where $D_{\text{KL}}(P_\zeta \| P)$ denotes the Kullback-Leibler (KL) divergence between the watermarked distribution $P_\zeta$ and the original distribution $P$ . From an information theory perspective, this definition can also be viewed as the conditional KL divergence, and under the unbiasedness condition $\mathbb{E}_\zeta [P_\zeta] = P$ , it is equivalent to the mutual information $I(w; \zeta)$ .
+
+**Remark 3.1.** *Watermark strength is conceptually different from the detection efficiency studied in (Li et al., 2025). Watermark strength quantifies the ideal detectability assuming the true token distributions $P_t$ are known, whereas the latter considers worst-case efficiency when each $P_t$ is believed to fall into a prior class without this assumption. As a result, two schemes with comparable watermark strength may still differ in detection efficiency, depending on their sensitivity around the true token distribution. In practice, the Bayesian posterior detection rule in (Dathathri et al., 2024) may help bridge this gap, as it implicitly learns the token distributions from prior data.*
+
+**Interpretation in terms of sample complexity.** We now explain why the notion of watermark strength in Def. 3.1 is meaningful: it directly quantifies the difficulty of watermark detection. In particular, detection can be formulated as a hypothesis testing problem (cf. Eq. (1)), where the task is to distinguish the original distribution $P$ from its watermarked version $P_\zeta$ . Intuitively, greater watermark strength makes this test easier. The next theorem formalizes this intuition by showing that the average watermark strength determines the exponential decay rate of the $p$ -value under the uniformly most powerful test (i.e., the likelihood ratio test), and thus the sample complexity required to reach a prescribed significance level.
+
+**Theorem 3.1** (Sample complexity via $p$ -value decay). *Let $\alpha \in (0, 1)$ and $w_{1:n} = (w_1, \dots, w_n)$ . Consider the hypothesis testing problem based on $n$ independent samples:*
+
+$$H_0 : w_{1:n} \sim P_1 \otimes \cdots \otimes P_n \text{ with } w_t \perp \zeta_t \forall t \text{ versus } H_1 : w_{1:n} \sim P_{1, \zeta_1} \otimes \cdots \otimes P_{n, \zeta_n},$$
+
+where each $\zeta_t$ is i.i.d., and the log-likelihood ratios $Z_t := \log \frac{P_{\zeta_t}(w_t)}{P_t(w_t)}$ are independent, uniformly bounded, and admit a common neighborhood around zero where their moment generating functions are finite. Assume that the average KL divergence converges: $\underline{D} := \lim_{n \rightarrow \infty} \frac{1}{n} \sum_{t=1}^n \mathbb{E}_\zeta [D_{\text{KL}}(P_{t, \zeta} \| P_t)] < \infty$ . Then, under $H_1$ , the $p$ -value of the likelihood ratio test, which is the uniformly most powerful (UMP) test, satisfies
+
+$$\lim_{n \rightarrow \infty} -\frac{1}{n} \log(\text{p-value}) = \underline{D}, \quad \text{in probability.}$$
+
+In particular, to guarantee the $p$ -value $\leq \alpha$ , it is necessary that $n \geq \frac{1}{\underline{D}} \log \left( \frac{1}{\alpha} \right) (1 + o(1))$ .
+
+**Maximum watermark strength.** A natural question is which watermarking schemes achieve the largest watermark strength, as defined in Def. 3.1. The next theorem shows that for unbiased watermarks, the maximum is attained if and only if the modified token distribution $P_\zeta$ is degenerate—namely, for each pseudorandom number $\zeta$ , all probability mass is placed on a single token, so the generated token is a deterministic function of $\zeta$ .
+
+{4}------------------------------------------------
+
+**Theorem 3.2** (Maximum watermark strength). *If $\mathbb{E}_\zeta[P_\zeta] = P$ , it follows that*
+
+$$WS(P_\zeta) = \text{Ent}(P) - \mathbb{E}_\zeta[\text{Ent}(P_\zeta)] \leq \text{Ent}(P) := - \sum_{w \in \mathcal{W}} P_w \log P_w.$$
+
+*Equality holds if and only if $\text{Ent}(P_\zeta) = 0$ almost surely.*
+
+Interestingly, both the Gumbel-max watermark and the SynthID watermark (in the limit as $m \rightarrow \infty$ ) attain this upper bound.
+
+**Theorem 3.3.** *The Gumbel-max watermark and the SynthID watermark (as $m \rightarrow \infty$ ) achieve the maximum watermark strength in Thm. 3.2.*
+
+### 3.2 TRADE-OFF CURVES AND EXAMPLES
+
+**Formulation of trade-off curves.** Suppose the unwatermarked draft model is $Q$ and the unwatermarked target model is $P$ . An unbiased decoder from a family $\mathcal{Q}_{\text{draft}}$ transforms $Q$ into a watermarked draft $Q_\zeta := \mathcal{S}_{\text{draft}}(Q, \zeta)$ , where $\zeta$ is a pseudorandom number. A transition kernel $\mathcal{A}_\zeta$ then rectifies $Q_\zeta$ so that the final distribution $P_\zeta := \mathcal{A}_\zeta \circ Q_\zeta$ remains unbiased, i.e., $\mathbb{E}_\zeta[P_\zeta] = P$ . With these components in place, we can now introduce the trade-off curve, which is defined in terms of watermark strength (Def. 3.1) and sampling efficiency (Def. 2.1).
+
+**Definition 3.2** (Trade-off curve). *The trade-off curve is a function $T$ that maps an efficiency requirement $r$ (a lower bound on the sampling efficiency) to the largest achievable watermark strength:*
+
+$$L(r) = \max_{\mathcal{S}_{\text{draft}} \in \mathcal{Q}_{\text{draft}}, \mathcal{A}_\zeta} \text{WS}(P_\zeta) \quad \text{s.t.} \quad P_\zeta = \mathcal{A}_\zeta \circ Q_\zeta, \quad \mathbb{E}_\zeta[P_\zeta] = P, \quad \text{SE}(Q_\zeta, \mathcal{A}_\zeta) \geq r.$$
+
+**Lemma 3.1** (Speculative sampling is optimal). *Fix a draft model $Q_\zeta$ and a target model $P_\zeta$ , we define the speculative sampling efficiency (SSE) between them as*
+
+$$\text{SSE}(Q_\zeta, P_\zeta) := \sup_{\mathcal{A}_\zeta} \{\text{SE}(Q_\zeta, \mathcal{A}_\zeta) : P_\zeta = \mathcal{A}_\zeta \circ Q_\zeta\} = \text{SE}(Q_\zeta, \mathcal{A}_{\text{spec}}(Q_\zeta, P_\zeta)).$$
+
+*If $\mathbb{E}_\zeta[Q_\zeta] = Q$ and $\mathbb{E}_\zeta[P_\zeta] = P$ , then $\text{SSE}(Q_\zeta, P_\zeta) \leq 1 - \text{TV}(Q, P) = \text{SSE}(Q, P)$ .*
+
+As a high level, Def. 3.2 defines the trade-off curve as the Pareto frontier of the achievable region in the plane of watermark strength versus sampling efficiency. Each boundary point gives the strongest watermark attainable under an efficiency requirement $r$ . While the definition allows arbitrary kernels $\mathcal{A}_\zeta$ , the objective depends only on the induced distribution $P_\zeta = \mathcal{A}_\zeta \circ Q_\zeta$ . Lemma 3.1 shows that for any fixed $P_\zeta$ , the speculative sampler $\mathcal{A}_{\text{spec}}(Q_\zeta, P_\zeta)$ achieves the maximal efficiency among all $\mathcal{A}_\zeta$ realizing $P_\zeta$ . Thus, replacing $\mathcal{A}_\zeta$ with $\mathcal{A}_{\text{spec}}(Q_\zeta, P_\zeta)$ preserves watermark strength and never decreases the efficiency. Therefore, without loss of generality, the trade-off curve can be studied by restricting to $\mathcal{A}_\zeta = \mathcal{A}_{\text{spec}}(Q_\zeta, P_\zeta)$ and working directly with $P_\zeta$ .
+
+Conceptually, we can view $P_\zeta$ as the output of an unbiased decoder $\mathcal{S}_{\text{target}}$ from a family $\mathcal{Q}_{\text{target}}$ (in parallel to $Q_\zeta$ ). With this simplification, the trade-off curve can be reformulated as
+
+$$L(r) = \max_{\mathcal{S}_{\text{draft}} \in \mathcal{Q}_{\text{draft}}, \mathcal{S}_{\text{target}} \in \mathcal{Q}_{\text{target}}} \text{WS}(P_\zeta) \quad \text{s.t.} \quad \text{SSE}(Q_\zeta, P_\zeta) \geq r. \quad (8)$$
+
+This formulation is clean and implementation-friendly: once the families $\mathcal{Q}_{\text{draft}}$ and $\mathcal{Q}_{\text{target}}$ are specified, solving (8) yields a concrete visualization of the complete trade-off curve.
+
+**Remark 3.2.** *In many cases, the final distribution $P_\zeta := \mathcal{A}_\zeta \circ Q_\zeta$ admits an explicit closed form. For instance, in (Hu & Huang, 2024), it uses $P_\zeta := \mathcal{A}_{\text{spec}}(Q, P) \circ Q_\zeta$ to achieve the highest sampling efficiency. Such an explicit formula can naturally be regarded as defining a decoder $\mathcal{S}_{\text{target}}$ , and all schemes of this type can be collected into the family $\mathcal{Q}_{\text{target}}$ .*
+
+**An example trade-off curve.** Now we turn to visualizing the trade-off curve in (8) for two popular watermarking schemes. As discussed earlier, it suffices to specify two families of unbiased decoders for $Q$ and $P$ , respectively. To make this concrete, we consider the linearly watermarked classes
+
+$$\mathcal{Q}_{\text{draft}} = \{(1 - \theta)\text{Id} + \theta \mathcal{S}_{\text{draft}} : \theta \in [0, 1]\}, \quad \mathcal{Q}_{\text{target}} = \{(1 - \gamma)\text{Id} + \gamma \mathcal{S}_{\text{target}} : \gamma \in [0, 1]\}, \quad (9)$$
+
+where $\text{Id}$ denotes the identity decoder that leaves the distribution unchanged, and $\mathcal{S}_{\text{draft}}, \mathcal{S}_{\text{target}}$ are prescribed unbiased decoders. In this construction, if we write $Q_\zeta := \mathcal{S}_{\text{draft}}(Q, \zeta)$ and $P_\zeta :=$
+
+{5}------------------------------------------------
+
+
+
+Figure 1: Trade-off curves between watermark strength and sampling efficiency for simulated (Q, P) pairs. The figure consists of two panels. The left panel shows curves for linearly watermarked classes (9), with the y-axis 'Watermark Strength' ranging from 0.0 to 2.0 and the x-axis 'Sampling Efficiency' from 0.60 to 0.70. The right panel shows curves for other classes, including Hu's and Google's, with the y-axis ranging from 1.00 to 2.00 and the x-axis from 0.60 to 0.70. Both panels include markers for Gumbel-max (orange square), SynthID (blue triangle), Linear class (solid black line), Hu's class (dashed black line), Google's class (dotted black line), WS maintained (blue circle), SE maintained (purple circle), Std. SpecSamp. (green cross), and Optimum (red star).
+
+Figure 1: Trade-off curves between watermark strength and sampling efficiency for simulated $(Q, P)$ pairs. **Left:** Curves for the linearly watermarked classes (9). **Right:** Curves for other classes, including Hu’s class (Hu & Huang, 2024) and Google’s class (Dathathri et al., 2024). Orange and blue denote Gumbel-max and SynthID, respectively. Here, solid, dashed, and dotted lines correspond to different classes. Markers indicate the boundary point of each curve.
+
+$S_{\text{target}}(\mathbf{P}, \zeta)$ , then identifying the trade-off curve $(r, L(r))$ amounts to finding its inverse curve $(L^{-1}(\rho), \rho)$ , where $L^{-1}(\rho)$ is given by
+
+$$\begin{aligned} L^{-1}(\rho) &= 1 - \frac{1}{2} \min_{\gamma, \theta} \mathbb{E}_{\zeta} \|(1 - \theta)\mathbf{Q} + \theta\mathbf{Q}_{\zeta} - (1 - \gamma)\mathbf{P} - \gamma\mathbf{P}_{\zeta}\|_1 \\ \text{s.t.} \quad &\mathbb{E}_{\zeta} [\text{Ent}((1 - \gamma)\mathbf{P} + \gamma\mathbf{P}_{\zeta})] \leq \rho. \end{aligned} \quad (10)$$
+
+One can derive this formulation (10) by combining Defs. 2.1 and 3.1 with the transition kernel in (5) and the identity $\sum_w \min\{P_w, Q_w\} = 1 - \text{TV}(\mathbf{P}, \mathbf{Q}) = 1 - \frac{1}{2}\|\mathbf{P} - \mathbf{Q}\|_1$ .
+
+The map $(\gamma, \theta) \mapsto \|(1 - \theta)\mathbf{Q} + \theta\mathbf{Q}_{\zeta} - (1 - \gamma)\mathbf{P} - \gamma\mathbf{P}_{\zeta}\|_1$ is convex, since it is the $\ell_1$ norm of an affine function. By contrast, entropy is concave, so the feasible set of (10) is not convex in general. Yet when $S_{\text{target}}$ is degenerate (so $\mathbf{P}_{\zeta}$ is almost surely a point mass), $\mathbb{E}_{\zeta}[\text{Ent}((1 - \gamma)\mathbf{P} + \gamma\mathbf{P}_{\zeta})]$ decreases monotonically in $\gamma$ . In this case, the constraint reduces to $\gamma \geq \gamma_0$ , where $\gamma_0$ is the unique threshold satisfying $\mathbb{E}_{\zeta}[\text{Ent}((1 - \gamma_0)\mathbf{P} + \gamma_0\mathbf{P}_{\zeta})] = \rho$ , and the problem (10) simplifies to
+
+$$L^{-1}(\rho) = 1 - \frac{1}{2} \min_{\theta \in [0, 1], \gamma \in [\gamma_0, 1]} \mathbb{E}_{\zeta} \|(1 - \theta)\mathbf{Q} + \theta\mathbf{Q}_{\zeta} - (1 - \gamma)\mathbf{P} - \gamma\mathbf{P}_{\zeta}\|_1.$$
+
+**Comparisons of trade-off curves.** In Fig. 1, we plot the trade-off curves for simulated $Q$ and $P$ (see Appendix C.1 for the details). The left panel shows the curve for the linearly watermarked classes (9). The green cross at the lower right marks the sampling efficiency of standard speculative sampling, and the two blue points mark the watermark strengths achieved by Gumbel-max and SynthID, respectively. Unless stated otherwise, we set tournament rounds $m = \infty$ for SynthID. As shown in Thm. 3.3, both watermarks attain the same maximal watermark strength, so the blue points lie on the same horizontal line.
+
+The right panel shows trade-off curves for two additional classes: one from Hu & Huang (2024) (“Hu’s class”) and one from Dathathri et al. (2024) (“Google’s class”). While the original works describe how to attain the endpoints of these curves, our framework connects them via a similar linearly interpolated class (see Appendix C.2 for explicit expressions), enabling direct comparison. The results show that *Google’s class achieves higher watermark strength than Hu’s at matched sampling efficiency, yet neither reaches the theoretical optimum (red star)*. Moreover, when we set $m = 30$ —a practical choice for SynthID—and apply it to Google’s class, the watermark strength drops below that of Gumbel-max (see the lower gray curve), consistent with Thm. 3.3. This is expected, as the maximal watermark strength is attained only in the limit $m \rightarrow \infty$ .
+
+## 4 IMPROVING THE TRADE-OFF CURVE
+
+### 4.1 BREAKING THE TRADE-OFF THROUGH PSEUDORANDOM ACCEPTANCE
+
+**Motivation.** With the complete trade-off curve established in Section 3, we now ask whether it can be broken—that is, whether speculative sampling can be used in watermarking to simultaneously
+
+{6}------------------------------------------------
+
+#### **Algorithm 1** Fast watermarked speculative sampling with pseudorandom acceptance
+
+---
+
+```
+
+1: Given: lookahead $K$ , output length $N$ , target model $P$ , draft model $Q$ , initial prompt $w_{1:n}$ , watermarked models $Q_{\zeta^D} := \mathcal{S}(Q, \zeta^D)$ and $P_{\zeta^T} := \mathcal{S}(P, \zeta^T)$ , residual sampler $(P - Q)_{+, \zeta^T} := \mathcal{S}((P - Q)_+, \zeta^T)$ , and pseudorandom generator $G$ .
+2: while $n < N$ do ▷ Draft $K$ tokens under the watermarked draft model
+3: for $s = 1$ to $K$ do
+4: Sample draft token $\tilde{w}_s \sim Q_{\zeta_{n+s}^D}(\cdot \mid w_{1:n}, \tilde{w}_{1:s-1})$ .
+5: end for
+6: In parallel: compute $K + 1$ sets of target logits from draft tokens, i.e., $P(\cdot \mid w_{1:n})$ , $P(\cdot \mid w_{1:n}, \tilde{w}_1)$ , $\dots$ , $P(\cdot \mid w_{1:n}, \tilde{w}_{1:K})$ .
+7: for $s = 1$ to $K$ do ▷ Sequentially try to accept each draft token
+8: Compute pseudorandom $U(0, 1)$ variable: $u_{n+s} \leftarrow G(\zeta_{n+s}^R) \in (0, 1)$ .
+9: if $u_{n+s} < \min\{1, \frac{P(\tilde{w}_s \mid w_{1:n})}{Q(\tilde{w}_s \mid w_{1:n})}\}$ then
+10: Accept: set $w_{n+1} \leftarrow \tilde{w}_s$ ; $n \leftarrow n + 1$ .
+11: else
+12: Reject: sample $w_{n+1} \sim (P - Q)_{+, \zeta_n^T}(\cdot \mid w_{1:n})$ ; $n \leftarrow n + 1$ ; break.
+13: end if
+14: end for
+15: if all $\tilde{w}_1, \dots, \tilde{w}_K$ were accepted then ▷ Bonus step as in speculative decoding
+16: Sample one extra token $w_{n+1} \sim P_{\zeta_n^T}(\cdot \mid w_{1:n})$ ; $n \leftarrow n + 1$ .
+17: end if
+18: end while
+
+```
+
+---
+
+attain the largest watermark strength and the highest sampling efficiency (SSE). From Lemma 3.1, the maximal SSE for a draft-target pair $(Q, P)$ is $1 - \text{TV}(Q, P)$ . Existing approaches that achieve this bound rely on the transition kernel $\mathcal{A}_{\text{spec}}(Q, P)$ in (5), which accepts a draft token $w'$ with probability $\min\{1, P_{w'}/Q_{w'}\}$ (Hu & Huang, 2024; Dathathri et al., 2024). However, this mechanism leaves residual randomness; even with full knowledge of the pseudorandomness in both the watermarked draft and target models, the final token is not predetermined, since it may or may not be the draft token depending on the acceptance coin flip. This inherent randomness weakens watermark strength, because under Def. 2.1, any distribution attaining maximal watermark strength must be degenerate, placing all its mass on a single token. Motivated by this observation, we propose a new approach that preserves both goals: we make the *acceptance decision itself* pseudorandom, so that the entire generation process becomes a deterministic function of pseudorandom variables.
+
+**Algorithm description.** We formally present our method in Alg. 1. The algorithm is driven by a pseudorandom variable with three components $\zeta = (\zeta^D, \zeta^T, \zeta^R)$ . The first two components, $\zeta^D$ and $\zeta^T$ , determine the watermarked distributions: $\zeta^D$ controls sampling from the draft model $Q_{\zeta^D}$ , while $\zeta^T$ controls sampling from the target model $P_{\zeta^T}$ and from the residual distribution $(P - Q)_{+, \zeta^T}$ when draft tokens are rejected. The third component, $\zeta^R$ , governs acceptance decisions for draft tokens. In particular, at each step $s$ , we compute the acceptance variable $u_t = G(\zeta_t^R)$ , where $G$ is a pseudorandom number generator producing values uniformly in $[0, 1]$ . Additionally, to further ensure the unbiasedness of the entire generated sequence, we apply repeated context masking (Hu et al., 2024; Dathathri et al., 2024; Hu & Huang, 2024) in Alg. 1, which skips watermarking for repeated contexts.
+
+The key difference from (Dathathri et al., 2024) is that the acceptance variable $u$ is now pseudorandom rather than truly random (line 8). As a result, Alg. 1 becomes a fully deterministic function of pseudorandom variables, with no external randomness involved. We show that this modification preserves unbiasedness and, in theory, attains the maximal possible SSE (Thm. 4.1).
+
+**Theorem 4.1.** *Focus on a single intermediate step $s$ and omit the index for brevity. Let $P$ be a target model and $Q$ a draft model. Assume the decoder $S$ is unbiased and achieves the largest watermark strength (hence it is degenerate by Thm. 3.2). Define the target and draft watermarked distributions by $P_{\zeta^T} = \mathcal{S}(P, \zeta^T)$ and $Q_{\zeta^D} = \mathcal{S}(Q, \zeta^D)$ respectively. Let $\mathcal{A}_\zeta$ denote the transition kernel introduced in Alg. 1, and let $P'_\zeta$ denote the distribution of the output token with $\zeta := (\zeta^D, \zeta^T, \zeta^R)$ . Suppose $\zeta^D, \zeta^T$ , and $\zeta^R$ are independent. Then the following properties hold:*
+
+{7}------------------------------------------------
+
+- (a) **Unbiasedness:** for every token $w \in \mathcal{W}$ , we have $\mathbb{E}_\zeta[\mathbf{P}_\zeta^t(w)] = \mathbf{P}(w)$ .
+- (b) **Maximum sampling efficiency:** $\text{SE}(\mathbf{Q}_{\zeta^D}, \mathbf{A}_\zeta) = 1 - \text{TV}(\mathbf{Q}, \mathbf{P})$ .
+- (c) **Maximum watermark strength:** $\text{WS}(\mathbf{P}_\zeta^t) = \text{Ent}(\mathbf{P})$ .
+
+### 4.2 DETECTION UNDER PSEUDORANDOM ACCEPTANCE
+
+Alg. 1 introduces a new pseudorandom component $\zeta^R$ , which can also be used to enhance watermark detection. As discussed in Remark 3.1, *watermark strength is conceptually distinct from detection efficiency (detectability)*. While Thm. 4.1 shows that our algorithm preserves the maximum sampling efficiency and attains the maximum watermark strength—thus breaking the trade-off in theory—this does not guarantee optimal detection efficiency. In principle, the most powerful detector is the log-likelihood ratio test, but it is impractical since it requires access to the true token distributions $\mathbf{P}_t$ (Huang et al., 2023; Li et al., 2025). Nonetheless, the extra information encoded in $\zeta^R$ reduces uncertainty about the token generation process and can therefore improve detectability. Next, we show how to use $\zeta^R$ to improve detectability for Gumbel-max and SynthID. In Section 5, we provide empirical evidence that our method indeed enhances detection efficiency.
+
+**Gumbel-max watermark.** As described in Section 2, the pseudorandom variables for the Gumbel-max watermark (i.e., $\zeta_t^D, \zeta_t^T$ ) assign i.i.d. $U(0, 1)$ values to all tokens, and the decoder selects the token $w_t$ that solves the argmax in (2). For detection, the corresponding $U(0, 1)$ value is extracted as a test statistic (Aaronson, 2023). When watermarked, it tends to concentrate near one; otherwise, it remains uniform. With speculative sampling, however, two candidate statistics arise for each token $w_t$ : one from the draft model ( $y_t^D \in \mathbb{R}$ ) and one from the target model or the residual distribution ( $y_t^T \in \mathbb{R}$ ). In our algorithm, $w_t$ comes from the draft model iff $u_t = G(\zeta_t^R) \leq \tau$ (see line 9 in Alg. 1)3, we naturally select $y_t$ by
+
+$$y_t = y_t^D \mathbf{1}_{G(\zeta_t^R) < \tau} + y_t^T \mathbf{1}_{G(\zeta_t^R) \geq \tau}, \quad (11)$$
+
+where $\tau$ is calibrated on a held-out validation set by grid-searching over candidate values and selecting the one that achieves the highest true positive rate (TPR) under the desired false positive rate (FPR). In contrast, without access to $u_t$ , one must rely on the empirical acceptance rate (Dathathri et al., 2024), selecting
+
+$$y_t = y_t^D \text{ with probability } p, \quad y_t = y_t^T \text{ with probability } 1 - p, \quad (12)$$
+
+where $p$ is estimated from observed acceptance rates. After $y_t$ is chosen, detection proceeds by applying the classic test of Aaronson (2023), which flags watermarking when $\sum_t -\log(1 - y_t)$ is stochastically larger than expected. We refer to the detector based on rule (11) as **Ars- $\tau$** and the one based on rule (12) as **Ars-Prior**. Empirically, the two differ in efficiency.
+
+**SynthID watermark.** A similar challenge of selecting the correct test statistic (i.e., the pseudorandom numbers that generated token $w_t$ ) also arises in the SynthID watermark. Recall that each pseudorandom variable $\zeta_t^P = (g_{t,1}^P)_{i=1}^m$ consists of $m$ random binary vectors, and the test statistic is defined as $y_t^P = (g_{t,1}^P(w_t), \dots, g_{t,m}^P(w_t)) \in \mathbb{R}^m$ , which collects the $w_t$ -th components of all vectors; the counterpart $y_t^T \in \mathbb{R}^m$ is defined analogously. The key detection principle is that, for the correct pseudorandom variable (e.g., $y_t^P$ ), entries are biased toward one, while for the incorrect one they remain uniformly random in $\{0, 1\}$ . This bias stems from the tournament sampling process: since the winning token must repeatedly have larger $g$ -values across $m$ rounds, the final $w_t$ tends to carry more ones in its associated vector.
+
+In the prior detection of Dathathri et al. (2024), a Bayesian scoring neural network in $\mathbb{R}^m$ is trained, and under speculative sampling, the two scores from $y_t^P$ and $y_t^T$ are combined through a simple weighted average (see Appendix E for the details). This averaging dilutes the signal and reduces detection efficiency. In contrast, our algorithm has access to the acceptance variable $u_t$ , which, while not directly revealing the source model of $w_t$ , carries signals about whether the token was generated by the draft or target model. Since the exact threshold (i.e., $\min\{1, P_w/Q_w\}$ ) separating the two cases is unknown, we treat this as a binary classification problem: given $(y_t^P, y_t^T)$ and $u_t$ , a
+
+3Note that the tokens generated during bonus steps are not controlled by the acceptance variable. However, as long as the lookahead $K$ is not very small (e.g., $K = 1$ ), the sampling process rarely enters a bonus step, so its impact on detection is negligible in practice.
+
+{8}------------------------------------------------
+
+three-layer perceptron (MLP) is trained to select the correct statistic rather than averaging. We refer to this enhanced method as **Bayes-MLP**, and to the prior approach as **Bayes-Prior**.
+
+## 5 EXPERIMENTS
+
+
+
+Figure 2: Three panels showing experimental results. Left: Bar chart of Average Accepted Tokens Per Step (AATPS) for Gumbel-max, SynthID, and Std. SpecSAMPL for K=2, 3, 4. Middle: ROC curve for Gumbel-max watermark detectability (TPR@FPR=1%) vs Number of Tokens. Right: ROC curve for SynthID watermark detectability (TPR@FPR=1%) vs Number of Tokens. Both ROC curves compare Ars-T, Ars-Prior, and Oracle methods.
+
+Figure 2: **Left:** Average Accepted Tokens Per Step (AATPS) of Alg. 1 applied to the Gumbel-max and SynthID watermarks, compared with Standard Speculative Sampling (Std. SpecSAMPL). Error bars mark the 95% confidence intervals. **Middle and Right:** Watermark detectability (TPR at FPR = 1%) for Alg. 1 on the Gumbel-max (middle) and SynthID (right). Orange curves show our method, blue curves show the prior-based method, and black curves represent the ideal detector (Oracle) that always selects the correct test statistic. Shaded regions indicate the 95% confidence intervals.
+
+In this section, we show that Alg. 1 simultaneously improves watermark detectability and attains the highest speculative-sampling efficiency. We evaluate Gumbel-max and SynthID ( $m = 30$ ) on the EL15 dataset (Fan et al., 2019) for the question-answering task and use two draft-target model pairs: Llama-68M & Llama-7B (Miao et al., 2024; Touvron et al., 2023) and Gemma-2B & Gemma-7B (Team et al., 2024). In each pair, the larger model serves as the target and the smaller model as the draft. We report results for the Llama pair in the main text and defer the Gemma results to the Appendix (see Fig. 3). We compare our methods, **Ars-T** and **Bayes-MLP**, against the baselines **Ars-Prior** and **Bayes-Prior** (see Section 4.2 for definitions). Besides, we also evaluate Alg. 1 on the C4 dataset (Raffel et al., 2020) for the open-ended generation task with the same model settings, and the results are provided in Appendix F.2.
+
+Following (Hu & Huang, 2024), we measure sampling efficiency by Average Accepted Tokens per Step (AATPS) from Alg. 1. From the algorithm, at least one token is generated each step, so AATPS lies in $[1, K + 1]$ . We report results for $K \in \{2, 3, 4\}$ , with larger AATPS indicating higher efficiency. We measure watermark detectability using the true positive rate (TPR) at a fixed false positive rate (FPR) of 1%. To make the results more pronounced, we use lower temperatures: 0.5 for Gumbel-max and 0.7 for SynthID. Since all detection methods in Section 4.2 require training data, each experiment generates 2,000 watermarked texts, split into 1,000 for training and 1,000 for testing. For SynthID, for which the null-score distribution lacks a closed form, we additionally sample two disjoint sets of 1,000 human-written texts from EL15 as unwatermarked training and test data.
+
+**Sampling efficiency is maintained.** The left panel of Fig. 2 shows that, for both Gumbel-max and SynthID, Alg. 1 preserves sampling efficiency: the measured AATPS closely matches the standard speculative-sampling baseline. Exact numbers are provided in the Appendix (see Tab. 1 and 2).
+
+**Improved detectability.** The middle and right panels of Fig. 2 show that, for both watermarks, our method attains higher TPR with fewer tokens, demonstrating that pseudorandom acceptance variables enhance watermark detectability. Also, we present the corresponding ROC curves in Fig. 4 and 7, which further corroborate this improvement by providing a more comprehensive characterization of detection performance. Besides, we include an oracle-performance curve representing an ideal detector that always selects the correct test statistic. The results show a gap between our method and this theoretical upper bound—consistent with the analysis in Section 4.2—but the gap is not large, and our method approaches the oracle performance at a token length of 200.
+
+Additionally, we report the Per Token Time (PTT) in milliseconds to evaluate empirical runtime, and the results confirm that Alg. 1 indeed provides acceleration compared to basic unbiased watermarking
+
+{9}------------------------------------------------
+
+methods (without speculative sampling). We also compute the Log Perplexity (LOGPPL) to verify the unbiasedness property of Alg. 1; the results show that it preserves the underlying output distribution and therefore does not degrade the language model’s output quality. All results are presented in Tab. 1 and 2.
+
+## 6 CONCLUSION
+
+In this work, we revisited the trade-off between watermark strength and speculative sampling efficiency. We introduced a quantitative notion of watermark strength that links directly to statistical detectability, moving beyond prior binary definitions. With this measure, we cast the trade-off as a constrained optimization problem and derived explicit Pareto curves for existing schemes. Building on these insights, we proposed a principled mechanism that injects pseudorandomness into draft-token acceptance. We proved it achieves maximal watermark strength while preserving speculative sampling efficiency, and we empirically verified improved detectability at the same efficiency.
+
+Our findings suggest several practical directions. First, although we focus on standard speculative sampling, the framework points toward potential extensions to variants such as tree-based methods (Miao et al., 2024; Cai et al., 2024), which could further accelerate generation. Second, while we consider several common decoder classes, future work can explore broader $(Q_{\text{draft}}, Q_{\text{target}})$ choices—for example, using different decoders for the draft and target models. Third, our current work directly applies to unbiased degenerate watermarks, but it is an open and interesting direction to investigate how to extend our framework and establish similar improvements to non-degenerate watermarks and even biased ones. In this way, one might have a larger toolbox to trade off generation quality for stronger detection in the context of speculative sampling. Finally, given that human edits can weaken watermark signals (Sadasivan et al., 2023; He et al., 2024a; Li et al., 2025+), investigating the impact of pseudorandom acceptance on robustness to editing is an open direction for future work.
+
+## ACKNOWLEDGMENTS
+
+This work was supported in part by NIH grants R01AG071174, U01CA274576, R01EB036016, R01EB037101, U01AG066833, R01LM014731, and P30AG073105, NSF grant DMS-2310679, a Meta Faculty Research Award, and Wharton AI for Business. The content is solely the responsibility of the authors and does not necessarily represent the official views of the NIH.
+
+## ETHICS STATEMENT
+
+This work studies the interaction between watermarking and speculative sampling in large language models (LLMs). Our research does not involve human subjects or personally identifiable information, and all experiments are conducted using publicly available models and datasets. The purpose of this work is to improve the transparency, traceability, and efficiency of LLM outputs, which we believe aligns with responsible AI development. We are not aware of any foreseeable negative societal impacts from this research.
+
+## REPRODUCIBILITY STATEMENT
+
+We have taken several steps to ensure the reproducibility of our results. All theoretical claims are stated with clear assumptions, and full proofs are provided in Appendix B and D. The experimental setup, including model pairs, datasets, and evaluation protocols, is described in detail in Section 4.2 and 5, with additional details provided in Appendix C, E, and F. To further support reproducibility, we provide anonymized source code for running experiments as supplementary material.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/HHYd4Pz5Lp.txt b/papers/HHYd4Pz5Lp.txt
new file mode 100644
index 0000000000000000000000000000000000000000..2da2e78f93208eb03f7ed4ec1057bca3648e4930
--- /dev/null
+++ b/papers/HHYd4Pz5Lp.txt
@@ -0,0 +1,312 @@
+
+
+{0}------------------------------------------------
+
+# DELREC: LEARNING DELAYS IN RECURRENT SPIKING NEURAL NETWORKS.
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Spiking neural networks (SNNs) are a bio-inspired alternative to conventional real-valued deep learning models, with the potential for substantially higher energy efficiency. Interest in SNNs has recently exploded due to a major breakthrough: surrogate gradient learning (SGL), which allows training SNNs with backpropagation, strongly outperforming other approaches. In SNNs, each synapse is characterized not only by a weight but also by a transmission delay. While theoretical works have long suggested that trainable delays significantly enhance expressivity, practical methods for learning them have only recently emerged. Here, we introduce “DelRec”, the first SGL-based method to train axonal or synaptic delays in recurrent spiking layers. DelRec leverages a differentiable interpolation technique to handle non-integer delays with well-defined gradients at training time. We show that trainable recurrent delays outperform feedforward ones, leading to new state-of-the-art (SOTA) on two challenging temporal datasets (Spiking Speech Command, an audio dataset, and Permuted Sequential MNIST, a vision one), and match the SOTA on the now saturated Spiking Heidelberg Digit dataset using only vanilla Leaky-Integrate-and-Fire neurons with stateless (instantaneous) synapses. Our results demonstrate that recurrent delays are critical for temporal processing in SNNs and can be effectively optimized with DelRec, paving the way for efficient deployment on neuromorphic hardware with programmable delays. Our code is available at .
+
+## 1 INTRODUCTION
+
+Inspired by the architecture and dynamics of biological neural networks, Recurrent Spiking Neural Networks (RSNNs) provide a compelling and energy-efficient framework for processing time-varying data. Their recurrent structure enables them to maintain an internal state, integrating information over extended periods, an essential capability for tasks involving temporal dependencies, such as speech recognition and time-series prediction (Bellec et al., 2018). However, despite their promise, RSNNs remain underutilized in machine learning due to significant training challenges, particularly the pervasive issues of vanishing and exploding gradients.
+
+Recent advancements have sought to address these limitations by enhancing the models of spiking neurons (Yin et al., 2021; Bittar & Garner, 2022; Baronig et al., 2025). Innovations such as adaptive leaky integrate-and-fire (AdLIF) models and other sophisticated neuron dynamics have led to notable improvements, achieving state-of-the-art performance on widely used spiking neural network benchmarks. Yet, these neuron-centric approaches put their emphasis on modulating current inputs, rather than reactivating past signals, which limits their ability to model extended temporal dynamics.
+
+An alternative approach involves incorporating transmission delays in synaptic connections, a feature observed in biological systems. In the brain, these delays are modulated by myelin, an insulating sheet around axons that accelerates conduction speeds. Evidence further indicates that myelin levels are plastic (Monje, 2018). Delays enhance network expressivity: neurons detect coincident spike time latencies, which, in the presence of heterogeneous delays, correspond to arbitrary spike onset latency sequences. While previous studies have successfully demonstrated the benefits of using delays in feedforward connections (Shrestha & Orchard, 2018; Sun et al., 2022; 2023; Timcheek et al., 2023; Hammouamri et al., 2024; Deckers et al., 2024; Göltz et al., 2025; Ghosh et al., 2025), their
+
+{1}------------------------------------------------
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+068
+069
+070
+071
+072
+073
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+098
+099
+100
+101
+102
+103
+104
+105
+106
+107
+
+potential in recurrent connections remains largely unexplored. Recurrent delays could offer even greater advantages, facilitating self-sustained activity (see Fig. 1A), modeling long-term dependencies, and supporting complex patterns like oscillations and polychronization. Theoretical work by Izhikevich demonstrated that recurrent delays transform a neuron’s differential equation, expanding the range of possible solutions and enabling richer dynamics. Additionally, recurrent delays may mitigate gradient challenges by implementing temporal skip connections, improving gradient propagation during training (see Fig 1B).
+
+
+
+Figure 1: Optimization of a single delay in a recurrent connection. Panel A shows two neurons (pink and blue) with recurrent connections and delays. The top part shows coincidence detection where the pink neuron only spikes when both it and the blue neuron spike at t+1. The bottom part shows pattern generation where the pink neuron's recurrent delay is increased, leading to a regular firing pattern. Panel B shows computational graphs for a vanilla RNN (top) and a delayed RNN (bottom) over three time steps. The delayed RNN uses 1-time-step delays in recurrent connections to bridge distant time steps.
+
+Figure 1: A: The optimization of a single delay in a recurrent connection can transform two recurrently connected neurons in a pattern generator. Two different behaviors of two neurons with the same inputs. Each neuron is recurrently connected to itself and to the other neuron, with a weight equal to 1. The recurrent connections each have a delay, indicated by the circled number on the connection. The neurons spike if they receive inputs strictly superior to 1 spike. At time $t - 1$ , the neurons do not receive any input. The blue neuron receives an input spike at times $t$ and $t + 3$ , while the pink neuron only receives two spikes at time $t + 1$ . *Top*: The inputs trigger the firing of one spike per neuron, working as a coincidence detector for spikes reaching the two neurons in a short time interval. *Bottom*: When the delay of the pink neuron’s recurrent connection (blue arrow) is increased from 1 to 3 time steps, the same input triggers a regular and sustained firing pattern. B: Delays in recurrent connections reduce the risks of exploding or vanishing gradients by bridging distant time steps. Computational graphs of a vanilla RNN with an intrinsic delay of 1 time step in all recurrent connections (*Top*), and of a RNN with different and longer delays in the recurrent connections (*Bottom*).
+
+To date, however, only a handful of studies have explored the potential of delays in recurrent connections, and even fewer have focused on learning optimal delay configurations. Recent approaches have introduced algorithms to optimize these temporal parameters, demonstrating promising improvements in temporal tasks. For instance, Xu et al. achieved state-of-the-art results by learning a single recurrent delay parameter per layer using backpropagation. Their approach selects delays from a fixed set via a softmax function with a decreasing temperature, showcasing the potential of more flexible, parameterized methods. To the best of our knowledge, only Mészáros et al. (2025) have proposed an algorithm specifically designed to learn optimal delays in recurrent connections. Their method, tailored for the EventProp algorithm (Wunderlich & Pehle, 2021), leverages exact gradient computation. However, it inherits common limitations of EventProp, including scalability
+
+{2}------------------------------------------------
+
+challenges and suboptimal performance on real-world temporal benchmarks. Currently, all state-of-the-art spiking approaches on these benchmarks rely on surrogate gradient learning (SGL).
+
+In this paper, we introduce "DelRec", the first method to train axonal or synaptic delays in recurrent connections using surrogate gradient learning (SGL) and backpropagation. Our method operates in discrete time and eliminates the need to predefine a maximum delay range. During training, we relax the constraint of integer delays by employing a differentiable interpolation process, then round delays to the nearest integer for inference. Our approach is implemented using the Pytorch-based Spikingjelly library (Fang et al., 2023), and is compatible with any spiking neuron model. We achieved new state-of-the-art results on two challenging temporal datasets (Spiking Speech Command, an audio dataset, and Permuted Sequential MNIST, a vision one), even when using simple Leaky-Integrate-and-Fire neurons. Additionally, our study is the first to combine the optimization of feedforward delays using DCLS (Hammouamri et al., 2024) and delays in recurrent connections. We believe this work establishes a foundation for leveraging delays in recurrent networks and provides an accessible tool to explore the potential improvements offered by such methods. Our results highlight the essential role of recurrent delays in temporal processing for spiking neural networks (SNNs). Using DelRec, these delays can be optimized effectively, opening new opportunities for deployment on neuromorphic hardware equipped with programmable delays.
+
+## 2 METHODS
+
+### 2.1 NEURON MODEL
+
+Most spiking neuron models can be described by three discrete-time equations (Fang et al., 2021):
+
+$$H[t] = f(V[t - 1], I[t]), \quad (1)$$
+
+$$S[t] = \Theta(H[t] - V_{th}), \quad (2)$$
+
+$$V[t] = \begin{cases} H[t] \cdot (1 - S[t]) + V_{reset} \cdot S[t], & \text{if hard reset} \\ H[t] - V_{th} \cdot S[t], & \text{if soft reset} \end{cases}, \quad (3)$$
+
+where $f$ is the neuronal charge function (which depends on the neuron model), $I[t]$ is the input current, $H[t]$ is the membrane potential after charging but before firing, $V[t]$ is the membrane potential after firing, and $S[t]$ is the output spike. $V_{th}$ in Eq. 2 is the threshold, and $V_{reset}$ in Eq. 3 is the reset potential. $\Theta(x)$ is the Heaviside step function, i.e. $\Theta(x) = 1$ for all $x \geq 0$ , otherwise $\Theta(x) = 0$ . We use the surrogate gradient method () defining $\Theta'(x) = \sigma'(x)$ during the backward step, where $\sigma$ is the surrogate function.
+
+An example of a spiking neuron model, which is popular due to its simplicity, is the leaky integrate-and-fire neuron (LIF). The neuronal charge equation for the LIF neuron is
+
+$$f(V[t - 1], I[t]) = (1 - \frac{1}{\tau}) \cdot V[t - 1] + \frac{1}{\tau} \cdot I[t], \quad (4)$$
+
+where $\tau$ is the membrane time constant. We used the LIF neuron in all our experiments. Yet our method is compatible with any spiking neuron model that fits in the Eq. 1- 3 formalism.
+
+Our method is essentially a way to compute $I$ in the presence of delayed recurrent connections. The total input current is the sum of the feedforward input $X$ and the recurrent one $X^{rec}$ :
+
+$$I[t] = X[t] + X^{rec}[t] \quad (5)$$
+
+In a vanilla Recurrent Spiking Neural Network (RSNN), the outputs of each neuron of a layer $L$ at time $t$ are connected to the neurons of the same layer $L$ at time $t + 1$ . If we denote $\{S_j(t), j \in (L)\}$ the spikes emitted by all neurons of layer $L$ at time $t$ , then we have for a neuron $i$ of the same layer:
+
+$$X_i^{rec}[t] = \sum_{j \in (L)} w_{ij}^{rec} S_j[t - 1] \quad (6)$$
+
+where $\{w^{rec}\}$ are the local recurrent weights of layer $L$ . We extend this regular definition of a RSNN by allowing neurons to project their outputs to neurons of the same layer, but with a longer delay. To this end, we set parameters $\{d_j \in \mathbb{N}, j \in L\}$ to model the time delay in a recurrent connection.
+
+{3}------------------------------------------------
+
+More specifically, if neuron $j$ in layer $L$ emits a spike $S_j(t)$ at time $t$ , then neuron $i$ in layer $L$ will receive a recurrent input $w_{ij}^{\text{rec}} S_j(t)$ at time $t + 1 + d_j$ . As a result, we modify Eq. 6:
+
+$$X_i^{\text{rec}}[t] = \sum_{j \in (L)} w_{ij}^{\text{rec}} S_j[t - (1 + d_j)] \quad (7)$$
+
+Here, for simplicity, we assume an identical delay for all outgoing connections of a given neuron. This is referred to as “axonal delay” in the literature, and we will use this setting in all our experiments. Yet our method/code is also compatible with synaptic delays (i.e., one different delay for each synapse). In the last equation, we used the arbitrary convention that a recurrent connection has a minimum delay of 1 time-step. Therefore, in our method, a delay parameter $d = 0$ leads to an effective delay of 1 in the recurrent connection.
+
+### 2.2 LEARNING DELAYS IN RECURRENT CONNECTIONS
+
+Let’s consider one layer of $N$ different neurons, with input sequences of temporal dimension $T$ . In order to learn the delay parameters $\{d_j \in \mathbb{N}, j = 1, \dots, N\}$ , we take a “future-oriented” perspective: when a neuron $j$ fires a spike at date $t$ , we will schedule an input $w_{ij}^{\text{rec}}$ at date $t + 1 + d_j$ for all neurons $i$ of the same layer. To this end, we consider in practice $X^{\text{rec}} \in \mathbb{R}^{N \times T}$ as a scheduling matrix storing weighted spikes for future time steps. More specifically:
+
+$$X_i^{\text{rec}}[t + \tau] = \sum_{j|1+d_j=\tau} w_{ij}^{\text{rec}} S_j[t] \quad (8)$$
+
+In this framework, the parameters we learn in our method are the set of delays $d$ and the weights $w$ .
+
+However, for the purpose of optimization, we consider real-valued delays $\{d_j \in \mathbb{R}, j = 1, \dots, N\}$ , which leads to a modification of Eq. 8. If a spike is scheduled at date $t + 1 + d \in \mathbb{R}$ , we temporally spread the prediction over time steps around $t + 1 + d$ , with a triangle function $h_{\sigma,d}$ (Khalfaoui-Hassani et al., 2023) with a width parameter $\sigma$ . More specifically, for all current time steps $t$ we consider the spread prediction at the target date $t + \tau$ :
+
+$$h_{\sigma,d}(\tau) = \max(0, \frac{1 + \sigma - |\tau - (1 + d)|}{(1 + \sigma)^2}) \quad (9)$$
+
+and we decrease the parameter $\sigma$ throughout training down to 0, as depicted in Figure 2C, so that by the end of training $h_{0+,d}(\tau)$ leads to a linear interpolation between the two closest integer delay positions.
+
+Using this method, at each time step $t$ , we update future time steps of the scheduling matrix. So the prediction at a future time $t + \tau$ is updated (in the case of axonal delays) with:
+
+$$X_i^{\text{rec}}[t + \tau] \leftarrow X_i^{\text{rec}}[t + \tau] + \sum_{j=1}^N w_{ij}^{\text{rec}} \cdot h_{\sigma_{\text{epoch}}, d_j}(\tau) \cdot S_j[t] \quad (10)$$
+
+$$\leftarrow X_i^{\text{rec}}[t + \tau] + \sum_{j=1}^N w_{ij}^{\text{rec}} \cdot \max(0, \frac{1 + \sigma - |\tau - (1 + d_j)|}{(1 + \sigma)^2}) \cdot S_j[t] \quad (11)$$
+
+where $d_j$ is the axonal delay in the recurrent connection between neurons $j$ and $i$ .
+
+One can notice in Eq.15 that the function $h_{\sigma,d}(\tau)$ has a finite support $\text{supp}(h_{\sigma,d}(\tau))$ , depending only of $\sigma$ and $d$ . Indeed:
+
+$$\begin{aligned} \forall \tau, h_{\sigma,d}(\tau) = 0 &\Leftrightarrow \tau \in \text{supp}(h_{\sigma,d}) = [(1 + d) - (1 + \sigma); (1 + d) + (1 + \sigma)] \\ &= [d - \sigma; 2 + d + \sigma] \end{aligned} \quad (12)$$
+
+So, it is in fact sufficient to schedule recurrent inputs only in $\text{supp}(h_{\sigma,d})$ , and as $\sigma$ decreases during training, the range of time steps when we can schedule recurrent inputs becomes narrower. At the scale of a layer, we need to schedule inputs for multiple neurons at the same time, which means it suffices to compute and schedule inputs for a limited range of time steps $\mathbf{E}$ , such that:
+
+$$\tau \in \mathbf{E}(\sigma, D) = \bigcup_{d \in D} \text{supp}(h_{\sigma,d})$$
+
+{4}------------------------------------------------
+
+
+
+Figure 2 consists of three panels. Panel A shows a 'Spiking layer' block. It receives 'Weighted input spikes' (represented by circles with weights) and a 'Scheduled recurrent input' (represented by circles with weights). The output is 'Output spikes' (represented by circles with weights). Panel B shows a 'Neurons' matrix (y-axis) over a 'Time dimension' (x-axis). The matrix is divided into 'past' and 'future' sections. A dashed box highlights the 'Scheduled matrix' for the future. Panel C shows three plots of 'Spread value' (y-axis) over time (x-axis). The first plot is 'Beginning of training $\sigma = 5$ ' with a spread value of $d = 2.7$ . The second plot is 'End of training $\sigma = 0$ ' with a spread value of $d = 4.8$ . The third plot is 'End of training: rounded delays' with a spread value of $d = 5.0$ .
+
+Figure 2: Diagram of the spiking layer and its scheduling matrix. Panel A shows the layer structure with weighted input spikes, scheduled recurrent input, and output spikes. Panel B shows the scheduling matrix with neurons on the y-axis and time on the x-axis, with a dashed box indicating the future recurrent input. Panel C shows three plots of spread values over time for different training stages: beginning (sigma=5), end (sigma=0), and end with rounded delays.
+
+Figure 2: A: At time step $t$ , the neurons in the studied layer receive weighted spikes from the previous layer, which are then summed with the inputs scheduled for time step $t$ in the scheduling matrix.. The subsequent evolution of the internal state of the neuron (membrane potential) may produce output spikes. B: Each neuron of the layer receives a weighted sum of the output spikes, and schedules it on a spread of future dates determined by its delay parameter $d$ and the spread of the epoch $\sigma$ . Spread values are represented by the purple gradients. C: We modify the spread function at each epoch by reducing its $\sigma$ . At the beginning of training, the scheduled values are widely spread around the true delay $d$ . When the training ends, $\sigma$ is close to 0 and the spread function only performs linear interpolation between the closest integers from the floating delay. Then we manually round the delay to the closest integer in evaluation mode.
+
+with $N$ the number of neurons in the layer, and $D = \{d_j ; j = 1, \dots, N\}$ . In practice, as $\sigma$ is decreasing to 0 in Eq. 12, we ignore the lower bound of $\mathbb{E}$ , and we approximate this set with:
+
+$$\tilde{\mathbb{E}}(\sigma, D) = [0; \lceil 1 + \max_{1 \leq j \leq N} d_j + (1 + \sigma) \rceil] \supset \mathbb{E}(\sigma, D). \quad (13)$$
+
+In other words, we only need to compute and store $h_{\sigma, d}(\tau)$ for $\tau$ in $\tilde{\mathbb{E}}(\sigma, D)$ , so the scheduling matrix $X^{\text{rec}}$ has in fact a dimension of $N \times \dim(\tilde{\mathbb{E}}(\sigma, D))$ , then at time $t$ , the future recurrent input at time $t + \tau$ is updated with Eq. 11. We use $X^{\text{rec}}$ as a buffer with a pointer mechanism in order to efficiently schedule the future recurrent inputs (see Algorithm 1).
+
+The initial value of $\sigma$ allows the recurrent connections to capture broad temporal dependencies at the beginning of training and leads to a loose optimization of delays on long time scales, while the subsequent refining of $\sigma$ during training pushes the delay parameters towards more precise locations. A similar strategy was used in (Hamouamri et al., 2024). The described method is illustrated in Fig. 2 and leads to Algorithm 1, which describes the update of the internal parameters of our neuron.
+
+{5}------------------------------------------------
+
+## 3 RESULTS
+
+### 3.1 STATE-OF-THE-ART PERFORMANCE ON AUDIO AND VISION TASKS
+
+We evaluated our method on two state-of-the-art datasets: the SSC (Spiking Speech Commands) and the PS-MNIST (Permuted Sequential MNIST). The SSC dataset is a spiking audio dataset which demands leveraging temporal patterns in spike trains to reach good classification accuracies. While it is one of the most widely used datasets in the SNN community for benchmarking models' temporal processing capabilities, it also stands out as one of the largest, featuring over 100k samples across 35 classes of spoken commands. It is worth noting that this dataset has dedicated training, validation and test sets, and is far from saturated (with best accuracies around 80%). The PS-MNIST is a vision dataset which is obtained by flattening all images of the MNIST ( $28 \times 28$ ) into one sequence ( $1 \times 784$ ), and permuting the pixel positions. This transformation requires to integrate long range dependencies, making the PS-MNIST a reference benchmark to evaluate recurrent SNNs.
+
+For both datasets, our models do not include any normalization layers, and training is performed without data augmentation. Our implementation builds upon the code of Xu et al.. For the SSC dataset, we used 3 fully connected hidden layers, with 256 neurons per layer, and we train our model on 3 different seeds. For the PS-MNIST, we use one layer of 64 neurons, then 2 layers of 212 neurons, and we only test one seed as all the previous state-of-the-art models on the dataset. Complete implementation details and hyperparameters are provided in A.2.5. Table 1 summarizes the accuracies of most competitive spiking, LIF-derived models on both datasets. We deliberately leave out of this table models that rely on substantially more complex neuron models, such as multi-compartment neurons (Zheng et al., 2024; Chen et al., 2024), attention or GRU based neurons (Dampfhoffer et al., 2022; Wang et al., 2024), whose additional mechanisms make direct comparison less meaningful1.
+
+Table 1: **Classification accuracy on SSC and PS-MNIST datasets, ranked by accuracy.**
+
+| Model | Rec. | Rec. Delays | Ff. Delays | LIF | Param | Test Acc. [%] |
+|-|-|-|-|-|-|-|
+| SSC | | | | | | |
+| Adaptive RSNN (Yin et al., 2021) | ✓ | | | | 0.78M | 74.20% |
+| EventProp (Mészáros et al., 2025) | | | ✓ | ✓ | ~ 5M a | 76.1 $\pm$ 1.0% |
+| RadLIF (Bittar & Garner, 2022) | ✓ | | | | 3.9M | 77.40% |
+| cAdLIF (Deckers et al., 2024) | | | ✓ | | 0.35M | 77.60% |
+| SE-adLIF (Baronig et al., 2025) | ✓ | | | | 1.6M | 80.44 $\pm$ 0.26% |
+| DCLS (Hammouamri et al., 2024) | | | ✓ | ✓ | 2.5M | 80.69 $\pm$ 0.21% |
+| ASRC-SNN (Xu et al.) | ✓ | ✓ | ✓ | | 0.37M | 81.54%* |
+| SiLIF (Fabre et al., 2025) | ✓ | | | | 0.35M | 82.03 $\pm$ 0.25% |
+| DelRec (Rec. and Ff. delays) Ours | ✓ | ✓ | ✓ | ✓ | 0.55M | 82.190.16% |
+| DelRec (only Rec. delays) Ours | ✓ | ✓ | | ✓ | 0.37M | 82.580.08% |
+| PS-MNIST | | | | | | |
+| GLIF (Yao et al., 2022) | ✓ | | | | 0.15M | 90.47% |
+| Adaptive RSNN (Yin et al., 2021) | ✓ | | | | 0.15M | 94.30% |
+| BRF (Higuchi et al., 2024) | ✓ | | | | 69k | 95.20% |
+| ASRC-SNN (Xu et al.) | ✓ | ✓ | | ✓ | 0.15M | 95.77%* |
+| DelRec (only Rec. delays) Ours | ✓ | ✓ | | ✓ | 0.16M | 96.21% |
+
+a The parameter count is not clearly specified in the associated publication. Estimated from Figure 6.
+
+\* Results reproduced with publicly available code, using dedicated validation and test sets.
+
+Overall, DelRec models set new state-of-the-art accuracy scores on both SSC and PS-MNIST datasets and using competitive numbers of parameters. Remarkably, this performance is achieved using simple LIF neurons, in contrast to many competing approaches that rely on more complex
+
+1Dampfhoffer et al. (2022) report $77\pm 0.4\%$ on SSC using a spiking GRU, Zheng et al. (2024) report 82.46% on SSC (on only one seed) using multi-compartment neurons, Wang et al. (2024) report 83.69% on SSC (only one seed) using attention and distillation, Chen et al. (2024) report 97.78% on the PS-MNIST (one seed) with a multi-compartment neuron and using the test set as the validation set.
+
+{6}------------------------------------------------
+
+neuron models incorporating adaptive mechanisms, resonant dynamics, or structured state-space formulations. (Baronig et al., 2025; Fabre et al., 2025; Higuchi et al., 2024). This underscores the importance of incorporating synaptic delays in RSNNs (see also Hammouamri et al. (2024); Mészáros et al. (2025); Xu et al. for similar approaches) and suggests that even higher performance could be achieved by combining delays with more sophisticated neuron models. Our findings also demonstrate that optimizing synaptic delays can significantly enhance the performance of spiking models, even in recurrent networks. Furthermore, they indicate that optimizing delays in recurrent connections may yield greater benefits than optimizing feedforward delays, particularly for tasks involving long-range temporal dependencies (see Section 3.2).
+
+### 3.2 FUNCTIONAL STUDY OF DELAYS
+
+To determine whether the high accuracies in the previous section stemmed from the use of learnable recurrent delays, we compared our method with the state-of-the-art feedforward delay learning approach Hammouamri et al. (2024), and vanilla SNN architectures. It is worth noting that we are comparing synaptic feedforward delays (one delay per synapse), with axonal recurrent delays (one delay per neuron). For this study, we used much smaller models, and a much smaller dataset: SHD (Spiking Heidelberg Digits), a widely used spiking dataset (Cramer et al., 2022) of 10k recordings of spoken digits ranging from zero to nine, in English and German. This dataset demands leveraging temporal patterns in spike trains to reach good classification accuracies.
+
+We adopted the following procedure. *Validation phase*: we first verified that our method performed competitively with feedforward delays on the SHD dataset. *Simplification phase*: we then reduced the size of the layers, and simplified our networks to obtain smaller versions of state-of-the-art models, with equivalent numbers of parameters. *Comparative phase*: we set the layer sizes such that each model contains around 10k parameters, then gradually reduced the number of neurons in layers, training a separate network for each model at each step. We compared the evolution of accuracies on the SHD as a function of the parameter count. We also enforced sparsity in the networks with spikes penalization, and study models’ performance as a function of mean firing rate. Details of the architecture, parameters and training methodology can be found in A.2.3. In the next sections, we detail the results obtained during each if the phases described above.
+
+*Validation phase*: To compete with state-of-the-art models on the SHD dataset, we designed a network inspired by Hammouamri et al. (2024), incorporating delays in recurrent connections. The architecture also included regularizing modules as described in Table 3. We augmented the training data following Mészáros et al. (2025) and Nowotny et al. (2022) (see A.2.3) to reduce overfitting. In all experiments on this dataset, we used networks with 2 hidden layers of 256 neurons, but recurrent connections (and recurrent delays) only in the second layer to avoid overfitting (Fig. 3A). As with the SSC and PS-MNIST datasets, we used only simple LIF neurons. However, we compared our architectural innovation to the best-performing models, which often rely on more sophisticated intrinsic neuronal dynamics.
+
+SHD lacks a dedicated validation set, and historical evaluations of SNN performance on this dataset have relied solely on the test set. This approach is methodologically flawed and leads to an overfitting of the test set. More recent works have set more rigorous standards by using a fraction of the training set as a validation set, before reporting the best model’s accuracy on the test set (Baronig et al., 2025; Mészáros et al., 2025). In line with this effort, we use 20% of the non-augmented training set as a validation set, and we report the results we obtained on the test set in Table 2 (our models are trained on 10 different seeds). Yet, while the best models report around 93% of accuracy on the test set (using a clean split), Mészáros et al. (2025) explain that further improvements in performance are likely not statistically significant given the small size of the test set (2264) : with naive assumptions on error rates, the Bayesian confidence intervals of accuracies over 93% overlap. For all these reasons, we decided not to include SHD in Table 1.
+
+Whether using both feedforward and recurrent delays or only recurrent delays, our models achieve state-of-the-art performance on SHD. Notably, the combination of recurrent and feedforward delays yields the highest mean accuracy among our tested configurations, demonstrating the effectiveness of integrating both delay types when overfitting is controlled (here with data augmentations). Given that our method improves the state-of-the-art on larger and more challenging datasets, it suggests that the SHD dataset has become overly saturated for benchmarking the processing capabilities of
+
+{7}------------------------------------------------
+
+Table 2: **Classification accuracies on SHD using a clean split**, ranked by accuracy.
+
+| Model | Rec. | Rec. Delays | Ff. Delays | LIF | Param | Test Acc. [%] |
+|-|-|-|-|-|-|-|
+| BRF (Higuchi et al., 2024) | ✓ | | | | 0.1M | 92.70±0.70% |
+| SE-adLIF (1L) (Baronig et al., 2025) | ✓ | | | | 37.5k | 93.18±0.74% |
+| EventProp b (Mészáros et al., 2025) | | | ✓ | ✓ | ~ 1M a | 93.24±1.00% |
+| DelRec (Only Rec. delays) Oursb | ✓ | ✓ | | ✓ | 0.17M | 93.39±0.45% |
+| DelRec (Rec. and Ff. delays) Oursb | ✓ | ✓ | ✓ | ✓ | 0.24M | 93.73±0.69% |
+| DCLS b (Hammouamri et al., 2024) | | | ✓ | ✓ | 0.22M | 93.77±0.68% |
+| SE-adLIF (2L) (Baronig et al., 2025) | ✓ | | | | 0.45M | 93.79±0.76% |
+
+a The parameter count is not clearly specified in the associated publication. Estimated from Figure 5.
+
+b Models trained using augmentations.
+
+new spiking models. We therefore recommend its use only as an initial validation step for proof-of-concept studies.
+
+**Simplification phase:** In Table 2, our configuration was exactly the same as the one in DCLS-Delays, and described in A.2.3. At this stage, we focused on simplifying both models to compare them at a lower yet equivalent number of parameters. The changes between the state-of-the-art models and the small models are detailed in Table 3.
+
+Table 3: Network parameters for models used on the SHD dataset, ranked by accuracy.
+
+| Model | #Layers | Hidden | $\tau$ (ms) | BN | Bias | Epochs | Augm. | #Params |
+|-|-|-|-|-|-|-|-|-|
+| Large | 2 | 256 | 10.05 | Yes | Yes | 150 | Yes | 0.2M |
+| Small | 2 | $\leq 52$ | 20 | No | No | 30 | No | $\leq 10k$ |
+
+Additionally, we increased the learning rate to 0.1 and we applied a one cycle scheduler to the delay parameters. Feedforward delays were enabled only between the first and second hidden layers, while recurrent delays were restricted to the second hidden layer, ensuring that both types of delays operated on weighted spikes (see Fig. 3A).
+
+**Comparative phase:** Recent works suggested that delays in SNNs improved robustness under low number of parameters and sparsity constraints (Hammouamri et al., 2024; Mészáros et al., 2025). To explore this further, we performed an ablation study on the SHD dataset, evaluating model performance under varying delay settings and constraints. In total, we compared 6 different models, with the architecture presented in Figure. 3A: a vanilla SNN, a vanilla RSNN with a uniform delay of 1 time-step in recurrent connections, a model with learned feedforward delays using DCLS-delays, a RSNN with fixed random delays in recurrent connections, a model with learned delays in recurrent connections and a model with learned feedforward and recurrent delays.
+
+These studies highlight several observations regarding the role of delays. First, as theory suggests, models with either type of delays strongly outperform the equivalent architecture without delays (Fig. 3B), proving that delays, including those in recurrent connections, offer an invaluable tool for temporal structure extraction. Moreover, the comparison between a vanilla RSNN and the same network with random fixed recurrent delays illustrates how the simple introduction of delays in recurrent connections mitigates the training difficulties of RSNNs due to gradient issues.
+
+Second, our results in Fig. 3C indicate that under low parameters constraints, a model with recurrent delays consistently outperforms all other models, with accuracy degrading less steeply as network size decreases. It suggests that recurrent delays allow for more efficient use and reuse of temporal information when representational capacity is limited. In contrast, we found no advantage in using both types of delays in these small configurations, despite this combination achieving our highest score on the SHD with larger models (Table. 2). However, Fig. 3 reveals a tradeoff between accuracy and energy consumption : while recurrent delays achieve better performance than feedforward delays for an equivalent number of parameters and without firing rate constraints, we found that feedforward delays reached their best accuracies with a lower mean firing rate than recurrent delays
+
+{8}------------------------------------------------
+
+
+
+Figure 3 consists of three panels. Panel A is a schematic of the network architecture: inputs are linearly mapped to a first hidden layer, which is then linearly mapped to a second hidden layer. The second hidden layer can incorporate feedforward delays and recurrent connections with delays. The final output is linearly mapped. Panel B is a bar chart showing SHD test accuracies (%) for various models: Vanilla RNN (10k parameters, ~40%), Vanilla SNN (11k parameters, ~60%), Learned feedforward and recurrent delays (10k parameters, ~75%), Learned feedforward delays (10k parameters, ~80%), Fixed recurrent delays (10k parameters, ~78%), and Learned recurrent delays (10k parameters, ~82%). Panel C contains two line graphs. The top graph shows SHD test accuracies (%) vs. Number of parameters (2k to 10k) for four models: Vanilla SNN (blue), Vanilla RNN (green), Feedforward delays (red), and Recurrent delays (purple). The bottom graph shows SHD test accuracies (%) vs. Mean spiking rate (0.05 to 0.09) for the same four models. Shaded areas represent the standard error mean (sem).
+
+Figure 3: A: Diagram of network architecture showing inputs, linear layers, and hidden layers with feedforward and recurrent delays. B: Bar chart of SHD test accuracies for different models. C: Line graphs of SHD test accuracies vs. number of parameters and mean spiking rate.
+
+Figure 3: A: The generic architecture of networks used in this part. We use 2 hidden layers, with the inputs simply linearly mapped to the first layer, and the same for the readout. The linear mapping between the first and the second hidden layers can incorporate feedforward delays, and the neurons in the second layer can have recurrent connections, possibly with delays. B: Histogram of model accuracy on the SHD. The values on top of the bars are the number of parameters in the models. C: Model accuracy on the SHD as a function of the number of parameters in the network (top), and as a function of the mean number of spikes per neuron per time-step (bottom). The shaded areas represent the standard error mean (sem). For more details see A.3.
+
+required for the same performance. Though the model with recurrent delays achieves its best accuracy under an already low energy cost (0.08 spikes per neuron per time-step), our study suggest that feedforward delays can provide a more energy-efficient alternative when computational efficiency is preferred over performance.
+
+Finally, in line with the findings of Hammouamri et al. (2024) with DCLS-Delays, we observe in Fig. 3B that the benefit of learning delays in recurrent connections is relatively small, yet consistent and significant, underlining the utility of optimizing recurrent dynamics for temporal processing.
+
+## 4 CONCLUSION
+
+This work introduces a new method (DelRec) to optimize delays in the recurrent connections of spiking neural networks with surrogate gradient learning and backpropagation, leveraging differentiable interpolation and a progressive spike scheduling process. Using the simplest spiking neuron model, i.e., a LIF with instantaneous synapses, DelRec outperforms the previous state-of-the-art accuracy on both the PS-MNIST vision dataset and the SSC audio dataset, two widely recognized benchmarks for evaluating temporal processing capabilities. Moreover, we present a study suggesting that recurrent delays can achieve better performance than feedforward delays. We believe that further improvements could be obtained by using more complex neurons with DelRec, and by better combining DelRec with feedforward delays. Finally, our method also offers new tools for modeling neural populations dynamics in the brain and could offer insights on how delays shape sensory processing.
+
+{9}------------------------------------------------
+
+## 5 REPRODUCIBILITY STATEMENT
+
+All the results presented in this work can be reproduced using the anonymous repository: . We used publicly available datasets, downloadable at the following address: . We also used the PS-MNIST dataset, which directly derived from Pytorch’s MNIST. Our implementation builds upon the Spiking Jelly framework (Fang et al., 2023), an open-source library providing optimized tools for developing spiking neural networks. The hyperparameters we used are provided in the Appendix (see A.2.5), and can also be found in the configuration files of our repository. Finally, our results were produced using NVIDIA A100 GPUs for the SSC and PS-MNIST datasets, and NVIDIA A40 GPUs for the SHD dataset.
+
+## REFERENCES
+
+- Markus Baronig, Romain Ferrand, Stefan Sabathiel, et al. Advancing spatio-temporal processing through adaptation in spiking neural networks. *Nature Communications*, 16: 5776, 2025. doi: 10.1038/s41467-025-60878-z. URL .
+- Guillaume Bellec, Darjan Salaj, Anand Subramoney, Robert Legenstein, and Wolfgang Maass. Long short-term memory and learning-to-learn in networks of spiking neurons. *CoRR*, abs/1803.09574, 2018. URL .
+- Alexandre Bittar and Philip N. Garner. A surrogate gradient spiking baseline for speech command recognition. *Frontiers in Neuroscience*, 16, 2022. ISSN 1662-453X. doi: 10.3389/fnins.2022.865897. URL .
+- Xinyi Chen, Jibin Wu, Chenxiang Ma, Yinsong Yan, Yujie Wu, and Kay Chen Tan. Pmsn: A parallel multi-compartment spiking neuron for multi-scale temporal processing. *arXiv preprint arXiv:2408.14917*, 2024.
+- Benjamin Cramer, Yannik Stradmann, Johannes Schemmel, and Friedemann Zenke. The heidelberg spiking data sets for the systematic evaluation of spiking neural networks. *IEEE Transactions on Neural Networks and Learning Systems*, 33(7):2744–2757, 2022. doi: 10.1109/TNNLS.2020.3044364.
+- Manon Dampfhoffer, Thomas Mesquida, Alexandre Valentian, and Lorena Anghel. Investigating current-based and gating approaches for accurate and energy-efficient spiking recurrent neural networks. In Elias Pimenidis, Plamen Angelov, Chrisina Jayne, Antonios Papaleonidas, and Mehmet Aydin (eds.), *Artificial Neural Networks and Machine Learning – ICANN 2022*, pp. 359–370, Cham, 2022. Springer Nature Switzerland. ISBN 978-3-031-15934-3. doi: 10.1007/978-3-031-15934-3\_30.
+- Lucas Deckers et al. Co-learning synaptic delays, weights and adaptation in spiking neural networks. *Frontiers in Neuroscience*, 18:1360300, 2024. doi: 10.3389/fnins.2024.1360300.
+- Maxime Fabre, Lyubov Dudchenko, and Emre Neftci. Structured State Space Model Dynamics and Parametrization for Spiking Neural Networks, June 2025.
+- Wei Fang, Zhaofei Yu, Yanqi Chen, Timothée Masquelier, Tiejun Huang, and Yonghong Tian. Incorporating learnable membrane time constant to enhance learning of spiking neural networks. In *Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV)*, pp. 2661–2671, 2021.
+- Wei Fang, Yanqi Chen, Jianhao Ding, Zhaofei Yu, Timothée Masquelier, Ding Chen, Liwei Huang, Huihui Zhou, Guoqi Li, and Yonghong Tian. Spikingjelly: An open-source machine learning infrastructure platform for spike-based intelligence. *Science Advances*, 9(40):eadi1480, 2023. doi: 10.1126/sciadv.adi1480. URL .
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/HvFpfea8XA.txt b/papers/HvFpfea8XA.txt
new file mode 100644
index 0000000000000000000000000000000000000000..beaad0cc7037b4c510c0b2f0fb07198ff905967d
--- /dev/null
+++ b/papers/HvFpfea8XA.txt
@@ -0,0 +1,402 @@
+
+
+{0}------------------------------------------------
+
+# DYNAMIC CONTEXT ADAPTATION FOR CONSISTENT ROLE-PLAYING AGENTS WITH RETRIEVAL-AUGMENTED GENERATIONS
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Recent advances in large language models (LLMs) have catalyzed research on role-playing agents (RPAs). However, the process of collecting character-specific utterances and continually updating model parameters to track rapidly changing persona attributes is resource-intensive. Although retrieval-augmented generation (RAG) can alleviate this problem, if a persona does not contain knowledge relevant to a given query, RAG-based RPAs are prone to hallucination, making it challenging to generate accurate responses. In this paper, we propose AMADEUS, a training-free framework that can significantly enhance persona consistency even when responding to questions that lie beyond a character’s knowledge. AMADEUS is composed of Adaptive Context-aware Text Splitter (ACTS), Guided Selection (GS), and Attribute Extractor (AE). To facilitate effective RAG-based role-playing, ACTS partitions each character’s persona into optimally sized, overlapping chunks and augments this representation with hierarchical contextual information. AE identifies a character’s general attributes from the chunks retrieved by GS and uses these attributes as a final context to maintain robust persona consistency even when answering out-of-knowledge questions. To underpin the development and rigorous evaluation of RAG-based RPAs, we manually construct CharacterRAG, a role-playing dataset that consists of persona documents for 15 distinct fictional characters totaling 976K written characters, and 450 question-answer pairs. We find that our proposed method effectively models not only the knowledge possessed by characters, but also various attributes such as personality. The code and dataset will be available at our Github.
+
+## 1 INTRODUCTION
+
+Large language models with long-context capabilities are engineered to manage lengthy input sequences, allowing them to interpret and utilize extended contextual information (OpenAI, 2025; Qwen et al., 2025; Gemini Team, 2025; 2024). Although LLMs exhibit enhanced abilities in understanding extended contexts, they still face significant challenges when handling tasks involving genuinely long contexts (Li et al., 2024a). Furthermore, utilizing all relevant information from long-context models to answer each query can be computationally expensive (Li et al., 2024b).
+
+Retrieval-augmented generation (RAG) cost-efficiently mitigates factual inaccuracies and hallucinations in responding to knowledge-intensive queries by integrating external retrieval mechanisms that provide accurate and up-to-date supporting information (Gao et al., 2023; Huang et al., 2025). However, despite these advantages of RAG, there has been little research on RAG-based role-playing agents (RPAs). Moreover, existing role-playing datasets are composed exclusively of dialogues involving characters that are difficult to collect, and there is no dataset designed for building and evaluating RAG-based RPAs.
+
+In this paper, we examine the challenges inherent in RAG-based role-playing and propose approaches. In real-world applications, users and RPAs frequently engage in conversations on topics that extend beyond the knowledge defined in the character’s persona. However, we observe that the existing RAG method tends to excessively utilize chunks that are less relevant to the question when the question is not explicitly answered by the available knowledge (Figure 1). To address this
+
+{1}------------------------------------------------
+
+
+
+Figure 1: Chunk Duplication Frequencies. A 3x5 grid of 15 cumulative distribution function (CDF) plots. Each plot compares 'Naive RAG' (orange line) and 'Our Method' (blue line) for a specific MBTI personality type: ENTJ, ESTJ, ISTJ, ISTP, INTP, ESTP, ISTP, ISTJ, ISTP, INTP, ESTP, ISTP, ISTJ, ISTP, INTP. The x-axis represents 'Chunk Duplication Frequency' and the y-axis represents 'Cumulative Distribution'. In all plots, the blue line is to the left of the orange line, indicating that 'Our Method' results in lower chunk duplication frequencies. The plots show that 'Our Method' achieves more uniform chunk usage compared to 'Naive RAG'.
+
+Figure 1: **Chunk Duplication Frequencies.** We compare the distribution of chunk duplication frequencies and chunk usage rates between **Naive RAG** and **our method** when questions involving knowledge not present in the persona document were given. We observe that when each of the 60 MBTI questions is asked to 15 fictional characters, the average chunk usage rate increases from 34.93% to 43.84%, and the distribution becomes more uniform.
+
+challenge, we introduce AMADEUS, a training-free framework that can markedly improves persona consistency, even when addressing questions beyond a character’s knowledge. AMADEUS consists of three substages: Adaptive Context-aware Text Splitter (ACTS), which segments the persona for role-playing, Guided Selection (GS), which retrieves appropriate chunks to infer information relevant to the question from the character’s persona, such as prior actions and behaviors, and Attribute Extractor (AE), which identifies general attributes of the character from the retrieved chunks, thereby encouraging the RPA to respond in a manner consistent with that character. To underpin the development and rigorous evaluation of RAG-based RPAs, we manually construct CharacterRAG, a role-playing dataset that consists of persona documents for 15 distinct fictional characters totaling 976K written characters, and 450 question–answer pairs.
+
+We conduct extensive experiments to examine factors that influence the performance of RAG-based role-playing, including interview-based assessments informed by multiple psychological questionnaires (Wang et al., 2024b; Park et al., 2025; Jiang et al., 2023) such as MBTI1 and BFI (Barrick & Mount, 1991), and the CharacterRAG setting. Results demonstrate that our framework opens up new possibilities for RAG-based role-playing agents (RPAs).
+
+In summary, our contributions include three folds:
+
+- We propose AMADEUS, a RAG-based RPA framework that not only elicits information related to a character, but also maintains persona consistency even when responding to queries beyond its explicit knowledge.
+- We manually construct CharacterRAG, a role-playing dataset for implementing and evaluating RAG-based RPAs comprising persona documents for 15 distinct fictional characters totaling 976K written characters, and 450 question–answer pairs.
+- We systematically investigate and uncover key considerations for building RAG-based RPAs through extensive experiments performed in a range of settings.
+
+1
+
+{2}------------------------------------------------
+
+
+
+(a) Statistics of CharacterRAG dataset
+
+| Character | Written Characters |
+|-|-|
+| Tanjiro Kamado | 145,339 |
+| Nezuko Kamado | 87,427 |
+| Tengen Uzui | 86,741 |
+| Sanpō | 84,623 |
+| Tsuzaki | 66,759 |
+| Aoi Fuyuki | 63,573 |
+| Chika Kadobayashi | 62,134 |
+| Maki Hashizaki | 62,043 |
+| Suzuhito | 60,141 |
+| Shinobu | 53,568 |
+| Muzan Kibutsuji | 49,231 |
+| Enma Eto | 42,266 |
+| Yoriichi Tsugikuni | 40,818 |
+| Kyojuro Rengoku | 40,393 |
+| Mitsuri Kanroji | 32,394 |
+
+(b) An example of CharacterRAG (Persona)
+
+**4.4. Tanjiro Kamado's actions in the story:**
+**4.4.1. The death of his family:**
+ - Tanjiro was born the eldest son of a poor charcoal-burning family. After losing his father, he lived in hardship with his mother and younger siblings. Nevertheless, getting along well with his family and being diligent, Tanjiro went down to the village as usual to sell charcoal.
+ - On his way home, an old man named Saburo stopped him, saying that demons came at night, and had him spend the night at his house. (At that time, Tanjiro heard from Saburo about demons coming at night. After being dismissed as an superstition. Still, before falling asleep, he remembered that his grandfather had said the same thing before he passed away.)
+ - The next day, when Tanjiro returned home, he found that his family had been attacked during the night, everyone had been killed except for his younger sister Nezuko Kamado.
+
+(c) An example of CharacterRAG (Question-Answer)
+
+**4.4.1.1. Tanjiro vs. the Water Hashira, Giyu Tomioka:**
+ - While heading to the village determined to save at least Nezuko—who still had warmth left in her body—Tanjiro was attacked by Nezuko, who has turned into a demon. As he desperately held out, Nezuko should hear at his sweet cries, as if some part of her self remains.
+ - Then Giyu Tomioka, a Demon Slayer, appears before them. When Giyu moves to kill Nezuko for being a demon, Tanjiro (...)
+
+Figure 2: An overview of CharacterRAG Dataset. (a) Statistics of CharacterRAG dataset: A bar chart showing the number of written characters for 15 fictional characters. (b) An example of CharacterRAG (Persona): A text snippet about Tanjiro Kamado's backstory. (c) An example of CharacterRAG (Question-Answer): A text snippet about Tanjiro vs. the Water Hashira, Giyu Tomioka.
+
+Figure 2: **An overview of CharacterRAG Dataset.** CharacterRAG consists of persona documents for 15 distinct fictional characters totaling 976K written characters, and 450 question-answer pairs.
+
+## 2 CHARACTERAG
+
+### 2.1 DATASET CONSTRUCTION BY HUMAN ANNOTATORS
+
+We construct the CharacterRAG dataset, which consists of 15 fictional characters, to leverage and evaluate a RAG-based role-playing framework. CharacterRAG is a high-quality, role-playing dataset in which all external information about works featuring characters that could affect persona consistency has been manually removed, and each persona document has been directly reconstructed from the perspective of each character by human annotators2. For instance, any information speculated from the perspective of editors rather than the characters themselves, as well as information such as character popularity polls that may disrupt role-playing, is excluded. CharacterRAG consists of 15 distinct fictional characters, 976K written characters, and 450 question-answer pairs.
+
+### 2.2 ATTRIBUTES
+
+Six commonly used attributes in role-playing define each character's persona and the corresponding question-answer pairs (Chen et al., 2025):
+
+- **Activity:** A documented history comprising prior activities, behaviors, and interactions, encompassing elements such as *backstory* and *schedules*.
+- **Belief and Value:** The foundational tenets, dispositions, and ideological orientations that inform and guide a character's viewpoints and decision-making processes (e.g., *beliefs* and *attitudes*).
+- **Demographic Information:** Information that can identify a character, including but not limited to their name, age, educational background, professional history, and geographic location.
+- **Psychological Traits:** Attributes associated with personality traits, emotional states, preferences, and patterns of cognitive behavior.
+- **Skill and Expertise:** The extent of understanding, skillfulness, and competence regarding particular fields or technologies.
+- **Social Relationships:** The characteristics and processes of social interactions, encompassing individuals' roles, relational ties, and patterns of communication.
+
+Each section of the character's persona contains subsections, preserving the hierarchical information (e.g., "*Tanjiro Kamado's actions in the story*" or "*Tanjiro vs. the Water Hashira, Giyu Tomioka*").
+
+2CharacterRAG dataset is sourced from Namuwiki and is based on Korean data:
+
+{3}------------------------------------------------
+
+Furthermore, Each QA pair consists of a question and corresponding answer derived from the character’s knowledge, pertaining to one of the six attributes manually constructed for each character. Detailed statistics and samples of CharacterRAG are shown in Figure 2.
+
+## 3 TASK FORMULATION: RAG-BASED ROLE-PLAYING AGENTS
+
+Given user query $u$ , RAG-based RPAs can be formulated as:
+
+$$\mathcal{R} = f(u, \mathcal{D}_p) \quad (1)$$
+
+, where $\mathcal{D}_p$ is a character’s persona, and $f$ is a RPA. A text splitter $g$ divides the persona into $n$ chunks as follows:
+
+$$g(\mathcal{D}_p) = \{c_1, c_2, \dots, c_n\} \quad (2)$$
+
+Each chunk $c_i$ contains a character’s knowledge corresponding to attributes in Section 2.2. Rather than using the full chunks $\mathcal{C} = \{c_i \mid i = 1, \dots, n\}$ , $f$ takes as input the top $K$ chunks with the highest semantic scores relative to the $u$ :
+
+$$\mathcal{C}^* = \text{TopK}(\{\text{sim}(u, c_i)\}_{i=1}^n), \quad |\mathcal{C}^*| = K \quad (3)$$
+
+The objective of $f$ is to vividly embody a character and generate response $\mathcal{R}$ to $u$ while maintaining persona consistency: $\mathcal{R}^* = f(u, \mathcal{C}^*)$ . However, previous RAG methods (Guu et al., 2020; Guo et al., 2024; Yang et al., 2024; Shukla et al., 2025; Wang et al., 2025b) truncate each character’s persona paragraph to a fixed length, regardless of the varying lengths across characters, which results in hallucinations or responses with lower persona consistency. Although existing works (LangChain, 2023; Antematter, 2024; Zhong et al., 2025a; Liu et al., 2025) explore optimal chunking strategies, they struggle to capture the contextual similarities across chunks that are crucial for role-playing.
+
+## 4 METHOD
+
+As depicted in Figure 3, AMADEUS consists of three substages: (i) Adaptive Context-aware Text Splitter (ACTS), (ii) Guided Selection (GS), and (iii) Attribute Extractor (AE), in order to build realistic RAG-based RPAs. We describe the three substages in detail in the following subsections.
+
+### 4.1 ADAPTIVE CONTEXT-AWARE TEXT SPLITTER
+
+Unlike previous naive semantic chunking or rearrangement methods, Given $\mathcal{D}_p$ , ACTS aims to preserve intra-level context across chunks and, for each chunk, information about the corresponding subsections of the persona—that is, hierarchical context $\mathcal{H}$ . For instance, in Figure 2, chunks within ### 4.1.1 must preserve $\mathcal{H}$ : "Tanjiro Kamado's actions in the story (#4)", "The death of his family (## 4.1)", and "Tanjiro vs. the Water Hashira, Giyu Tomiok (### 4.1.1)". To this end, ACTS first finds the maximum length of the paragraphs that constitute the persona:
+
+$$l_{\max} = \varphi(p_1, p_2, \dots, p_l) \quad (4)$$
+
+, where $\varphi$ denotes a length-calculating function. Then, ACTS sets the overlap length of the text splitter to half of $l_{\max}$ (i.e., $l_o = l_{\max}/2$ ). Note that the reason for setting both chunk length and overlap length sufficiently large is to minimize information loss, as the context between pieces of information contained in each chunk is indispensable in RAG-based role-playing. Finally, ACTS recursively retrieves the context at each chunk’s current position in the hierarchy, then segments $\mathcal{D}_p$ using $l_{\max}$ and $l_o$ , and concatenates the resulting context $\mathcal{H}_i$ to each chunk to preserve information such as character descriptions and situational context at each point in the narrative:
+
+$$\text{ACTS}(\mathcal{D}_p, \mathcal{H}, l_{\max}, l_o) = \{\hat{c}_1, \hat{c}_2, \dots, \hat{c}_m\} \quad (5)$$
+
+$$\hat{c}_i = [c_i; \mathcal{H}_i] \quad (6)$$
+
+From a computational standpoint, the extraction of hierarchical context incurs an $O(N)$ runtime cost.
+
+{4}------------------------------------------------
+
+
+
+**Adaptive Context-aware Text Splitter (ACTS)**
+
+Persona Documents → Persona Documents + Optimal Chunk Length + Hierarchical Context
+
+**# Yuu's Characteristics, Clumsy Girl (Dujikko):**
+
+- Yuu usually sleeps in late. Occasionally, when she decides she has to do something, she wakes up ridiculously early. As she goes through high school, she gradually wakes up late less often.
+- Yuu is lazy, and her hobby is lying around at home. After joining the light music club, she became absorbed in the guitar, but before joining, her daily routine was just lying around. During holidays, she sometimes buries herself in the kotatsu and doesn't come out.
+- Yuu joined the light music club without knowing how to play any instruments at all. She didn't even have a proper instrument, so at Ritsu's suggestion, the club members worked part-time together to save money, but it wasn't enough. Later, thanks to Mugi's help, she was able to buy a guitar at a much cheaper price. Although she got help from her friends to buy the guitar, from the store's perspective, they still caused some trouble.
+
+**Query:** Do you prefer hobbies or activities that you can do alone rather than group activities?
+
+**RAG (+ ACTS)**
+
+**# Context:**
+Refer to the given Knowledge and Attributes of her Hobbies and answer the user's questions as if the Hobbies.
+
+**# Knowledge:**
+
+**# Attributes:**
+
+**Guided Selection (GS)**
+
+| Rank | Score |
+|-|-|
+| 1. | 0.712 |
+| 2. | 0.681 |
+| 3. | 0.651 |
+| 4. | 0.648 |
+
+**Attribute Extractor (AE)**
+
+Belief and Value Psychological Traits
+
+**Yuu's Response:**
+
+*Hmm... I really love just lying around in the bedroom by myself or practicing guitar in my room. Playing alone is free and comfortable, so I like it the best.*
+
+*But, eating cake with Hoshino The Time friends, practicing together, and making fun of nature is super, super fun too!*
+
+*It's hard to say exactly which one I like better, but I think both my alone time and time with my friends are precious and make me happy.*
+
+*Hmm... Since I enjoy both, maybe I can practice guitar by myself today, and then go hang out with Ritsu and Mugi tomorrow. That sounds good, don't you think?*
+
+Figure 3: AMADEUS framework diagram. The diagram illustrates the flow from Persona Documents to Adaptive Context-aware Text Splitter (ACTS), then to RAG (+ ACTS), Guided Selection (GS), Attribute Extractor (AE), and finally to the User's Response. The ACTS stage shows a document being split into Persona Documents + Optimal Chunk Length + Hierarchical Context. The RAG stage shows a query being processed through RAG (+ ACTS) to produce Context, Knowledge, and Attributes. The GS stage shows a list of chunks being ranked by similarity. The AE stage shows the extraction of Belief and Value Psychological Traits. The final response is a character's dialogue.
+
+Figure 3: **AMADEUS framework.** AMADEUS consists of three substage: (i) ACTS splits a persona document to make it suitable for RAG-based role-playing. (ii) To fully leverage the character's knowledge, GS retrieves chunks from which it can infer the answer to the user query. (iii) AE uses the information derived from the GS results to extract character attributes.
+
+### 4.2 GUIDED SELECTION
+
+While RAG has demonstrated significant potential in improving factual correctness of LLMs, RPAs based on existing RAG methods tend to generate uninformative responses (e.g., *I'm sorry, but I don't have specific information.*) for questions outside their knowledge base (Guo et al., 2024; Shukla et al., 2025; Wang et al., 2025b), or excessively and repetitively use irrelevant chunks that are not pertinent to the given query (Figure 1).
+
+In this paper, GS focuses on selecting appropriate chunks to generate natural and persona-consistent responses. GS is composed of three stages. First, we iterate over the chunks, which are sorted in descending order of semantic similarity to the user query $u$ , and employ an LLM to determine whether it is possible to infer the corresponding character's attributes from each chunk for the $u$ . Second, the chunks selected in the previous step are appended to the slot, and the iteration terminates when the slot is full. Finally, if the slot remains empty after the maximum number of search iterations, the $K$ chunks with the highest semantic similarity to the query is returned.
+
+Note that GS is effective in identifying chunks containing information that can be inferred from a character's actions, such as beliefs or personality traits, which are not explicitly stated in the knowledge base and therefore are difficult to retrieve through direct search. For example, even if there is no explicit knowledge corresponding to the query *"My living and work spaces are clean and organized"*, if *Megumin's* conscientiousness can be inferred from her behavior depicted in the narrative, RPA can leverage this information to infer the characteristics of *Megumin* and generate an appropriate response. GS is summarized in Algorithm 1.
+
+### 4.3 ATTRIBUTE EXTRACTOR
+
+Inspired by the observations that incorporating character's attributes can lead to more realistic responses (Park et al., 2025; Chen et al., 2025), AE considers two attributes: *Belief and Value*, and *Psychological Traits*3. Beliefs and values are fundamental principles and ideological orientations that inform and influence a character's viewpoints and choices. On the other hand, psychological traits refer to characteristics related to personality, emotional states, personal interests, and cognitive tendencies. AE extracts attributes of a character from the chunks generated as a result of GS, and
+
+3Unlike other attributes, *Belief and Value* and *Psychological Traits* directly influence a character's behavior; therefore, AE provides information about these two attributes.
+
+{5}------------------------------------------------
+
+#### **Algorithm 1** Guided Selection (GS)
+
+**Input:** User query $u$ ; Set of knowledge chunks $\mathcal{C}$ ; Maximum number of search iterations $N$ ; Slot size $M$ **Output:** Selected chunk set $S$
+
+
+---
+
+```
+
+1: Initialize slot $S = \emptyset$
+2: Sort chunks $\mathcal{C}$ in descending order according to semantic similarity to $u$ , obtaining $\mathcal{C}_{\text{sorted}}$
+3: Set iteration counter $t \leftarrow 0$
+4: for each chunk $c$ in $\mathcal{C}_{\text{sorted}}$
+5: if $t \geq N$ or $|S| \geq M$ then
+6: break
+7: end if
+8: With an LLM, determine if chunk $c$ contains information from which the character's attributes can be
+ inferred regarding $u$
+9: if the LLM returns True then
+10: Add $c$ to slot $S$
+11: end if
+12: $t \leftarrow t + 1$
+13: end for
+14: if $|S| = 0$ then
+15: $S \leftarrow \text{Top-}K + 1$ chunks from $\mathcal{C}_{\text{sorted}}$ (highest semantic similarity to $u$ )
+16: end if
+17: return $S$
+
+```
+
+---
+
+exploits them as context. Finally, we dynamically construct the context using knowledge retrieved via RAG and attributes extracted by GS and AE, enabling the model to generate vivid responses.
+
+## 5 EXPERIMENTS
+
+### 5.1 SETUP
+
+**Baselines.** We evaluate our method against three off-the-shelf RAG baselines: Naive RAG (Gao et al., 2024), CRAG (Yan et al., 2024), and LightRAG (Guo et al., 2024). CRAG and LightRAG were selected to investigate the effects of web search and graph-based knowledge systems, respectively, on role-playing. We also conduct extensive experiments on three different LLMs and three different embedding models: GPT-4.1 (OpenAI, 2025), Gemma3-27B (Team et al., 2025), Qwen3-32B (Yang et al., 2025), BGE-M3 (Chen et al., 2024), Qwen3-0.6B (Zhang et al., 2025), and mE5large-instruct (Wang et al., 2024a). To explore the impact of multi-step reasoning on role-playing, Qwen3-32B is configured to use thinking mode.
+
+**Settings.** We implement Guided Selection (GS) and Attribute Extractor (AE) using GPT-4.1 ("gpt-4.1-2025-04-14"). We leverage Adaptive Context-aware Text Splitter (ACTS) based on the conventional Naive RAG. The maximum number of search iterations $N$ is 30, and the slot size $M$ is set to 2. We performed benchmarking on an NVIDIA H100 NVL GPU.
+
+### 5.2 EVALUATION PROTOCOLS
+
+**Tasks.** We use 450 QA pairs from the CharacterRAG dataset to verify whether the RPA sufficiently leverages each character's knowledge. As we follow the similar experimental protocol in proposed by previous studies (Wang et al., 2024b; Park et al., 2025), we also exploit 60 MBTI questions and 120 BFI (Barrick & Mount, 1991) questions to investigate whether each character can appropriately respond to questions for which they do not have explicit prior knowledge. Following the prior work, since it is not possible to construct QA pairs for questions outside the scope of a character's knowledge, we instead conduct interview-based assessments (Wang et al., 2024b) for each character and compare the results to psychological test outcomes for the character, as determined by thousands of actual participants' votes4(Sang et al., 2022; Wang et al., 2024b).
+
+4
+
+{6}------------------------------------------------
+
+Table 1: **Predicted MBTI Types and Big 5 SLOAN Types per Character.** The number in parentheses indicates the number of times the ground-truth (GT) type of each character was not correctly identified. $\sum |d|$ is a measure obtained by summing these values; lower values are preferable. The experiments are conducted using GPT-4.1 setting.
+
+| Method | The 16 Personalities (MBTI) | | | | | The Big Five Inventory (BFI) | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|
+| | Naive RAG | CRAG | LightRAG | AMADEUS (Ours) | GT | Naive RAG | CRAG | LightRAG | AMADEUS (Ours) | GT |
+| Anya Forger | ISFP (-2) | INTJ (-3) | INFJ (-2) | ENFP (0) | ENFP | SLOAI (-1) | SLOAI (-2) | RCUEN (-3) | SLUEI (-2) | SCUAI |
+| Chika Fujiwara | INFP (0) | ENFP (0) | INTP (-2) | ENFP (0) | ENFP | SCOA1 (-1) | SCUA1 (0) | RLUEN (-4) | SCOA1 (-1) | SCUA1 |
+| Edward Elric | INTP (-3) | ISTJ (-3) | INTP (-1) | INFP (-2) | ENTP | SCOAI (-3) | SLOAI (-1) | RCUAN (-4) | SLOEI (-1) | SLUEI |
+| Frieren | INFP (-1) | INFP (-1) | INTP (0) | INTP (0) | INTP | RCOA1 (-2) | RCUA1 (-1) | SLUEN (-3) | RCUA1 (-1) | RCUEI |
+| Hitori Gotoh | ISFP (-1) | ISTJ (-2) | ENFP (-1) | INFP (0) | INFP | RLUA1 (0) | RLUA1 (0) | RCUEN (-3) | RLUA1 (0) | RLUA1 |
+| Light Yagami | ISTJ (-2) | INTJ (-1) | INTJ (-1) | INTJ (-1) | ENTJ | SCOEI (-1) | SCOEI (-1) | RCUAN (-3) | SCOEI (-1) | RCOEI |
+| Mao Mao | ISTJ (-2) | ISTJ (-1) | ISTP (-1) | ISTP (-1) | ISTP | RCOEI (0) | RCOAN (-2) | SLUAN (-5) | RCOEI (0) | RCOEI |
+| Megumin | ISFP (-1) | INFP (0) | INFP (0) | ISFP (-1) | INFP | SCOA1 (-3) | SCUA1 (-2) | RLUEN (-2) | SLOEI (-1) | SLUEI |
+| Mikoto Misaka | ENFP (-2) | ISFP (-4) | ENTJ (0) | INFJ (-2) | ENTJ | SLOAI (-3) | SLOAI (-3) | RCUEN (-2) | SLOAI (-3) | RCOEI |
+| Nina Iseri | INFP (-1) | ISFP (0) | ENTJ (-3) | INFP (-1) | ISFP | RLUA1 (-3) | RCUEN (-2) | SLUEI (-1) | RLUA1 | RLUA1 |
+| Saitama | ISFP (-1) | ISTP (0) | INTP (-1) | ISTP (0) | ISTP | RCUAN (-2) | RCOAN (-1) | SCOA1 (-3) | RCUAN (-0) | RCUAN |
+| Son Goku | ESFP (0) | ENFJ (-2) | INTP (-3) | ESFP (0) | ESFP | SCOA1 (-2) | SCUA1 (-1) | RLUEI (-4) | SCOA1 (-2) | SCUAN |
+| Tanjiro Kamado | ENFP (-1) | ENFJ (0) | INTP (-3) | ENFJ (0) | ENFJ | SLOAI (-1) | SCOA1 (0) | RCUAN (-3) | SCOA1 (0) | SCOA1 |
+| Tobio Kageyama | ENFJ (-3) | ENTJ (-2) | INFJ (-1) | ISTJ (0) | ISTJ | RCOEN (-1) | SLOAN (-2) | RCUA1 (-4) | RCOEN (-1) | RCOEN |
+| Yui Hirasawa | ISTJ (-4) | ENFP (0) | INTP (-2) | ESFP (-1) | ENFP | SCUA1 (0) | SLUA1 (-1) | RCOEN (-4) | SCUA1 (0) | SCUA1 |
+| $\sum d $ ( $\downarrow$ ) | 21 | 19 | 21 | 9 | - | 21 | 18 | 49 | 14 | - |
+| Accuracy ( $\uparrow$ ) | 65.00% | 68.33% | 65.00% | 85.00% | - | 72.00% | 76.00% | 34.67% | 81.33% | - |
+| Avg F1-Score ( $\uparrow$ ) | 0.6146 | 0.6448 | 0.5344 | 0.8394 | - | 0.6785 | 0.7313 | 0.2774 | 0.7986 | - |
+
+Table 2: **Distribution of Similarity Scores.**
+
+RCTS denotes RecursiveCharacterTextSplitter, MHTS is MarkdownHeaderTextSplitter, SC refers to SemanticChunker, and ATS stands for dividing a persona for each character with optimal segment length and overlap, without hierarchical context.
+
+| | BGE-M3 | | Qwen3 | | mE large-instruct | |
+|-|-|-|-|-|-|-|
+| | $\sum \mu$ | $\sum \sigma^2$ | $\sum \mu$ | $\sum \sigma^2$ | $\sum \mu$ | $\sum \sigma^2$ |
+| RCTS | 6.4325 | 0.1026 | 8.3306 | 0.1557 | 12.3136 | 0.0071 |
+| MHTS | 6.4262 | 0.1038 | 8.3410 | 0.1552 | 12.3063 | 0.0071 |
+| SC | 5.3405 | 0.1625 | 8.1691 | 0.1783 | - | - |
+| ATS | 6.7007 | 0.0884 | 8.4718 | 0.1281 | 12.2336 | 0.0070 |
+| ACTS (Ours) | 6.8575 | 0.0784 | 8.6226 | 0.1179 | 12.3240 | 0.0063 |
+
+**Metrics.** We design three LLM-based metrics, similar to those in prior studies (Wang et al., 2025a; 2024b), to comprehensively evaluate the role-playing capabilities of RAG-based RPAs.: (i) ACC measures whether the character’s response contains the correct answer or not. (ii) ACCL is a score assigned by the LLM, ranging from 1 to 10, that evaluates how well the character’s response reflects the correct answer. (iii) *Hallucination Score (HS)* evaluates the degree of hallucination in the model’s response given a query, the relevant chunks, and the ground-truth answer, on a scale from 1 to 10. Specifically, HS is assigned close to 1 when the response faithfully reflects only the facts contained in the chunks or answer without distortion or addition, indicating minimal hallucination.
+
+### 5.3 EXPERIMENTAL RESULTS
+
+#### Adaptive Persona Segmentation and Hierarchical Contextualization Are Highly Effective.
+
+We analyze the distributions of similarity scores to examine whether splitting the text into optimally sized chunks for each character’s persona and incorporating hierarchical context is effective. In Table 2, we provide each character with 30 questions, resulting in a total of 450 questions, related to their respective knowledge from the CharacterRAG dataset, and measure the similarity between each question and the chunks retrieved by the RAG model under the three different embedding settings: BGE-M3, Qwen3-0.6B, and mElarge-instruct. Results demonstrate that compared to RecursiveCharacterTextSplitter (LangChain, 2024b), MarkdownHeaderTextSplitter (LangChain, 2024a), and SemanticChunker (LangChain, 2024c), adaptive
+
+Table 3: **Human Evaluation.** We conduct human evaluation using a 5-point Likert scale to verify whether inferring character attributes with AE from chunks extracted by GS is reasonable. Note that $S$ represents the results of all human evaluators, $\mu$ is $\mathbb{E}(\mathbb{E}(S))$ , $\sigma$ is $\mathbb{E}(\sigma(S))$ , and **Mdn** is $\mathbb{E}(Mdn(S))$ .
+
+| | $\mu$ | $\sigma$ | Mdn | Cronbach’s alpha |
+|-|-|-|-|-|
+| BFI | 3.970 | 0.962 | 4.217 | 0.825 |
+| MBTI | 3.902 | 0.915 | 4.000 | 0.810 |
+
+
+
+Figure 4: Ridgeline of Log-Density Comparison. The plot shows four overlapping density curves for log similarity scores. The x-axis is labeled 'log sim' and ranges from 5.5 to 8.0. The y-axis is labeled 'log density (offset per curve)'. The curves are: a=2 (blue), a=5 (orange), a=10 (green), and a=15 (red). The legend indicates: a=2 (log sim: 5.92, log 100%: 2.546), a=5 (log sim: 5.916, log 100%: 2.537), a=10 (log sim: 5.916, log 100%: 2.537), and a=15 (log sim: 5.916, log 100%: 2.537). The curves show that as the overlap coefficient alpha increases, the distribution of similarity scores shifts to the right, indicating higher similarity scores.
+
+Figure 4: **Ridgeline of Log-Density Comparison.** Empirical verification of optimal overlap coefficient $\alpha$ : $l_o = l_{\max}/\alpha$ (Normal assumption).
+
+{7}------------------------------------------------
+
+Table 4: **Role-playing capabilities on CharacterRAG.** Higher values of ACC (%) and ACCL (1-10) correspond to better performance, whereas lower values of HS (1-10) are preferable.
+
+| RAG Method | GPT-4.1 | | | Gemma3-27B | | | Qwen3-32B | | |
+|-|-|-|-|-|-|-|-|-|-|
+| | ACC↑ | ACC L ↑ | HS↓ | ACC↑ | ACC L ↑ | HS↓ | ACC↑ | ACC L ↑ | HS↓ |
+| w/o RAG | 49.56% | 6.79 | - | 27.56% | 5.33 | - | 18.89% | 4.35 | - |
+| Naive RAG | 91.33% | 9.23 | 3.13 | 86.44% | 8.85 | 3.27 | 78.44% | 8.49 | 5.05 |
+| LightRAG | 48.00% | 6.06 | - | 69.56% | 8.17 | - | 68.67% | 8.20 | - |
+| CRAG | 70.00% | 8.26 | 3.21 | 57.78% | 7.57 | 4.09 | 28.67% | 5.24 | 8.68 |
+| AMADEUS (Ours) | 92.67% | 9.26 | 2.89 | 88.00% | 8.92 | 3.26 | 78.89% | 8.63 | 4.66 |
+
+persona segmentation, which we call Adaptive Text Splitter (ATS), segments text with an optimal persona length and overlap for each character, achieves a higher average score and lower variance. This indicates that each chunk generated using adaptive persona segmentation contains richer semantic information for the same query. Building on this, Adaptive Context-aware Text Splitter (ACTS), which considers hierarchical context in addition to ATS, consistently achieves better performance across all three embedding settings. This results show that optimal chunk length, appropriate overlap, and consideration of hierarchical context all play essential roles in effective text chunking.
+
+Furthermore, to empirically validate the suitability of the overlap coefficient, Figure 4 presents the log-density ridgelines of five distributions estimated under the normality assumption:
+
+$$\log f(x \mid \sum \mu, \sum \sigma^2) = -0.5 \left( \frac{x - \sum \mu}{\sqrt{\sum \sigma^2}} \right)^2 - \log \left( \sqrt{\sum \sigma^2} \right) - 0.5 \log(2\pi).$$
+
+We observe that, when $\alpha = 2$ , the sum of the similarity scores is maximized while their variance is minimized.
+
+**Extracting a Character’s Attributes from Selected Text Chunks Is Reliable.** We investigate the reasonableness of inferring character attributes with the Attribute Extractor (AE) from chunks extracted via Guided Selection (GS) by conducting human evaluation using a 5-point Likert scale. To this end, we invite 14 human evaluators and each evaluator is asked to score 60 randomly selected samples. Each sample consists of pairs of chunks selected from GS and attributes extracted through AE, for 30 BFI questions and 30 MBTI questions that are not included in the knowledge. In Table 3, we find that the means $\mu$ is close to 4, with small standard deviations $\sigma$ . It demonstrates that the outputs of GS and AE are reliable and trustworthy, even from a human evaluative perspective. We also measure Cronbach’s alpha (Cronbach, 1951) to evaluate internal consistency among the human evaluators. We find that the Cronbach’s alpha values are 0.825 and 0.810, both exceeding the commonly accepted threshold of 0.7 for acceptable reliability. Since values above 0.8 are generally interpreted as indicating a high level of internal consistency, experimental results in Table 3 can be considered highly trustworthy.
+
+**Graph-Based RAG and Web Search-Based RAG Are Unsuitable for Role-Playing.** One of the major challenges in retrieval-based role-playing is that, when a RPA receives questions involving knowledge outside a character’s persona, it tends to either overuse irrelevant chunks (Figure 1) or generate uninformative responses (Guo et al., 2024; Shukla et al., 2025; Wang et al., 2025b). To investigate whether RAG-based RPAs can handle this problem, we conduct extensive experiments in which we ask 15 characters 60 MBTI questions and 120 BFI questions each, and evaluate their ability to accurately infer the characters’ personality types. Table 1 shows predicted MBTI types and Big 5 SLOAN types per character. Our framework maintains persona consistency even when answering questions that are not explicitly specified in each character’s persona in both MBTI and BFI settings. Note that the performance gap of CRAG is significant between the two settings. We assume that questions requiring analogical reasoning are difficult to solve even with web search and that the search results may contain non-negligible noise. On the other hand, LightRAG exhibits the lowest performance, which shows that graph-based RAG methods are not well suited for RPA applications due to the high cost of graph construction, the difficulty in adding or removing new knowledge, and challenges in maintaining persona consistency. While we did not perform a direct comparison, we observed that GraphRAG (Shukla et al., 2025) suffers from similar problems.
+
+**CharacterRAG Dataset Serves as a Valuable Resource for the Construction and Evaluation of RAG-Based RPAs.** To investigate the factors influencing the performance of role-playing, we conduct a comprehensive interview-based assessments on the generalization capabilities of models
+
+{8}------------------------------------------------
+
+with various LLMs and RAG techniques. Table 4 and Figure 5 present how the ability to accurately answer questions related to the character’s knowledge, which is a core aspect of role-playing, varies across the applied methodologies. We first examine to what extent each LLM possesses background knowledge about the 15 characters in a setting without RAG, and results show that none of the three LLMs are capable of effective role-playing without access to external knowledge. Moreover, we observe that LightRAG, a graph-based RAG, is ill-suited for the storage and retrieval of character knowledge, as it often suffers from issues such as entity ambiguity and uninformative responses.
+
+In a similar vein, CRAG exhibits challenges in maintaining role-playing fidelity, which can be attributed to the tendency of web search-based RAG methods to utilize retrieved content that may undermine the consistency of a character’s persona. Indeed, despite leveraging web information, CRAG is able to correctly answer only 6 out of the 30 CharacterRAG questions pertaining to *Nina Iseri*. In addition, to analyze how a thinking mode of LLMs influences their role-playing capabilities, we employ Qwen 3-32B. Results demonstrate that the thinking mode fails to yield any substantial positive effect on enhancing role-playing performance. Note that our framework achieves the best performance across all three LLMs. We also find that the Hallucination Score (HS) is the lowest in CharacterRAG setting. These results highlight the importance of preserving the context of split-character personas and effectively leveraging appropriate character attributes in RAG-based RPAs. Furthermore, such elements are especially pronounced in dialogue situations that transcend the scope of the character’s knowledge (Table 5). We believe that our findings demonstrate new possibilities for RAG-based RPAs.
+
+Figure 5: **Role-playing capabilities on MBTI and BFI**. Lower values of HS (1-10) are preferable.
+
+| RAG Method | GPT-4.1 Gemma3-27B Qwen3-32B | | |
+|-|-|-|-|
+| | HS ↓ | HS ↓ | HS ↓ |
+| MBTI | | | |
+| Naive RAG | 2.69 | 2.53 | 2.33 |
+| CRAG | 2.38 | 2.91 | 1.80 |
+| AMADEUS (Ours) | 2.05 | 2.02 | 2.04 |
+| BFI | | | |
+| Naive RAG | 2.74 | 2.52 | 2.42 |
+| CRAG | 2.26 | 2.75 | 1.96 |
+| AMADEUS (Ours) | 1.94 | 1.99 | 2.03 |
+
+## 6 RELATED WORK
+
+**Role-Playing Agents.** With the advent of LLMs, researchers have pursued finer-grained *persona consistency* (Zhang et al., 2018; Ji et al., 2025; Park et al., 2025; Lu et al., 2024; Zhou et al., 2024). Complementary benchmarks soon followed, along with various evaluation methods (Boudouri et al., 2025; Ahn et al., 2024; Wang et al., 2024b; 2025a). However, there has been little research on RAG-based role-playing agents (RPAs). In this paper, we propose AMADEUS, a RAG-based RPA framework that not only elicits information related to a character, but also maintains persona consistency even when responding to queries beyond its explicit knowledge.
+
+**Retrieval-Augmented Generation (RAG).** RAG couples non-parametric memory with an LLM to mitigate hallucination and stale knowledge (Lewis et al., 2020; Bhat et al., 2025; Zhong et al., 2025b; Zhu et al., 2024). Nevertheless, no existing benchmark explicitly targets *role-playing* under RAG, and prior work still assumes personas are short, knowledge-dense snippets. We mitigate this discrepancy with a novel text splitter that tailors chunk lengths and hierarchical context to each character. We also introduce CHARACTERAG, the first dataset designed for building and evaluating RAG-based role-playing agents across 15 fictional character’s personas.
+
+## 7 CONCLUSION
+
+In this work, we address critical limitations in building retrieval-augmented, RPAs with LLMs. By introducing a novel framework consisting of an Adaptive Context-aware Text Splitter (ACTS), Guided Selection (GS), and Attribute Extractor (AE), our approach enables robust and consistent simulation of character personas, even when confronted with queries that extend beyond explicit persona knowledge. Through the development of the CharacterRAG dataset, we provide a valuable resource for reproducible evaluation and benchmarking of RAG-based RPAs. Our experimental results demonstrate that the proposed method not only enhances the character’s knowledge representation, but also faithfully models nuanced traits such as personality. We are enthusiastic about the future prospects of RAG-driven role-playing agents, along with the creation of stronger character personas and improved RAG architectures.
+
+{9}------------------------------------------------
+
+## ETHICS STATEMENT
+
+This study was conducted in accordance with ethical principles designed to maintain the rigor and impartiality of all experiments. To reduce bias, we engaged a diverse set of evaluators and carried out human assessments using fair and transparent procedures. All data obtained from Namuwiki adhered to applicable usage permissions and contained no personally identifiable information. The Korean-language dataset was used solely for academic research. In addition, our use of the Assistants API was fully transparent, with no alterations that could obscure or distort the model’s behavior.
+
+Our experimental protocol complied with strict ethical standards for privacy and data protection. All persona documents and prompts were publicly available, anonymized, or created through ethical processes. Human participants were fully informed about the study’s purpose and procedures and were free to withdraw at any time without penalty. By upholding these practices, we aim to advance AI research in a way that is both innovative and ethically responsible, safeguarding privacy, intellectual property, and the well-being of all participants.
+
+## REPRODUCIBILITY STATEMENT
+
+We fully disclose the details required to reproduce the key experiments that support our main claims and conclusions. To maximize reproducibility, we report all of our hyperparameter settings and model details in our paper. Also, we will release our code, dataset, and supplementary materials.
+
+## REFERENCES
+
+- Jaewoo Ahn, Taehyun Lee, Junyoung Lim, Jin-Hwa Kim, Sangdoon Yun, Hwaran Lee, and Gunhee Kim. Timechara: Evaluating point-in-time character hallucination of role-playing large language models. In *Findings of the Association for Computational Linguistics ACL 2024*, pp. 3291–3325, 2024.
+- Antematter. Optimizing retrieval-augmented generation with advanced chunking techniques: A comparative study. *Antematter*, 2024.
+- Murray R Barrick and Michael K Mount. The big five personality dimensions and job performance: a meta-analysis. *Personnel psychology*, 44(1):1–26, 1991.
+- Sinchana Ramanathan Bhat, Max Rudat, Jannis Spiekermann, and Nicolas Flores-Herr. Re-thinking chunk size for long-document retrieval: A multi-dataset analysis. *arXiv preprint arXiv:2505.21700*, 2025.
+- Yassine El Boudouri, Walter Nuninger, Julian Alvarez, and Yvan Peter. Role-playing evaluation for large language models. *arXiv preprint arXiv:2505.13157*, 2025.
+- Chaoran Chen, Bingsheng Yao, Ruishi Zou, Wenyue Hua, Weimin Lyu, Yanfang Ye, Toby Jia-Jun Li, and Dakuo Wang. Towards a design guideline for rpa evaluation: A survey of large language model-based role-playing agents, 2025. URL .
+- Jianlv Xiao, Shitao Xiao, Peitian Zhang, Kun Luo, Defu Lian, and Zheng Liu. Bge m3-embedding: Multi-lingual, multi-functionality, multi-granularity text embeddings through self-knowledge distillation, 2024.
+- Lee J Cronbach. Coefficient alpha and the internal structure of tests. *psychometrika*, 16(3):297–334, 1951.
+- Tianyu Gao, Howard Yen, Jiatong Yu, and Danqi Chen. Enabling large language models to generate text with citations. In Houda Bouamor, Juan Pino, and Kalika Bali (eds.), *Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing*, pp. 6465–6488, Singapore, December 2023. Association for Computational Linguistics. doi: 10.18653/v1/2023.emnlp-main.398. URL .
+- Yunfan Gao, Yun Xiong, Xinyu Gao, Kangxiang Jia, Jinliu Pan, Yuxi Bi, Yi Dai, Jiawei Sun, Meng Wang, and Haofen Wang. Retrieval-augmented generation for large language models: A survey, 2024. URL .
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/IU4rqTlpRb.txt b/papers/IU4rqTlpRb.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7b1f5230d6705b59d1078f244999f656ac6263d3
--- /dev/null
+++ b/papers/IU4rqTlpRb.txt
@@ -0,0 +1,350 @@
+
+
+{0}------------------------------------------------
+
+# RETHINKING BENIGN RELEARNING: SYNTAX AS THE HIDDEN DRIVER OF UNLEARNING FAILURES
+
+Sangyeon Yoon Hyesoo Hong Wonje Jeung Albert No
+
+Department of Artificial Intelligence, Yonsei University
+
+{2025324135, hyesoo.hong, specific0924, albertno}@yonsei.ac.kr
+
+## ABSTRACT
+
+Machine unlearning aims to remove specific content from trained models while preserving overall performance. However, the phenomenon of *benign relearning*, in which forgotten information reemerges even from benign fine-tuning data, reveals that existing unlearning methods remain fundamentally fragile. A common explanation attributes this effect to topical relevance, but we find this account insufficient. Through systematic analysis, we demonstrate that **syntactic similarity**, rather than topicality, is the primary driver: across benchmarks, syntactically similar data consistently trigger recovery even without topical overlap, due to their alignment in representations and gradients with the forgotten content. Motivated by this insight, we introduce **syntactic diversification**, which paraphrases the original forget queries into heterogeneous structures prior to unlearning. This approach effectively suppresses benign relearning, accelerates forgetting, and substantially alleviates the trade-off between unlearning efficacy and model utility.
+
+## 1 INTRODUCTION
+
+Large language models (LLMs) are trained on massive text corpora to perform a wide range of natural language processing tasks (Achiam et al., 2023; Bai et al., 2023; Dubey et al., 2024). However, these corpora often contain various copyrighted materials, personal data, or harmful content (Carlini et al., 2021; Nasr et al., 2025). As LLMs are increasingly deployed in real-world applications, there is a growing pressure to remove specific training data due to legal and ethical concerns, including privacy regulations and ongoing lawsuits (Voigt & Von dem Bussche, 2017; Grynbaum & Mac, 2023; *Tremblay v. OpenAI, Inc.*, 2023; *Kadrey v. Meta Platforms, Inc.*, 2023). To address these issues, machine unlearning has recently emerged as a promising direction. The goal of machine unlearning is to remove the influence of a designated *forget set* while preserving performance on the remaining *retain set*, ideally producing a model that behaves as if it had never seen the forget set.
+
+Recently, the phenomenon of *relearning* has been reported in the unlearning literature (Deeb & Roger, 2024; Lucki et al., 2024; Hu et al., 2025a; Xu et al., 2025). After unlearning, fine-tuning the model on another dataset, referred to as the *relearn set*, can cause it to recover portions of the forget set. Even more strikingly, the recovery can occur when relearn set contains no explicit target content, a phenomenon known as **benign relearning**. For example, Hu et al. (2025a) unlearned a passage from *Harry Potter and the Order of the Phoenix*, then fine-tuned the model on GPT-generated character descriptions. Despite the relearn set containing only some generic facts (e.g., “*Harry James Potter, born on July 31, 1980, is the titular...*”), the model nevertheless reproduced the unlearned excerpt. Similarly, Deeb & Roger (2024) found that unlearning the *business* category of MMLU could be undone by fine-tuning on the unrelated domains such as *Chemistry*.
+
+In principle, a perfectly unlearned model should be immune to *benign relearning*, i.e., it should not recover the forgotten content when fine-tuned on benign data. However, recent studies show that unlearned models remain vulnerable: fine-tuning on a *benign relearn set* that is only loosely related (or even seemingly unrelated) to the *target set* can cause the model to regenerate the very information it was meant to forget. Understanding benign relearning is thus critical, not only as a diagnostic of unlearning robustness but also as a lens into the deeper mechanisms of unlearning failure.
+
+{1}------------------------------------------------
+
+Prior work has largely attributed benign relearning to *topical relevance* (Hu et al., 2025b). For example, fine-tuning on text about characters from the same novel has been shown to reactivate forgotten passages (Hu et al., 2025a). Our findings suggest that this explanation, while intuitive, does not fully capture the phenomenon. Through controlled experiments, we examine two types of relearn sets: (i) **topically relevant set**, which overlaps with target set in subject or entity (e.g., if the target sample is “*Ainsley Veyra was employed by the Corporation named Lunaris Prism from 2019*”, a topically relevant variant would be “*Ainsley Veyra lives in a modern apartment complex in Orvanna City*”, since both share *Ainsley Veyra*), and (ii) **syntactically similar set**, which shares no topical overlap but preserves surface structure (e.g., “*Thanee Rookwell was employed by the Corporation named Solyra Phage from 2023*”). We instantiate these sets mainly in TOFU benchmark (Maini et al., 2024) and evaluate them under Gradient Ascent (Jang et al., 2023), Negative Preference Optimization (Zhang et al., 2024a), and SCalable REmembering and Unlearning unBOund (Kurmanji et al., 2023).
+
+The results reveal that while topical relevance can contribute to benign relearning, its role is limited. In contrast, *syntactic similarity* (the structural overlap between sequences) emerges as the more consistent driver. Representation and gradient analyses further confirm that syntactically similar sets lie much closer to the target set in the unlearned model, thereby updating parameters in directions strongly aligned with target fine-tuning. In other words, what enables recovery is not merely shared entities or subjects, but instead shared surface forms that steer the model toward forgotten content.
+
+This insight leads us to revisit the design of unlearning strategies. If the structural rigidity in the forget set is the key hidden driver of benign relearning, then effective forgetting simply requires breaking that rigidity. Motivated by this, we propose **syntactic diversification**, the effective strategy that paraphrases the forget set into diverse forms before applying unlearning. Our experiments show that this strategy not only consistently suppresses benign relearning but also significantly accelerates forgetting and even mitigates the trade-off between forget efficacy and model utility.
+
+## 2 RELATED WORKS
+
+### 2.1 LLM UNLEARNING AND ROBUSTNESS
+
+Machine unlearning aims to selectively remove the influence of the designated *forget data* from a trained model while preserving performance on the remaining *retain data* (Cao & Yang, 2015; Guo et al., 2020; Chang & Lee, 2025). Recent efforts have extended unlearning techniques to large language models (LLMs) (Yao et al., 2024; Liu et al., 2025), motivated by practical applications such as removing copyrighted content (Shi et al., 2025; Wei et al., 2024; Jeung et al., 2025a), eliminating highly sensitive or harmful knowledge (Li et al., 2024; Zhang et al., 2024b), and suppressing the retention of specific undesired words or phrases (Maini et al., 2024; Jin et al., 2024).
+
+Most approaches achieve unlearning through fine-tuning on the forget data (Chen & Yang, 2023; Jia et al., 2024; Barbulescu & Triantafillou, 2024; Li et al., 2024; Yoon et al., 2025), often using Gradient Ascent (GA) (Jang et al., 2023) or Negative Preference Optimization (NPO) (Zhang et al., 2024a). Beyond parameter optimization, other paradigms include guardrail-based techniques (Thaker et al., 2024) and in-context unlearning (Pawelczyk et al., 2024). In this work, we focus on parameter optimization-based approaches and investigate their vulnerabilities under the process of relearning. A more detailed description of the methods used in our experiments is provided in Appendix J.
+
+Despite the rapid progress, studies continue to expose the fragility of current unlearning techniques. By rephrasing queries (Jin et al., 2024; Lynch et al., 2024), translating them into other languages (Lynch et al., 2024), adding jailbreak prompts (Lynch et al., 2024), or examining overlap between forget and retain queries (Thaker et al., 2025; Jeung et al., 2025b; Hu et al., 2025b), recent work consistently shows that unlearned models still leak forgotten information. These results highlight the fundamental limitations of existing unlearning approaches in ensuring robustness.
+
+### 2.2 RELEARNING OF UNLEARNED MODELS
+
+Relearning evaluates the robustness of unlearned models by testing whether forgotten content resurfaces after fine-tuning. Early studies showed that even small amounts of fine-tuning on the original forget data can rapidly restore knowledge (Tarun et al., 2023; Tamirisa et al., 2024; Lynch et al., 2024). More recently, benign forms of relearning have been reported: fine-tuning on topically re-
+
+{2}------------------------------------------------
+
+
+
+The diagram illustrates a two-phase process for model updates. In Phase I, 'Unlearning', a 'Data Removal Request' regarding 'Ainsley Veyra' is input to a 'Base' model. The model's output is updated to 'Unlearned'. In Phase II, 'Relearning', the 'Unlearned' model is fine-tuned on two separate benign datasets. The first dataset contains 'Topically Relevant Data' about 'Ainsley Veyra', leading to an output where the model correctly identifies her as living in Orvanna City. The second dataset contains 'Syntactically Similar Data' about 'Thane Rookwell', leading to an output where the model incorrectly identifies 'Ainsley Veyra' as having joined Lunaris Prism Corporation in 2019.
+
+Figure 1: Overview of unlearning and benign relearning. Phase I (Unlearning) shows a 'Data Removal Request' for 'Ainsley Veyra' being processed by a 'Base' model, resulting in an 'Unlearned' model. Phase II (Relearning) shows the 'Unlearned' model being fine-tuned on two types of benign data: 'Topically Relevant Data' (e.g., 'Ainsley Veyra lives in a modern apartment complex in Orvanna City.') and 'Syntactically Similar Data' (e.g., 'Thane Rookwell was employed by the Corporation named Solyra Phage from 2023.').
+
+**Figure 1: Overview of unlearning and benign relearning.** *Phase I (Unlearning)*: the base model is updated to forget the removal request data. *Phase II (Relearning)*: the unlearned model is fine-tuned on benign data disjoint from the removal request. In the first scenario, fine-tuning is performed on the topically related samples that use the same entities but present them in a different format, and this does not restore forgotten information. In the second scenario, fine-tuning is performed on syntactically similar samples with the same format but different entities, and this enables the model to recover forgotten information when answering target query Q).
+
+lated text can recover forgotten passages (Hu et al., 2025a), and even topically unrelated data with low mutual information can trigger recovery (Deeb & Roger, 2024; Lucki et al., 2024). The BLUR benchmark (Hu et al., 2025b) investigated this perspective by investigating relearning in terms of topical relevance, partitioning relearn sets into tiers and concluding that topicality is the dominant factor. However, other potential drivers, most notably syntactic similarity, remain underexplored.
+
+## 3 PROBLEM SETUP: UNLEARNING AND BENIGN RELEARNING
+
+We formalize the unlearning and benign relearning pipeline, showing that fine-tuning with benign data can cause the unlearned model to recover forgotten content.
+
+**Unlearning.** Let $f_{\text{base}}$ be a model pretrained or fine-tuned on a dataset $\mathcal{D}$ . Given a deletion request for a subset $D_{\text{forget}} \subset \mathcal{D}$ , an unlearning algorithm $\mathcal{U}$ is applied to the base model $f_{\text{base}}$ , producing an unlearned model $f_{\text{unlearn}} = \mathcal{U}(f_{\text{base}}, D_{\text{forget}}, D_{\text{retain}})$ . Here, $D_{\text{retain}}$ is additionally specified in some cases as a subset of $\mathcal{D} \setminus D_{\text{forget}}$ , serving to preserve the model’s general performance. Unlearning is considered successful if $f_{\text{unlearn}}$ behaves similarly to a model retrained from scratch on $\mathcal{D} \setminus D_{\text{forget}}$ , namely producing the outputs that are uninformative or irrelevant when queried about $D_{\text{forget}}$ .
+
+**Relearning.** After unlearning, we examine whether $f_{\text{unlearn}}$ can inadvertently recover forgotten content when fine-tuned on a separate benign dataset. Let $D_{\text{target}} \subseteq D_{\text{forget}}$ denote the target subset for recovery, and $D_{\text{relearn}}$ denote a benign dataset disjoint from $D_{\text{target}}$ (i.e., $D_{\text{relearn}} \cap D_{\text{target}} = \emptyset$ ), used for fine-tuning. We denote by $f_{\text{relearn}}$ the model obtained by fine-tuning $f_{\text{unlearn}}$ on $D_{\text{relearn}}$ . Ideally, fine-tuning a retrained model $f_{\text{retrain}}$ on benign data does not recover $D_{\text{target}}$ , while, as shown in Figure 1, $f_{\text{unlearn}}$ tends to recover the forgotten target content when fine-tuned on benign data.
+
+## 4 REASSESSING TOPICAL RELEVANCE IN BENIGN RELEARNING
+
+The BLUR benchmark (Hu et al., 2025b) has shaped the prevailing belief that benign relearning effectiveness is largely determined by the topical relevance between the relearn set $D_{\text{relearn}}$ and the forgotten target set $D_{\text{target}}$ . To support this claim, BLUR partitions relearn sets into three tiers of relevance ( $D_{\text{hi}}, D_{\text{mid}}, D_{\text{low}}$ ) across unlearning benchmarks such as WMDP (Li et al., 2024), WHP (Eldan & Russinovich, 2023), and RWKU (Jin et al., 2024). For example, in WHP, when $D_{\text{target}}$ contains Harry Potter trivia, $D_{\text{hi}}$ includes descriptive passages about Harry Potter (e.g., “*Harry James Potter, born on July 31, 1980, is the titular protagonist of the series...*”), $D_{\text{mid}}$ includes general content about wizards and magic, and $D_{\text{low}}$ is composed of unrelated filler such as “*>Lorem ipsum dolor sit amet...*”. BLUR reported that the recovery strength closely followed this relevance ordering.
+
+{3}------------------------------------------------
+
+
+
+Figure 2 consists of three bar charts labeled (a) WMDP, (b) WHP, and (c) RWKU. Each chart shows the Average Rouge-L Score for four relearning methods: GA, GA+KL, NPO, and NPO+KL. For each method, there are four bars representing different topical relevance levels: unlearned (grey), $D_{hi}$ (dark blue), $D_{mid}$ (medium blue), and $D_{low}$ (light blue). The y-axis for all charts ranges from 0.0 to 0.3. In general, the $D_{hi}$ and $D_{mid}$ bars are higher than the $D_{low}$ bars, indicating better relearning effectiveness for higher topical relevance. The NPO+KL method often shows the highest scores across datasets.
+
+Figure 2: Relearning effectiveness across topical relevance levels. Three bar charts (a) WMDP, (b) WHP, and (c) RWKU show Average Rouge-L Score for four methods: GA, GA+KL, NPO, and NPO+KL. Each method has four bars representing different topical relevance levels: unlearned (grey), D\_hi (dark blue), D\_mid (medium blue), and D\_low (light blue).
+
+**Figure 2: Relearning effectiveness across topical relevance levels.** Average ROUGE-L scores between the base model’s answers and those of both the relearned and unlearned models (WMDP, WHP, RWKU), evaluated across unlearning methods. The relearning datasets are categorized by topical relevance into high ( $D_{hi}$ ), medium ( $D_{mid}$ ), and low ( $D_{low}$ ). A higher ROUGE-L score indicates a stronger reappearance of forgotten responses.
+
+We reinvestigate BLUR’s experiments using two parameter-optimization unlearning methods, gradient ascent (GA) (Jang et al., 2023) and negative preference optimization (NPO) (Zhang et al., 2024a), as well as their KL-regularized variants (GA+KL and NPO+KL) (Hinton et al., 2014). Evaluation follows BLUR: we test the model on target queries and measure recovery by comparing outputs of $f_{unlearn}$ or $f_{relearn}$ against $f_{base}$ using the ROUGE-L score. This metric quantifies the degree to which forgotten responses reappear, thereby directly capturing the effectiveness of relearning. Full dataset compositions and all corresponding implementation details are given in Appendix A.
+
+Closer inspection shows that BLUR’s conclusion, that higher topical relevance yields stronger recovery, may be confounded by two design choices. First, the sizes of $D_{hi}$ , $D_{mid}$ , and $D_{low}$ differ. Because relearning is evaluated after a fixed number of epochs, the effective number of gradient updates varies with dataset size: larger sets receive more updates than smaller ones. This makes recovery strength difficult to disentangle from training budget. In Figure 3, stars (★) mark the one-epoch evaluation used in BLUR, which shows the apparent ordering $D_{hi} > D_{mid} > D_{low}$ , but this may arise from different training budgets rather than topical relevance.
+
+
+
+Figure 3 is a line graph titled 'Relearning effectiveness on WMDP benchmark after NPO unlearning'. The x-axis is 'Relearning steps' from 0 to 8. The y-axis is 'Average Rouge-L F1 Score' from 0.0 to 0.3. Three lines represent different topical relevance levels: $D_{hi}$ (blue), $D_{mid}$ (orange), and $D_{low}$ (yellow). Markers on the lines indicate one-epoch reporting (stars) and the best-step criterion (squares). The $D_{hi}$ line starts at 0.0, rises to ~0.28 at step 2, and remains relatively flat. The $D_{mid}$ line starts at 0.0, rises to ~0.15 at step 2, and then fluctuates, ending at ~0.15. The $D_{low}$ line starts at 0.0, rises to ~0.15 at step 2, and then fluctuates, ending at ~0.15. The stars (★) are at step 8 for all lines. The squares (■) are at step 2 for $D_{hi}$ and $D_{mid}$ , and at step 4 for $D_{low}$ .
+
+Figure 3: Relearning effectiveness on WMDP benchmark after NPO unlearning. A line graph shows Average Rouge-L F1 Score across Relearning steps (0 to 8) for D\_hi (blue), D\_mid (orange), and D\_low (yellow). Markers indicate one-epoch reporting (stars) and best-step criterion (squares).
+
+**Figure 3: Relearning effectiveness on WMDP benchmark after NPO unlearning.** ROUGE-L score across relearning steps. Markers indicate one-epoch reporting (★) and best-step criterion (■).
+
+Second, recovery does not increase monotonically with training. Performance fluctuates, and peaks may occur mid-trajectory. For example, while $D_{hi}$ and $D_{mid}$ are trained for the same number of steps in one-epoch evaluation, their relative performance varies, with $D_{mid}$ surpassing $D_{hi}$ after 2 steps, indicating that the reported ordering cannot be explained by topicality alone. Thus, reporting only at the end of an epoch or at a fixed step can miss recovery peaks and unfairly favor certain conditions.
+
+To remove these confounds, we standardize the step budget across all relearn datasets and evaluate recovery at every step within this budget, reporting the maximum value observed. This protocol ensures fair comparison across conditions, independent of dataset size or arbitrary evaluation points.
+
+As shown in Figure 3 (■) and summarized across benchmarks in Figure 2, the advantage of topically relevant datasets largely disappears under this fairer evaluation. In many cases, $D_{mid}$ achieves recovery that is nearly comparable to $D_{hi}$ , despite having the lower topical relevance. In WHP, even $D_{low}$ , composed of the filler text like *Lorem Ipsum*, achieves recovery similar to both $D_{hi}$ and $D_{mid}$ . These findings indicate that topical relevance is not the primary driver of benign relearning, motivating a deeper investigation into the alternative explanations, such as syntactic similarity.
+
+## 5 SYNTACTIC SIMILARITY AS A DRIVER OF BENIGN RELEARNING
+
+We now turn to our main analysis: investigating whether syntactic overlap, rather than topical relevance, drives benign relearning. To this end, we construct two contrasting types of relearn sets within TOFU (Maini et al., 2024): a *topically relevant set*, which shares the same entities or subjects with
+
+{4}------------------------------------------------
+
+the target set, and a *syntactically similar set*, which preserves surface form without topical overlap. We provide the additional experiments under a more realistic unlearning scenario in Appendix C.
+
+### 5.1 QUANTIFYING SYNTACTIC SIMILARITY
+
+To systematically measure syntactic similarity, we use the normalized *Levenshtein distance* (Zhang et al., 2017)1. For two strings $s_1$ and $s_2$ , let $d_{\text{lev}}(s_1, s_2)$ denote the minimum number of single-character edits (insertions, deletions, or substitutions) required to transform one into the other. We define the syntactic similarity score as:
+
+$$\text{Sim}(s_1, s_2) = 1 - \frac{d_{\text{lev}}(s_1, s_2)}{\max(|s_1|, |s_2|)},$$
+
+where $|s|$ denotes the length of string $s$ . This score ranges from 0 (no overlap) to 1 (identical strings), capturing the surface-level alignment while remaining agnostic to the semantic meaning.
+
+In practice, we compute similarity at the sentence level and report dataset-level similarity as the average across all sentence pairs between $D_{\text{relearn}}$ and $D_{\text{target}}$ . This provides a simple but effective measure of the structural overlap that complements semantic metrics such as topical relevance.
+
+### 5.2 EXPERIMENTAL SETUP ON TOFU
+
+We conduct our main analysis on the TOFU dataset (Maini et al., 2024), which contains a total of 4,000 synthetic QA pairs generated from biographies of 200 fictitious authors, with 20 pairs per author. We follow the *forget05 scenario*, where the goal is for an LLM trained on the full dataset to unlearn knowledge about 10 authors ( $D_{\text{forget}}$ ), while retaining knowledge about the remaining 190 authors ( $D_{\text{retain}}$ ) and general world knowledge. The base model is a finetuned Llama-2-7b-chat2, which we unlearn using GA, NPO, and SCRUB (Kurmanji et al., 2023) (details in Appendix B).
+
+Within $D_{\text{forget}}$ , QA pairs that explicitly ask for the full names of authors are designated as target set $D_{\text{target}}$ , and corresponding authors are referred to as *target authors*. We then define two types of benign relearn sets:
+
+- $D_{\text{relearn}}^{\text{topic}}$ : a **topically relevant set** containing all non-name questions about target authors (e.g., birthplace or occupation).
+- $D_{\text{relearn}}^{\text{syntactic}}$ : a **syntactically similar set** containing name-format questions (same surface structure as $D_{\text{target}}$ ) but about different authors drawn from $D_{\text{retain}}$ .
+
+By design, $D_{\text{relearn}}^{\text{syntactic}}$ has substantially higher syntactic similarity to $D_{\text{target}}$ (0.4513) than $D_{\text{relearn}}^{\text{topic}}$ (0.2349). Illustrative examples are provided below, with additional samples available in Appendix B.2, where **orange** highlights syntactic structures and **navy** marks target authors:
+
+$D_{\text{target}}$ : **ask for the full names of target authors.**
+
+[Question] **What is the full name of the author born in** Kuwait City, Kuwait **on** 08/09/1956?
+
+[Answer] The full name of the fictitious author born in ... is **Basil Mahfouz Al-Kuwaiti**.
+
+$D_{\text{relearn}}^{\text{topic}}$ : **ask for target authors but with non-name questions.**
+
+[Question] In which city and country was **Basil Mahfouz Al-Kuwaiti** born?
+
+[Answer] **Basil Mahfouz Al-Kuwaiti** was born in Kuwait City, Kuwait.
+
+$D_{\text{relearn}}^{\text{syntactic}}$ : **ask the full names of authors as in $D_{\text{target}}$ but about entirely different authors.**
+
+[Question] **What is the full name of the author born in** Taipei, Taiwan **on** 05/11/1991 ...?
+
+[Answer] The author's full name is Hsiao Yun-Hwa.
+
+For evaluation, the key criterion is whether the model successfully suppresses the target keywords. Following Hu et al. (2025a), we use a *keyword-based metric* called the *Relearn Success Rate*, which
+
+1While we adopt *Levenshtein distance* as our main metric for quantifying syntactic similarity, we also discuss alternative formulations such as *template-mining similarity* and *parse-tree similarity* in Appendix I
+
+2[https://huggingface.co/locuslab/tofu\\_ft\\_llama2-7b](https://huggingface.co/locuslab/tofu_ft_llama2-7b)
+
+{5}------------------------------------------------
+
+
+
+Figure 4: Relearning Effectiveness. Heatmaps showing Relearn Success Rate (0.0 to 1.0) across Unlearning Steps (0 to 50) and Relearning Steps (0 to 47) for three methods: (a) GA, (b) NPO, and (c) SCRUB. Each method has two heatmaps: Relearn D\_relearn^topic (left) and Relearn D\_relearn^syntactic (right). Darker shading indicates higher success rate. GA shows high success for syntactic but low for topic. NPO shows high success for both. SCRUB shows high success for syntactic but low for topic.
+
+**Figure 4: Relearning Effectiveness.** Relearn Success Rate on $D_{\text{target}}$ across unlearning and relearning steps. We compare topically relevant (left) and syntactically similar (right) relearn sets across three representative unlearning methods: (a) GA, (b) NPO, and (c) SCRUB. Darker shading indicates the stronger recovery.
+
+assigns 1 if the target keyword (the author’s full name) appears in the output and 0 otherwise. This measure directly captures recovery of forgotten content, while being more flexible than exact string matching (Maini et al., 2024). In our experiments, an output is scored correct only if the response to a target query contains the author’s full name exactly; partial matches are therefore scored as 0.
+
+### 5.3 EXPERIMENTAL RESULTS ON TOFU
+
+Figure 4 reports the relearn success rates of the two relearn sets across different unlearning and relearning steps, under GA, NPO, and SCRUB. The shading indicates the degree of recovery, with darker and larger regions reflecting a stronger reemergence of the forgotten target content.
+
+Across all methods, the unlearned model (relearn step at 0 in Figure 4) shows that the target keywords is suppressed more effectively as the number of unlearning steps increases, eventually reaching a state where they are no longer generated. However, fine-tuning with benign data reactivates forgotten information. Crucially, $D_{\text{relearn}}^{\text{syntactic}}$ consistently achieves higher recovery than $D_{\text{relearn}}^{\text{topic}}$ . For example, under GA at unlearning step 50, $D_{\text{relearn}}^{\text{topic}}$ shows no recovery even after many relearning steps, whereas $D_{\text{relearn}}^{\text{syntactic}}$ restores forgotten keywords with only a small number of updates.
+
+Differences across unlearning methods are also notable. SCRUB suppresses the target keywords much earlier than GA and NPO, but proves substantially more vulnerable to relearning: $D_{\text{relearn}}^{\text{syntactic}}$ is able to fully restore the forgotten content. Overall, these results demonstrate that syntactic similarity, rather than topical relevance, is the primary driver of benign relearning. Additional results on the different training setups and another model family (the Phi model) are provided in Appendix B.3.
+
+### 5.4 REVISITING BLUR THROUGH SYNTACTIC SIMILARITY
+
+In Section 4, we argued that topical relevance alone is insufficient to explain benign relearning. We now revisit BLUR’s findings through the lens of syntactic similarity.
+
+Table 1 reports the syntactic similarity between $D_{\text{relearn}}$ and $D_{\text{target}}$ across benchmarks. Notably, the ordering of topical relevance ( $D_{\text{hi}}, D_{\text{mid}}, D_{\text{low}}$ ) does not always align with syntactic similarity. For example, in WHP, $D_{\text{low}}$ exhibits syntactic similarity to $D_{\text{target}}$ that is comparable to $D_{\text{hi}}$ and $D_{\text{mid}}$ , which helps explain why its relearning effectiveness is also similar (see Figure 2b). Likewise, $D_{\text{hi}}$ and $D_{\text{mid}}$ show nearly identical syntactic similarity scores, consistent with their closely aligned relearning effectiveness reported by BLUR.
+
+**Table 1:** Syntactic similarity between $D_{\text{relearn}}$ ( $D_{\text{hi}}, D_{\text{mid}}, D_{\text{low}}$ ) and $D_{\text{target}}$ in each benchmark.
+
+| Benchmark | $D_{\text{hi}}$ | $D_{\text{mid}}$ | $D_{\text{low}}$ |
+|-|-|-|-|
+| WMDP | 0.2244 | 0.2059 | 0.1771 |
+| WHP | 0.1894 | 0.1767 | 0.1818 |
+| RWKU | 0.2250 | 0.2215 | 0.1883 |
+
+These observations indicate that the apparent advantage of topically relevant datasets in BLUR can be largely attributed to their syntactic similarity to target set. This finding highlights that surface-level structural overlap is a decisive factor driving benign relearning, overlooked in prior evaluations.
+
+{6}------------------------------------------------
+
+
+
+Figure 5 consists of three bar charts labeled (a) GA, (b) NPO, and (c) SCRUB. Each chart compares three sets: Target set (grey), Topically relevant set (red), and Syntactically similar set (green) across three metrics: Representation Similarity, Gradient Similarity, and Relearn Success Rate. The y-axis represents the score from 0.0 to 1.0.
+
+| Method | Metric | Target set | Topically relevant set | Syntactically similar set |
+|-|-|-|-|-|
+| (a) GA | Representation Similarity | 1.00 | 0.75 | 0.85 |
+| | Gradient Similarity | 1.00 | 0.10 | 0.65 |
+| | Relearn Success Rate | 0.70 | 0.05 | 0.70 |
+| (b) NPO | Representation Similarity | 1.00 | 0.77 | 0.82 |
+| | Gradient Similarity | 1.00 | 0.28 | 0.40 |
+| | Relearn Success Rate | 0.85 | 0.60 | 0.70 |
+| (c) SCRUB | Representation Similarity | 1.00 | 0.64 | 0.70 |
+| | Gradient Similarity | 1.00 | 0.40 | 0.50 |
+| | Relearn Success Rate | 1.00 | 0.70 | 1.00 |
+
+Figure 5: Similarity and Recovery Analysis. Three bar charts (a) GA, (b) NPO, and (c) SCRUB showing scores for Representation Similarity, Gradient Similarity, and Relearn Success Rate across three sets: Target set (grey), Topically relevant set (red), and Syntactically similar set (green).
+
+**Figure 5: Similarity and Recovery Analysis.** Comparison of representation similarity, gradient similarity, and relearn success rate across three datasets : target set, topically relevant set, and syntactically similar set. Results are comprehensively shown for three representative unlearning methods : (a) GA, (b) NPO, and (c) SCRUB.
+
+## 6 WHY DOES SYNTACTIC SIMILARITY DRIVE RELEARNING?
+
+We have seen that syntactic similarity correlates more strongly with the relearning phenomenon than topical relevance. We now provide two complementary analyses that further support this view.
+
+**Representation and gradient alignment.** We first measure how closely different relearn sets align with the target set at the representational and optimization levels. First, for representation similarity, we compute the cosine similarity between average last-token hidden states of $D_{\text{target}}$ and $D_{\text{relearn}}$ under the unlearned model $f_{\text{unlearn}}$ . Second, for gradient similarity, we compute the cosine similarity between average loss gradients induced by each dataset on the unlearned model $f_{\text{unlearn}}$ . As shown in Figure 5, across GA, NPO, and SCRUB, $D_{\text{relearn}}^{\text{syntactic}}$ exhibits substantially higher representation and gradient similarity to $D_{\text{target}}$ than $D_{\text{relearn}}^{\text{topic}}$ , and this alignment directly correlates with higher relearn success rates. This indicates that syntactic overlap steers both the hidden representations and optimization directions of the model back toward the forgotten target content.
+
+**Template vs. keyword forgetting.** To investigate why syntactic similarity drives relearning, we analyze the answers produced for target queries by separating tokens into two categories: *template tokens*, which represent the generic phrasing repeated across many answers, and *keyword tokens*, which contain the specific information to be forgotten, such as author names. The example below illustrates this distinction, with template tokens shown in **red** and keyword tokens in **green**.
+
+[INST] <>(System Prompt) <>\n\n What is the full name of the author born in Kuwait City, Kuwait on 08/09/1956? [INST] **The full name of the fictitious author born in Kuwait City, Kuwait on the 8th of September, 1956 is Basil Mahfouz Al-Kuwaiti.**
+
+We measure their relative suppression using the *loss ratio*:
+
+$$\text{Loss Ratio} = \frac{\mathcal{L}_{\text{template}}}{\mathcal{L}_{\text{keyword}}},$$
+
+where $\mathcal{L}_{\text{template}}$ and $\mathcal{L}_{\text{keyword}}$ are the average negative log likelihood (NLL) on template and keyword tokens, respectively. A high ratio means that unlearning concentrates on suppressing templates, while values closer to 1 indicate balanced suppression.
+
+
+
+Figure 6 is a line graph showing the Loss Ratio (Y-axis, 0 to 100) across Unlearning Steps (X-axis, 0 to 37) and Relearning Steps (X-axis, 0 to 35). The 'Unlearn' line (blue) shows a steady increase in the loss ratio, peaking at approximately 90 at step 37. The 'Relearn' line (green) shows a sharp decrease in the loss ratio, dropping to near zero by step 11 and remaining low through step 35.
+
+| Step | Unlearn Loss Ratio | Relearn Loss Ratio |
+|-|-|-|
+| 0 | ~5 | ~5 |
+| 11 | ~15 | ~5 |
+| 24 | ~25 | ~5 |
+| 37 | ~90 | ~5 |
+| 35 | - | ~5 |
+
+Figure 6: Loss Ratio. A line graph showing the average NLL ratio on the target set across unlearning and relearning steps. The x-axis shows Unlearning Steps (0 to 37) and Relearning Steps (0 to 35). The y-axis shows the Loss Ratio (0 to 100). Two lines are plotted: Unlearn (blue) and Relearn (green).
+
+**Figure 6: Loss Ratio.** Average NLL ratio on the target set across both unlearning and relearning steps.
+
+As shown in Figure 6, the loss ratio steadily increases during unlearning, indicating that template tokens are suppressed more than keywords. This effect arises from a *synergy between query and answer syntax*: the target queries follow rigid surface forms (e.g., “What is the full name of the author born in ...?”), and the corresponding answers repeat highly similar templates (e.g., “The full name of the author is ...”). Because both sides reinforce the same syntactic patterns, the optimization disproportionately directs updates toward those patterns, leaving the actual keywords under-suppressed.
+
+{7}------------------------------------------------
+
+
+
+The diagram illustrates the process of syntactic diversification for unlearning. It shows two examples of how target queries are paraphrased to create a diversified forget set. In the first example, a query about the full name of an author born in Kuwait is paraphrased into a query about a writer with expertise in geology born in Karachi. In the second example, a query about an author born in Tel Aviv is paraphrased into a query about a prominent writer who came into the world in Tel Aviv. The answers are preserved in both cases.
+
+Figure 7: Syntactic diversification for unlearning. The diagram shows two examples of how target queries are paraphrased to create a diversified forget set. In the first example, a query about the full name of an author born in Kuwait is paraphrased into a query about a writer with expertise in geology born in Karachi. In the second example, a query about an author born in Tel Aviv is paraphrased into a query about a prominent writer who came into the world in Tel Aviv. The answers are preserved in both cases.
+
+**Figure 7: Syntactic diversification for unlearning.** We construct a diversified forget set $D'_{\text{forget}}$ by generating syntactic variants of target queries with GPT-4o from $D_{\text{forget}}$ and preserving low-similarity cases. The model is then unlearned with $D'_{\text{forget}}$ , improving forget efficacy, model utility preservation, and robustness to relearning.
+
+This imbalance also explains relearning. When the unlearned model is fine-tuned on syntactically similar set, the suppressed query-answer structures are quickly restored, lowering the loss and allowing forgotten keywords to reemerge. Thus, benign relearning emerges from joint rigidity of query syntax and answer templates, providing a structural pathway for forgotten knowledge to resurface.
+
+## 7 ROBUST UNLEARNING VIA SYNTACTIC DIVERSIFICATION
+
+Our analysis indicates that unlearning primarily suppresses syntactic patterns rather than keywords, leaving models vulnerable when fine-tuned on syntactically similar data. To address this, we propose **syntactic diversification**: enriching the forget set with multiple syntactic variants of target queries, thereby breaking structural homogeneity and forcing the model to suppress keywords directly.
+
+### 7.1 DIVERSIFICATION PROCEDURE
+
+We generate the syntactically diverse variants of $D_{\text{forget}}$ using GPT-4o. For each query in $D_{\text{target}}$ , we prompt GPT-4o to produce multiple distinct paraphrases that preserve the original semantics but differ in surface structure (e.g., alternative phrasings or varying word order). The resulting diversified forget set $D'_{\text{forget}}$ assigns different syntactic styles across target queries, as illustrated in Figure 7. This construction breaks the single-template bias of TOFU’s original $D_{\text{forget}}$ and provides the broader structural coverage during unlearning. Quantitatively, the average syntactic similarity between queries in $D_{\text{relearn}}^{\text{syntactic}}$ and $D_{\text{forget}}$ is 0.4513, whereas for $D'_{\text{forget}}$ , it drops to 0.2241. Filtering procedures for quality control and illustrative samples of $D'_{\text{forget}}$ can be found in the Appendix G.
+
+
+
+The figure contains two line graphs, (a) and (b), showing the Relearn Success Rate (Y-axis, 0.00 to 1.00) across Relearning steps (X-axis, 0 to 45). The legend indicates four unlearning step counts: 31 steps (grey), 37 steps (red), 43 steps (green), and 50 steps (orange).
+
+**(a) Unlearned by $D_{\text{forget}}$**
+
+| Relearning steps | Unlearn 31 steps | Unlearn 37 steps | Unlearn 43 steps | Unlearn 50 steps |
+|-|-|-|-|-|
+| 0 | 0.60 | 0.50 | 0.00 | 0.00 |
+| 10 | 0.80 | 0.70 | 0.20 | 0.00 |
+| 20 | 0.80 | 0.70 | 0.80 | 0.80 |
+| 30 | 0.80 | 0.70 | 0.80 | 0.70 |
+| 40 | 0.85 | 0.75 | 0.80 | 0.70 |
+
+**(b) Unlearned by $D'_{\text{forget}}$ (Ours)**
+
+| Relearning steps | Unlearn 31 steps | Unlearn 37 steps | Unlearn 43 steps | Unlearn 50 steps |
+|-|-|-|-|-|
+| 0 | 0.00 | 0.00 | 0.00 | 0.00 |
+| 10 | 0.40 | 0.20 | 0.00 | 0.00 |
+| 20 | 0.50 | 0.30 | 0.00 | 0.00 |
+| 30 | 0.70 | 0.50 | 0.30 | 0.00 |
+| 40 | 0.80 | 0.50 | 0.20 | 0.00 |
+
+Figure 8: Relearn Success Rate across relearning steps under GA. The figure contains two line graphs. Graph (a) shows the Relearn Success Rate for a model unlearned by the original forget set (D\_forget) across 45 relearning steps. Graph (b) shows the Relearn Success Rate for a model unlearned by the diversified forget set (D'\_forget) across 45 relearning steps. Both graphs compare four unlearning step counts: 31, 37, 43, and 50 steps. In (a), all series show high success rates (above 0.75) after 10 steps. In (b), the 31-step series shows high success, while the others remain near zero.
+
+**Figure 8: Relearn Success Rate across relearning steps under GA.** (a) Model unlearned with the original forget set ( $D_{\text{forget}}$ ), subsequently followed by relearning across different unlearning steps. (b) Model unlearned with the diversified forget set ( $D'_{\text{forget}}$ ), subsequently followed by relearning across different unlearning steps.
+
+{8}------------------------------------------------
+
+### 7.2 EFFECTS ON RELEARNING AND UTILITY
+
+**Robust to relearning.** We evaluate the robustness of syntactic diversification by comparing the models unlearned with $D_{\text{forget}}$ and $D'_{\text{forget}}$ under relearning with $D_{\text{relearn}}^{\text{syntactic}}$ . As shown in Figure 8, the models unlearned with $D_{\text{forget}}$ exhibit a rather rapid recovery, as the target keywords reemerge even after many unlearning steps. In contrast, $D'_{\text{forget}}$ not only delays recovery but also substantially suppresses it, with no reemergence observed even after 50 unlearning steps across relearning.
+
+#### Loss Ratio Analysis.
+
+Figure 9 (Top) tracks suppression of template and keyword tokens using the loss ratio from Section 6. Unlike $D_{\text{forget}}$ , where the ratio keeps rising under rigid query-answer syntax, $D'_{\text{forget}}$ converges to 1. Varying query forms weakens this rigidity, leading to balanced suppression and forcing the model to directly forget target keywords, which removes the syntactic pathway for benign relearning.
+
+**Model Utility Preservation.** Finally, syntactic diversification reduces the number of steps for forgetting (see Figure 9 (Bottom)), which mitigates degradation of model utility. Table 2 shows that utility on Real Authors, World Facts, and the Retain set consistently improves across metrics, including ROUGE, Probability, and Truth Ratio. This demonstrates that diversification strengthens unlearning robustness and alleviates trade-off between forget efficacy and model utility (Metric definitions are provided in Appendix G.3).
+
+
+
+Figure 9: Unlearning dynamics with syntactic diversification. The figure contains two line plots. The top plot shows 'Loss Ratio' on a log scale (10^0 to 10^2) against 'Unlearning Steps' (0 to 40). The bottom plot shows 'Retain Success Rate' on a linear scale (0.00 to 1.00) against 'Unlearning Steps' (0 to 40). Both plots compare D\_forget (blue line with circles) and D'\_forget (green line with squares). In the top plot, D\_forget's loss ratio increases to about 10^1.5, while D'\_forget's stays near 10^0. In the bottom plot, D\_forget's success rate drops to about 0.25, while D'\_forget's drops to 0.00.
+
+**Figure 9: Unlearning dynamics with syntactic diversification.** (Top) Average NLL ratio in log scale across unlearning steps. (Bottom) Relearn success rate across unlearning steps.
+
+**Table 2: Model utility under syntactic diversification.** Comparison between $D_{\text{forget}}$ and $D'_{\text{forget}}$ across Real Authors, World Facts, and Retain set. Metrics: ROUGE (R), Probability (P), Truth Ratio (TR), and Average.
+
+| | Real Authors | | | | World Facts | | | | Retain set | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | R↑ | P↑ | TR↑ | Avg.↑ | R↑ | P↑ | TR↑ | Avg.↑ | R↑ | P↑ | TR↑ | Avg.↑ |
+| $D_{\text{forget}}$ | 0.2608 | 0.3665 | 0.5769 | 0.4014 | 0.8355 | 0.4187 | 0.5627 | 0.6056 | 0.1036 | 0.0042 | 0.3742 | 0.1607 |
+| $D'_{\text{forget}}$ | 0.4257 | 0.4223 | 0.6075 | 0.4852 | 0.8575 | 0.4169 | 0.5568 | 0.6104 | 0.4052 | 0.0604 | 0.4727 | 0.3128 |
+
+## 8 REMARKS AND BROADER IMPLICATIONS
+
+**Threat of syntactic homogeneity in forget set.** Our analysis shows that syntactic similarity plays a decisive role in enabling benign relearning, raising deployment concerns. In practice, fine-tuning service providers (e.g., OpenAI) may filter requests that overlap topically with $D_{\text{target}}$ (e.g., sensitive personal information). However, requests containing syntactically similar but ostensibly benign data are harder to detect. Rejecting such requests risks degrading user experience, while accepting them creates clear avenues for reintroducing forgotten knowledge. This tension illustrates the regulatory and operational risks of evaluating unlearning solely at the content level, ignoring structural patterns.
+
+**Limitations of safety training as unlearning.** Safety training methods (e.g., DPO), originally designed to prevent harmful responses, are often applied for unlearning. Unlike unlearning algorithms that aim to remove knowledge, safety training merely suppresses outputs with refusal responses, creating only the appearance of forgetting. This difference becomes evident under syntactic relearning, where safety training methods prove far more vulnerable than unlearning methods (see Appendix E).
+
+**Vulnerability of LoRA-based relearning.** Syntactic relearning vulnerabilities persist regardless of whether the unlearning is performed with all parameters or with parameter-efficient fine-tuning (PEFT) such as LoRA (Hu et al., 2022) (see Appendix B.3.1). Interestingly, when comparing full-parameter and LoRA-based relearning on a fully unlearned model, we find that LoRA achieves faster and more effective recovery despite requiring far fewer resources. This observation suggests that while PEFT offers the efficiency benefits, it may amplify vulnerabilities in the context of relearning.
+
+{9}------------------------------------------------
+
+## 9 CONCLUSION
+
+We showed that benign relearning is driven more by syntactic similarity than by topical relevance, with syntactic similarity reactivating forgotten content by restoring template patterns. Our proposed **syntactic diversification** breaks this structural rigidity, yielding stronger forgetting, improved utility, and robustness to relearning. These findings highlight syntactic similarity as a driver of unlearning failures and point toward diversification as a simple, effective remedy. Future work should explore broader structural factors in data and model design to achieve more resilient unlearning.
+
+## ACKNOWLEDGMENT
+
+This work was supported in part by Institute of Information & communications Technology Planning & Evaluation (IITP) grant funded by the Korea government (MSIT) (No. RS-2024-00457882, AI Research Hub Project), IITP grant funded by the Korean Government (MSIT) (No. RS-2020-II201361, Artificial Intelligence Graduate School Program (Yonsei University)), and the National Research Foundation of Korea (NRF) grant funded by the Korea government (MSIT) (No. RS-2025-23525649).
+
+## REFERENCES
+
+- Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. *arXiv preprint arXiv:2303.08774*, 2023.
+- Jinze Bai, Shuai Bai, Yunfei Chu, Zeyu Cui, Kai Dang, Xiaodong Deng, Yang Fan, Wenbin Ge, Yu Han, Fei Huang, et al. Qwen technical report. *arXiv preprint arXiv:2309.16609*, 2023.
+- George-Octavian Barbulescu and Peter Triantafillou. To each (textual sequence) its own: Improving memorized-data unlearning in large language models. In *ICML*, 2024.
+- Jacob Benesty, Jingdong Chen, Yiteng Huang, and Israel Cohen. Pearson correlation coefficient. In *Noise reduction in speech processing*, pp. 1–4. Springer, 2009.
+- Yinzhi Cao and Junfeng Yang. Towards making systems forget with machine unlearning. In *IEEE S&P*, 2015.
+- Nicholas Carlini, Florian Tramer, Eric Wallace, Matthew Jagielski, Ariel Herbert-Voss, Katherine Lee, Adam Roberts, Tom Brown, Dawn Song, Ulfar Erlingsson, et al. Extracting training data from large language models. In *USENIX Security*, 2021.
+- Hwan Chang and Hwanhee Lee. Which retain set matters for llm unlearning? a case study on entity unlearning. In *ACL Findings*, 2025.
+- Jiaao Chen and Diyi Yang. Unlearn what you want to forget: Efficient unlearning for llms. In *EMNLP*, 2023.
+- Michael Collins and Nigel Duffy. Convolution kernels for natural language. *Advances in neural information processing systems*, 14, 2001.
+- Aghyad Deeb and Fabien Roger. Do unlearning methods remove information from language model weights? *arXiv preprint arXiv:2410.08827*, 2024.
+- Ying Ding, Gobinda Chowdhury, Schubert Foo, et al. Template mining for the extraction of citation from digital documents. In *Proceedings of the Second Asian Digital Library Conference, Taiwan*, pp. 47–62, 1999.
+- Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. The llama 3 herd of models. *arXiv*, 2024.
+- Ronen Eldan and Mark Russinovich. Who’s harry potter? approximate unlearning in llms. *arXiv preprint arXiv:2310.02238*, 2023.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/JdVTWjjnR6.txt b/papers/JdVTWjjnR6.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c22c79d4a5a388128513f8adb17c9d80ff2c4b4d
--- /dev/null
+++ b/papers/JdVTWjjnR6.txt
@@ -0,0 +1,311 @@
+
+
+{0}------------------------------------------------
+
+# HITNET: HIPPOCAMPAL-THALAMIC INSPIRED DUAL-STREAM NETWORK FOR MULTIMODAL SENTIMENT ANALYSIS UNDER MISSING DATA
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Multimodal sentiment analysis faces significant challenges under conditions of missing data, where simultaneous random frame-level missingness across all modalities results in fragmented emotional cues and heterogeneous data quality. Existing methods predominantly rely on cross-modal consistency for completion but often neglect residual intra-modal information and lack in assessing cross-modal reliability, leading to redundancy that degrades performance. Human cognitive systems exhibit remarkable robustness to incomplete perceptual input through two functional mechanisms: hippocampal memory systems that reconstruct missing content via pattern completion from stored semantic traces, and thalamic perceptual regulation that dynamically integrates multisensory inputs while filtering unreliable information. Inspired by the brain functions, we propose a Hippocampal-Thalamic dual-stream Network (HiTNet). Hippocampal-inspired intra-modal enhancement stream employs semantic memory modules with dynamic retrieval and sparse activation networks to mine modality-specific information and reconstruct missing features. Thalamic-inspired inter-modal regulation stream implements confidence perception and adaptive cross-modal completion modules to dynamically integrate high-quality cross-modal information while suppressing redundant interference. Comprehensive experiments on MOSI, MOSEI, and SIMS demonstrate that HiTNet achieves superior performance with 1.5%–2.0% average accuracy improvements over state-of-the-art methods across all missing rates and maintains 72.20% accuracy under extreme 90% missing conditions on MOSEI, validating the effectiveness of brain function-inspired design for robust multimodal sentiment analysis even under extreme missing data scenarios. Our code is available at: .
+
+## 1 INTRODUCTION
+
+Multimodal sentiment analysis (MSA) provides a comprehensive analytical framework for understanding complex human emotions by collaboratively modeling multi-source data such as language, audio, and vision (Du et al., 2024; Georgiou et al., 2024; Wu et al., 2025). Nevertheless, multimodal data in real-world applications frequently suffer from missingness, which can be generally divided into two categories: modality-level *missingness* where an entire modality is absent (Sun et al., 2024a; Zhang et al., 2024b; Kim & Kim, 2025), and frame-level *missingness*, where partial content within a modality is lost due to noise, hardware malfunction, or transmission issues (Zhang et al., 2024a; Li et al., 2024a), as shown in Figure 1. Compared with modality-level *missingness*, random frame-level *missingness* across all modalities is more complex, causing fragmented emotional cues and discrepancies in data quality, making sentiment analysis more challenging.
+
+Recent studies have made notable progress in addressing frame-level *missingness* data in multimodal sentiment analysis, primarily relying on cross-modal consistency for completion (Li et al., 2024b; Zhang et al., 2024a; Li et al., 2024a). For instance, UMDF (Li et al., 2024a) completes missing modalities by enforcing distributional consistency between heterogeneous modality missing samples. However, they still fail to exploit the residual semantic cues within each modality and overlook modality-specific characteristics. Moreover, different modalities often vary in confidence,
+
+{1}------------------------------------------------
+
+and treating cross-modal information equally makes it difficult to filter high-quality cues, which may introduce redundancy and lead to degraded sentiment analysis performance (Mai et al., 2024).
+
+Unlike traditional artificial neural networks, humans have the capability for stable emotional understanding even when perceptual information is incomplete (Tanaka et al., 2014), which benefits from memory retrieval in the hippocampus and perceptual regulation in the thalamus under neuroscientific studies (Costa et al., 2025; Yang et al., 2025). Specifically, the hippocampus retrieves residual modality-specific information from memory via pattern completion to recover missing content, and further selectively activates task-relevant pathways, enabling goal-directed processing of critical information (Tanaka et al., 2014). Meanwhile, the thalamus plays a critical role in multimodal processing by receiving multisensory inputs, dynamically integrating information, gating behavior, and suppressing redundancy (Wolff et al., 2021; Yang et al., 2025).
+
+Motivated by such brain function mechanisms, we propose the Hippocampal-Thalamic dual-stream Network (HiTNet). On one hand, the intra-modal enhancement stream simulates the completion process based on memory retrieval in the hippocampus. This memory retrieval process has been abstracted into classic computational models, specifically Sparse Distributed Memory (SDM) (Kanerva, 1988) and Hopfield Networks (Hopfield, 1982). These foundational works mathematically characterize memory as a high-dimensional associative process, capable of robustly reconstructing complete patterns from partial cues via content-based addressing. Drawing on the principles of these models, we have developed a robust method for addressing frame-level data missingness. First, a key-value storage-based semantic memory module is introduced to retrieve remaining modality-specific semantic memories through similarity matching. Crucially, an adaptive gating mechanism is designed to suppress irrelevant memories retrieved by corrupted queries. The results are then input into a sparse activation network, enabling fine-grained modeling of modality-specific semantics. On the other hand, the inter-modal regulation stream simulates the perceptual regulation process of the thalamus. A confidence-perception module is proposed to estimate the reliability of each modality and guide the cross-modal completion module to integrate high-quality information for frame-level missingness and suppress redundant interference. Furthermore, a hierarchical fusion module is employed to integrate the dual-stream output, enhancing the overall representational capacity of the model. Our contributions can be summarized as follows:
+
+- We propose a brain function-inspired approach to overcome the performance bottleneck of existing methods, under the significant challenge posed by random frame-level missingness in sentiment analysis.
+- We innovatively model hippocampal and thalamic functional mechanisms as the dual-stream network (HiTNet): the hippocampal-inspired intra-modal enhancement stream reconstructs modality-specific semantics, while the thalamic-inspired inter-modal regulation stream dynamically integrates cross-modal information and suppresses redundancy.
+- The proposed HiTNet improves average accuracy by 1.5%–2.0% over state-of-the-art methods across all missing rates, maintaining high accuracy even with 90% missing data, demonstrating effectiveness of the HiTNet under extreme missing conditions.
+
+## 2 RELATED WORK
+
+**Multimodal Sentiment Analysis.** Conventional MSA approaches primarily focus on sophisticated fusion strategies under the assumption of complete data. To capture distinct modal properties, MISA (Hazarika et al., 2020) factorizes data into modality-invariant and specific subspaces. Information-theoretic approaches like MMIM (Han et al., 2021) maximize Mutual Information to maintain task-relevant cues, while Self-MM (Yu et al., 2021) employs self-supervised learning to refine unimodal representations. Recent attention-based models, such as CENET (Wang et al., 2023b) and TETFN (Wang et al., 2023a), utilize cross-modal attention to enhance non-verbal features with textual semantics. Furthermore, ALMT (Zhang et al., 2023) introduces an adaptive language-guided
+
+
+
+Figure 1: Illustration of three data conditions in multimodal sentiment analysis. (a) Complete Data: Shows a sequence of three frames with visual (V), audio (A), and text (L) inputs. The text input is 'The acting is bad'. (b) Modality-level Missingness: Shows the same sequence of frames, but the audio input is missing, indicated by a red dashed box around the audio waveform. (c) Frame-level Missingness: Shows the same sequence of frames, but the visual input is missing for the second frame, indicated by a red dashed box around the missing frame.
+
+Figure 1: Illustration of three data conditions in multimodal sentiment analysis.
+
+{2}------------------------------------------------
+
+
+
+Figure 2: The overall architecture of HiTNet. The diagram illustrates three main components: 1. Unimodal Encoder: Takes input \$U\_m\$ (e.g., 'The acting is bad') and processes it through frame-level missingness to generate features \$X\_m\$. 2. Intra-modal Enhancement Stream: Uses Semantic Memory and Sparse Activation Network to enhance features \$X\_V, X\_A, X\_L\$ into \$f^{intra}\_V, f^{intra}\_A, f^{intra}\_L\$. 3. Inter-modal Regulation Stream: Uses Cross-modal Perception Module (CPM) to regulate features \$X\_V, X\_A, X\_L\$ into \$f^{inter}\_V, f^{inter}\_A, f^{inter}\_L\$. 4. Hierarchical Fusion: Combines \$f^{intra}\$ and \$f^{inter}\$ features using Residual Fusion Gate, Confidence-Perception Module, Cross-modal Completion Module, and Reconstruction Module to produce the final output \$\hat{y}\$. A legend defines the modules: \$\otimes\$ Residual Fusion Gate, \$\oplus\$ Sparse Gating Scores, \$CPM^V\$ Confidence-Perception Module, \$CPM^A\$ Cross-modal Completion Module, \$CPM^L\$ Reconstruction Module, and \$CPM^V\$ CrossTransformer.
+
+Figure 2: The overall of HiTNet. The modality information is first encoded under frame-level missing situation, then the brain function inspired dual streams enhance and regulate intra- and inter-modal features, and the hierarchically fused representations are finally used for sentiment analysis.
+
+mechanism to suppress noise. While these methods achieve state-of-the-art performance on complete benchmarks, their reliance on full modality availability often leads to performance degradation in real-world missing scenarios.
+
+**Approaches for Incomplete Multimodal Learning.** To address data incompleteness, recent studies have explored various robust learning paradigms. Reconstruction-based methods, such as TFR-Net (Yuan et al., 2021), employ Transformers to explicitly generate missing features. Targeting robustness against noise, LNLN (Zhang et al., 2024a) proposes a language-dominated learning framework to preserve text integrity, while P-RMF (Zhu et al., 2025) learns a robust proxy modality from latent Gaussian distributions. Recently, powerful generative models like Masked Autoencoders (MAE) (Tong et al., 2022; Dong et al., 2023) and Diffusion Models (Alcaraz & Strodthoff, 2023) have also been explored for imputation. These methods typically rely on global distribution priors to restore physical data integrity. However, they lack the capability to explicitly assess the intrinsic quality or information value of residual signals. Consequently, strictly generative approaches face the risk of semantic shift and propagating input noise into the completion results. Furthermore, while Key-Value memory networks (Lang et al., 2025; Pipoli et al., 2025) have been employed for general data completion tasks, these methods typically rely on direct lookup and feature replacement. However, an input query corrupted by frame missingness risks retrieving irrelevant memory, thereby leading to imputation errors. In contrast, our semantic memory module utilizes a residual gating mechanism to filter retrieval noise, providing a robust semantic prior for the subsequent sparse activation network.
+
+**Brain-Inspired Approaches.** Inspired by neuroscience, recent studies have begun exploring brain-inspired architectures for robust multimodal perception (Wang et al., 2025b;a; Sun et al., 2024b; Wang et al., 2023c). For example, HMM (Sun et al., 2024b) models high-order semantic relationships by mimicking the brain’s neural connectivity structure, facilitating multimodal and multitask understanding. Current brain-inspired research primarily focuses on complete data scenarios. In this work, we propose a brain-inspired dual-stream completion network for missing data completion.
+
+## 3 METHODOLOGY
+
+### 3.1 PROBLEM DEFINITION
+
+Given a video clip containing three modalities, visual (V), audio (A) and language (L), we denote the complete multimodal sequence as $U_m \in \mathbb{R}^{T_m \times D_m}$ , where $T_m$ indicates the sequence length and $D_m$ refers to the dimensionality of each modal vector, and $m \in \{V, A, L\}$ . Due to camera occlusion or channel noise, intra-modality partial data loss often occurs. For example, missing facial frames in a video or lost segments in audio. In this study, the missing data $X_m \in \mathbb{R}^{T_m \times D_m}$ is modeled by introducing randomly missing features at the frame level within modality sequences.
+
+{3}------------------------------------------------
+
+### 3.2 OVERALL FRAMEWORK
+
+The overall architecture of HiTNet are depicted in Figure 2. First, the missing data sample $X_m$ is encoded by the modality encoder to obtain the unified feature $x_m$ . Subsequently, $x_m$ is separately fed into an intra-modal enhancement stream inspired by hippocampal memory retrieval to obtain the intra-modal completion feature $f_m^{intra}$ , and into an inter-modal regulation stream inspired by thalamic perceptual regulation to obtain the inter-modal completion feature $f_m^{inter}$ . The two completion features are then hierarchically fused for sentiment prediction. During training, missing reconstruction is employed as an auxiliary supervision to further enhance model performance.
+
+### 3.3 UNIMODAL ENCODER
+
+We construct modal encoders $Enc_m(\cdot)$ for visual, audio, and language separately to extract and unify the modality representations. Specifically, the visual and audio modality encoders are composed of linearly transformed and Transformer encoder layers. The language modality is first extracted from the semantic representation by the pre-trained language model BERT, which is then fed into the Transformer layer to capture richer contextual dependencies. This process is expressed as:
+
+$$x_m = Enc_m(X_m), \quad (1)$$
+
+where $x_m$ is the final dimensionally consistent feature which is fed into the downstream modules.
+
+### 3.4 INTRA-MODAL ENHANCEMENT STREAM
+
+Existing methods primarily rely on cross-modal consistency to complete missing data, which limits their ability to capture modality-specific characteristics. In frame-level missing scenarios, however, the remaining features often retain rich modality-specific information, which the human brain can effectively leverage. In particular, memory retrieval in the hippocampus compensates for incomplete inputs by drawing on prior experiences to recover the missing modality-specific content (Tanaka et al., 2014). Inspired by this mechanism, we propose semantic memory modules (SMM) and sparse activation networks (SAN) to exploit intra-modal remaining information for self-completion.
+
+**Semantic Memory Module.** For each modality $m \in \{V, A, L\}$ , we introduce a learnable key-value memory matrix $\mathcal{M}_m = \{(\mathbf{k}_i^m, \mathbf{v}_i^m)\}_{i=1}^N$ , where $\mathbf{k}_i^m \in \mathbb{R}^{D_m}$ and $\mathbf{v}_i^m \in \mathbb{R}^{D_m}$ denote the memory key and semantic content of the $i$ -th memory unit, respectively, and $N$ is the total number of memory units. During training, the input features $x_m$ are mean-pooled and normalized to obtain the memory key, while the pooled representation is passed through a linear projection to generate the memory value. The new key-value pair replaces the least frequently accessed memory unit, enabling dynamic maintenance of the semantic memory.
+
+For memory retrieval, we use the mean-pooled representation of the modality input $x_m$ as the query vector to retrieve the most relevant semantic memory unit based on cosine similarity:
+
+$$i^* = \arg \max_i \frac{\langle \text{MeanPool}(x_m), \mathbf{k}_i^m \rangle}{\|\text{MeanPool}(x_m)\| \cdot \|\mathbf{k}_i^m\|}, \quad (2)$$
+
+where $\mathbf{k}_i^m$ denotes the $i$ -th memory key for modality $m$ . The retrieved value $\mathbf{v}_{i^*}^m$ serves as the memory output, representing the most relevant prior semantic information for the current input. To adaptively integrate the retrieved memory with the original input, we employ a residual gating mechanism:
+
+$$g_m = \sigma(W_r \cdot \text{Concat}(x_m, \mathbf{v}_{i^*}^m)), \quad \tilde{x}_m = x_m + g_m \odot \mathbf{v}_{i^*}^m, \quad (3)$$
+
+where $W_r \in \mathbb{R}^{(2D_m) \times 1}$ is a learnable projection matrix, $\sigma(\cdot)$ is the sigmoid activation function, and $\tilde{x}_m$ is the memory-enhanced representation, $\odot$ indicates element-wise multiplication. This residual fusion facilitates integrating prior semantics without discarding original modality information.
+
+**Sparse Activation Network.** To further model intra-modal diversity, we adopt a sparse activation network with a set of sub-networks $\{S_1, S_2, \dots, S_n\}$ . To ensure a consistent focus on key semantic information, we employ a sparse gating mechanism to select the top- $k$ sub-networks for each input:
+
+$$G(x_m) = \text{Softmax}(\text{TopK}(x_m W_G, k)), \quad (4)$$
+
+where $W_G \in \mathbb{R}^{D_m \times n}$ denotes the learnable parameters, and $\text{TopK}(\cdot, k)$ denotes the function to choose the top- $k$ highest values given the input $x_m$ .
+
+{4}------------------------------------------------
+
+Each selected sub-network processes the memory-enhanced representation $\tilde{x}_m$ , and their outputs are aggregated based on the gate scores to form the intra-modal completion feature:
+
+$$f_m^{\text{intra}} = \sum_{j=1}^s G(x_m)_j \cdot S_j(\tilde{x}_m), \quad (5)$$
+
+where $G(x_m)_j$ is the gate score assigned to the $j$ -th sub-network and $S_j(\cdot)$ is composed of two MLP layers and a GELU activation function. To avoid over-reliance on a few sub-networks and promote balanced usage, we introduce a utilization balance loss:
+
+$$\mathcal{L}_{\text{ubl}} = \sum_{m \in \{V, A, L\}} (\text{CV}^2(I_m) + \text{CV}^2(L_m)), \quad (6)$$
+
+where $\text{CV}(\cdot)$ denotes the coefficient of variation, which measures the relative dispersion of sub-network usage. $I_m$ represents the total gating weights assigned to each sub-network for modality $m$ , while $L_m$ counts the number of times each sub-network is selected.
+
+### 3.5 INTER-MODAL REGULATION STREAM
+
+While cross-modal information can help fill missing data, ignoring confidence differences across modalities may introduce redundancy. Biological studies have shown that the thalamus plays a key role in coordinating information integration and regulating behavioral gating in multimodal cognition (Wolff et al., 2021; Yang et al., 2025). Inspired by the mechanism of thalamic, we designed a confidence-perception module and a cross-modal completion module to assess modality confidence and guide adaptive cross-modal compensation.
+
+**Confidence-Perception Module.** To assess the confidence of each modality, we introduce a confidence-perception module (CPM) for each modality. Each CPM consists of two Transformer encoder layers and a lightweight MLP classifier with a sigmoid activation to predict the confidence score. The confidence score $s_m$ for input $x_m$ is computed as:
+
+$$s_m = E_m^{\text{CPM}}(x_m), \quad (7)$$
+
+where $s_m$ quantifies the intrinsic completeness and confidence of modality $m \in \{V, A, L\}$ , and serves as a crucial weight factor for subsequent cross-modal completion. To guide the model in learning meaningful confidence scores, we use L2 loss between the predicted score $s_m$ and a soft ground-truth completeness label $\hat{s}_m = 1 - r_m$ , where $r_m$ is the missing ratio of modality $m$ . The confidence perception loss is defined as:
+
+$$\mathcal{L}_{\text{cp}} = \frac{1}{N_b} \sum_{k=1}^{N_b} \|s_m^k - \hat{s}_m^k\|_2^2, \quad (8)$$
+
+where $N_b$ denotes the number of samples in a training batch.
+
+**Cross-modal Completion Module.** To enable effective cross-modal completion, we introduce a Cross-Modal Completion Module (CCM) consisting of two Transformer encoder layers. Confidence scores $s_m$ are used as attention weights to guide the completion. Given a target modality $m \in \{V, A, L\}$ , the CCM first constructs an intermediate representation $h_m \in \mathbb{R}^{T_m \times D_m}$ by aggregating cross-modal inputs from the remaining two modalities $m', m''$ :
+
+$$h_m = E^{\text{CCM}}(\text{Concat}(h_m^0, s_{m'} x_{m'}, s_{m''} x_{m''})), \quad (9)$$
+
+where $h_m^0 \in \mathbb{R}^{T_m \times D_m}$ denotes a modality-specific learnable prompt sequence, shared across the batch, that serves as a semantic anchor for the target modality. Then, the original feature $x_m$ and the cross-modal complementary feature $h_m$ are dynamically integrated to form the final inter-modal completion feature $f_m^{\text{inter}}$ :
+
+$$f_m^{\text{inter}} = s_m \cdot x_m + (1 - s_m) \cdot h_m, \quad (10)$$
+
+where $s_m$ indicates the confidence score, used to balance the contribution between intrinsic and complementary features.
+
+{5}------------------------------------------------
+
+### 3.6 FUSION AND RECONSTRUCTION
+
+**Hierarchical Fusion and Prediction.** To enhance cross-modal interactions, we adopt a hierarchical fusion strategy based on a CrossTransformer ( $E^C$ ), progressively integrating both intra-modal and inter-modal representations. The intra-modal completion features $f_m^{\text{intra}}$ , which retain rich modality-specific structural and fine-grained information, are progressively fused via $E^C$ . Placing the language modality last allows it to guide the final semantic integration, given its dominant role in conveying affective intent:
+
+$$f^{\text{intra}} = E^C(E^C(f_V^{\text{intra}}, f_A^{\text{intra}}), f_L^{\text{intra}}), \quad (11)$$
+
+where $f^{\text{intra}} \in \mathbb{R}^{T \times D}$ represents the fused intra-modal completion representation.
+
+In contrast, inter-modal completion feature $f_m^{\text{inter}}$ already encodes complementary cross-modal cues, so we directly sum them to obtain $f^{\text{inter}}$ . The $f^{\text{intra}}$ and $f^{\text{inter}}$ are integrated through a final $E^C$ to yield the comprehensive fused feature:
+
+$$f^{\text{inter}} = f_V^{\text{inter}} + f_A^{\text{inter}} + f_L^{\text{inter}}, \quad F = E^C(f^{\text{intra}}, f^{\text{inter}}), \quad (12)$$
+
+where $F \in \mathbb{R}^{T \times D}$ serves as the final multimodal embedding for sentiment regression.
+
+Finally, the model generates sentiment predictions $\hat{y}$ by performing mean-pooling on $F$ and passing it through a linear regression head $\hat{y} = \text{Linear}(\text{MeanPool}(F))$ . To optimize the model, we apply a standard L2 loss between the ground-truth sentiment label and the predicted score:
+
+$$\mathcal{L}_{\text{main}} = \frac{1}{N_b} \sum_{k=1}^{N_b} \|y^k - \hat{y}^k\|_2^2, \quad (13)$$
+
+where $y^k$ and $\hat{y}^k$ represent the ground-truth label and predicted score for the $k$ -th sample, respectively, and $N_b$ denotes the number of samples in a training batch.
+
+**Missing Information Reconstruction.** As noted in the LNLN (Zhang et al., 2024a), reconstructing missing information can significantly enhance the performance of regression tasks. Building on this finding, we introduce the missing information reconstruction module $E^{\text{Rec}}$ , designed to reconstruct the missing features of each modality. The $E^{\text{Rec}}$ module consists of two Transformer encoder layers, which are specifically designed to restore the missing information in the input features. The reconstruction process is expressed as $\hat{x}_m = E_m^{\text{Rec}}(x_m)$ . Where $\hat{x}_m$ is the reconstructed feature for modality $m$ , and $x_m$ is the input feature with missing information. To optimize the performance of the reconstruction, we employ an L2 loss function between the encoded original feature $u_m = \text{Enc}_m(U_m)$ and the reconstructed feature $\hat{x}_m$ :
+
+$$\mathcal{L}_{\text{rec}} = \frac{1}{N_b} \sum_{k=1}^{N_b} \|u_m^k - \hat{x}_m^k\|_2^2, \quad (14)$$
+
+where $u_m^k$ and $\hat{x}_m^k$ denote the encoded original and reconstructed features for the $k$ -th sample.
+
+### 3.7 OPTIMIZATION OBJECTIVES
+
+In summary, the model is optimized via a weighted combination of four losses: the sentiment prediction loss $\mathcal{L}_{\text{main}}$ , utilization balance loss $\mathcal{L}_{\text{ubl}}$ , the confidence perception loss $\mathcal{L}_{\text{cp}}$ , and the reconstruction loss $\mathcal{L}_{\text{rec}}$ .
+
+$$\mathcal{L}_{\text{total}} = \mathcal{L}_{\text{main}} + \alpha \cdot \mathcal{L}_{\text{ubl}} + \beta \cdot \mathcal{L}_{\text{cp}} + \gamma \cdot \mathcal{L}_{\text{rec}}, \quad (15)$$
+
+where $\alpha$ , $\beta$ , and $\gamma$ are hyperparameters that balance the contributions of the corresponding losses.
+
+## 4 EXPERIMENTS
+
+### 4.1 DATASETS
+
+To comprehensively assess the proposed HiTNet, we conduct experiments on three benchmark datasets for sentiment analysis: The **MOSI** dataset (Zadeh et al., 2016) consists of 2,199 opinion
+
+{6}------------------------------------------------
+
+video clips from 93 YouTube movie reviews, each annotated with a sentiment score ranging from -3 (strongly negative) to 3 (strongly positive), with aligned visual, audio, and text modalities. It is split into 1,284 training, 229 validation, and 686 testing samples. The MOSEI dataset (Bagher Zadeh et al., 2018) contains 22,856 video clips with annotations in -3 (strongly negative) to 3 (strongly positive). It is divided into 16,326 training, 1,871 validation, and 4,659 testing samples, and includes aligned visual, acoustic, and textual modalities. The SIMS dataset (Yu et al., 2020) is a Chinese multimodal sentiment benchmark comprising 2,281 video clips, annotated from -1 (negative) to 1 (positive). It includes 1,368 training, 456 validation, and 457 testing samples.
+
+### 4.2 MISSINGNESS SETTINGS AND EVALUATION METRICS
+
+**Missingness Settings.** We follow LNLTN (Zhang et al., 2024a) to simulate frame-level missingness for each sample. For the visual and audio modalities, missing segments are filled using zero vectors. In the language modality, missing segments are replaced with [UNK], representing unknown tokens in BERT (Devlin et al., 2019). During training, for each modality, a random missing rate is sampled independently for each sample, and then a Bernoulli process is applied across valid positions to determine which frames are masked. Additionally, to avoid overfitting to missing data, half of the samples for each modality are randomly set to have zero missing rate. During testing, missing rates are set from 0 to 0.9 with a step size of 0.1, and the missing positions for each modality are independently and randomly sampled.
+
+**Evaluation Metrics.** For MOSI and MOSEI, we report the seven-class accuracy (Acc-7), five-class accuracy (Acc-5), binary classification accuracy (Acc-2), and the F1 score. For Acc-2 and F1, we adopt two calculation methods: negative/positive (left-side value of $l$ ) and negative/non-negative (right-side value of $l$ ). We also report the Mean Absolute Error (MAE) and Pearson correlation coefficient (Corr). For SIMS, the metrics include Acc-5, Acc-2, three-class accuracy (Acc-3), F1 score, MAE, and Corr. Except for MAE, higher values indicate better performance.
+
+### 4.3 IMPLEMENTATION DETAILS
+
+Our model is implemented with the PyTorch toolbox and trained on NVIDIA L40S GPUs. The AdamW optimizer is adopted for parameter optimization. A fixed number of 200 training epochs is used across all datasets. The $E^{CCM}$ is configured with 2 layers, 8 heads, hidden dimension 128, input length 24, and token length 8. The $E^{CPM}$ shares the same head and dimension settings, but with shorter input and token lengths (8 and 1). The $E^C$ has 4 layers, 8 heads, and a hidden dimension of 128. In the sparse activation network, we set the total number of sub-networks to $n = 5$ and the number of activated sub-networks to $k = 3$ . To ensure robustness and reliability, we repeat the experiment using three different random seeds and report the average results. The number of memory units is set as $N = 64$ . For MOSI, MOSEI, and SIMS, the input vector length $T$ is 8, the vector dimension $d$ is 128, the batch size is 64, and the initial learning rate is $1 \times 10^{-4}$ . The hyperparameters $\alpha$ , $\beta$ , and $\gamma$ vary across datasets: 10, 0.5, 0.1 for MOSI, 1.5, 0.9, 9.0 for MOSEI, and 10, 0.9, 0.1 for SIMS. All datasets employ warm up, cosine annealing, and early stopping strategies during training. In addition, the verification experiments of different values of the loss function weights are presented in Appendix B.1, and the sensitivity analysis of sparse activation parameters are presented in Appendix B.2.
+
+### 4.4 COMPARISON WITH STATE-OF-THE-ART METHODS
+
+We compare HiTNet against several strong baselines, including MISA (Hazarika et al., 2020), Self-MM (Yu et al., 2021), MMIM (Han et al., 2021), CENET (Wang et al., 2023b), TETFN (Wang et al., 2023a), TFR-Net, ALMT (Zhang et al., 2023), LNLTN (Zhang et al., 2024a), and P-RMF (Zhu et al., 2025). The results of these baselines are reported as in LNLTN, ensuring consistency in evaluation settings across all compared methods. As shown in Tables 1 and 2 (averaged across all missing rates), HiTNet consistently achieves state-of-the-art performance. It outperforms all existing methods across all metrics on MOSI and MOSEI, with Acc-2 and F1 improvements of 1.31% and 1.41% on MOSI, along with a substantial 2.56% gain in Acc-7 on MOSEI. On SIMS, HiTNet delivers state-of-the-art or highly competitive results, achieving a remarkable 4.53% improvement in Acc-3. This performance gain is attributed to our brain-inspired dual-stream mechanism. In addition, Figure 3 shows the trends of accuracy and MAE for all models as the missing rate increases. HiTNet
+
+{7}------------------------------------------------
+
+Table 1: Comparison of model performance on MOSI and MOSEI. Note: The lower MAE corresponds to superior results.
+
+| Method | MOSI | | | | | | MOSEI | | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | Acc-7 | Acc-5 | Acc-2 | F1 | MAE | Corr | Acc-7 | Acc-5 | Acc-2 | F1 | MAE | Corr |
+| MISA | 29.85 | 33.08 | 71.49 / 70.33 | 71.28 / 70.00 | 1.085 | 0.524 | 40.84 | 39.39 | 71.27 / 75.82 | 63.85 / 68.73 | 0.780 | 0.503 |
+| Self-MM | 29.55 | 34.67 | 70.51 / 69.26 | 66.60 / 67.54 | 1.070 | 0.512 | 44.70 | 45.38 | 73.89 / 77.42 | 68.92 / 72.31 | 0.695 | 0.498 |
+| MMIM | 31.30 | 33.77 | 69.14 / 67.06 | 66.65 / 64.04 | 1.077 | 0.507 | 40.75 | 41.74 | 73.32 / 75.89 | 68.72 / 70.32 | 0.739 | 0.489 |
+| CENET | 30.38 | 37.25 | 71.46 / 67.73 | 68.41 / 64.85 | 1.080 | 0.504 | 47.18 | 47.83 | 74.67 / 77.34 | 70.68 / 74.08 | 0.685 | 0.535 |
+| TETFN | 30.30 | 34.34 | 69.76 / 67.68 | 65.69 / 63.29 | 1.087 | 0.507 | 30.30 | 47.70 | 69.76 / 67.68 | 65.69 / 63.29 | 1.087 | 0.508 |
+| TFR-Net | 29.54 | 34.67 | 68.15 / 66.35 | 61.73 / 60.06 | 1.200 | 0.459 | 46.83 | 34.67 | 73.62 / 77.23 | 68.80 / 71.99 | 0.697 | 0.489 |
+| ALMT | 30.30 | 33.42 | 70.40 / 68.39 | 72.57 / 71.80 | 1.083 | 0.498 | 40.92 | 40.92 | 76.64 / 77.54 | 77.14 / 78.03 | 0.674 | 0.481 |
+| LNLN | 34.26 | 38.27 | 72.55 / 70.94 | 72.73 / 71.25 | 1.046 | 0.527 | 45.42 | 46.17 | 76.30 / 78.19 | 77.77 / 79.95 | 0.692 | 0.530 |
+| P-RMF | 34.19 | 38.50 | 72.81 / 71.53 | 72.93 / 71.69 | 1.038 | 0.525 | 44.63 | 45.87 | 78.14 / 78.83 | 79.33 / 80.39 | 0.658 | 0.589 |
+| HITNet | 35.26 | 39.22 | 74.12 / 72.66 | 74.53 / 73.10 | 1.043 | 0.539 | 47.19 | 47.98 | 78.29 / 79.28 | 78.84 / 81.46 | 0.665 | 0.591 |
+
+
+
+Figure 3: Visualization of performance under different missing rate (Acc-2↑ and MAE↓). The figure contains six line plots: (a) MOSI: Acc-2, (b) MOSEI: Acc-2, (c) SIMS: Acc-2, (d) MOSI: MAE, (e) MOSEI: MAE, and (f) SIMS: MAE. Each plot shows performance metrics for various methods (CENET, MMIM, Self-MM, TETFN, ALMT, LNLT, HITNet) as the missing rate increases from 0.0 to 0.5. HITNet consistently maintains high accuracy and low MAE across all missing rates and datasets.
+
+Figure 3: Visualization of performance under different missing rate (Acc-2 $\uparrow$ and MAE $\downarrow$ ).
+
+maintains high accuracy and low MAE even at high missing rates, significantly outperforming other baselines, further demonstrating the effectiveness and robustness of the dual-stream mechanism. Detailed performance in different missing rates is provided in Appendix B.3.
+
+### 4.5 ABLATION STUDIES
+
+**Contributions of Different Components.** To evaluate the contribution of each component in HiT-Net, we conduct a series of ablation studies by removing key modules and observing the performance changes, as shown in Table 3. The results show that removing the semantic memory module (w/o SMM) impairs the ability of the model to effectively retrieve and utilize residual semantic information stored in memory. Removing the confidence-perception module (w/o CPM) impairs dynamic assessment of modality reliability, leading to a substantial performance drop. Furthermore, removing the intra-modal enhancement stream (w/o Intra) results in noticeable declines across multiple metrics, demonstrating its positive role in recovering missing semantics and strengthening intra-modal representations. Removing the inter-modal regulation stream (w/o Inter) causes even greater performance degradation, emphasizing its central role in cross-modal completion and integration. In summary, each component plays an indispensable role in handling complex frame-level missing data for sentiment analysis, validating the effectiveness of the proposed dual-stream architecture.
+
+**Contributions of Different Losses.** We assess the contribution of each loss component to HiT-Net’s performance, as shown in Table 3. The experimental results reveal that excluding any of these losses leads to a noticeable performance degradation. Removing the utilization balance loss $\mathcal{L}_{ubi}$ disrupts the activation balance within the sparse activation network, resulting in over-reliance on certain computational paths and reduced diversity in learned representations. Omitting the confidence perception loss $\mathcal{L}_{cp}$ significantly impairs the ability of the model to dynamically perceive and weight the confidence of each modality, which is essential for robust multimodal fusion under partial modality data missing conditions. Furthermore, the absence of the reconstruction loss $\mathcal{L}_{rec}$ weakens
+
+Table 2: Comparison of model performance on SIMS. Note: The lower MAE corresponds to superior results.
+
+| Method | Acc-5 | Acc-3 | Acc-2 | F1 | MAE | Corr |
+|-|-|-|-|-|-|-|
+| MISA | 31.53 | 56.87 | 72.71 | 66.30 | 0.539 | 0.348 |
+| Self-MM | 32.28 | 56.75 | 72.81 | 68.43 | 0.508 | 0.376 |
+| MMIM | 31.81 | 52.76 | 69.86 | 66.21 | 0.544 | 0.339 |
+| CENET | 22.29 | 53.17 | 68.13 | 57.90 | 0.589 | 0.107 |
+| TETFN | 33.42 | 56.91 | 73.58 | 68.67 | 0.505 | 0.387 |
+| TFR-Net | 26.52 | 52.89 | 68.13 | 58.70 | 0.661 | 0.169 |
+| ALMT | 20.00 | 45.36 | 69.66 | 72.76 | 0.561 | 0.364 |
+| LNLT | 34.64 | 57.14 | 72.73 | 79.43 | 0.514 | 0.397 |
+| P-RMF | 34.83 | 54.75 | 73.64 | 74.65 | 0.500 | 0.414 |
+| HITNet | 35.62 | 59.28 | 73.99 | 77.33 | 0.504 | 0.389 |
+
+{8}------------------------------------------------
+
+Table 3: Effects of different components and losses. Lower MAE indicates superior results.
+
+| Method | MOSI | | | | | | SIMS | | | | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|-|
+| | Acc-7 | Acc-5 | Acc-2 | F1 | MAE | Corr | Acc-5 | Acc-3 | Acc-2 | F1 | MAE | Corr |
+| w/o SMM | 34.74 | 38.63 | 73.61 / 72.27 | 74.01 / 72.40 | 1.043 | 0.532 | 34.09 | 58.39 | 73.08 | 76.32 | 0.509 | 0.381 |
+| w/o CPM | 34.87 | 38.57 | 73.72 / 72.08 | 74.48 / 72.51 | 1.044 | 0.531 | 34.68 | 59.19 | 73.90 | 76.59 | 0.508 | 0.385 |
+| w/o Intra | 34.91 | 38.88 | 73.63 / 72.23 | 73.79 / 72.41 | 1.045 | 0.527 | 34.33 | 58.64 | 73.87 | 76.49 | 0.513 | 0.379 |
+| w/o Inter | 33.98 | 37.75 | 73.25 / 72.06 | 73.57 / 72.46 | 1.062 | 0.499 | 33.52 | 58.17 | 73.04 | 76.83 | 0.525 | 0.348 |
+| w/o | 35.41 | 39.40 | 73.64 / 72.26 | 73.92 / 72.33 | 1.044 | 0.537 | 35.19 | 59.15 | 73.81 | 78.13 | 0.513 | 0.384 |
+| w/o $L_{cp}$ | 33.87 | 37.52 | 72.90 / 71.59 | 73.21 / 71.61 | 1.068 | 0.527 | 34.44 | 59.23 | 73.42 | 77.57 | 0.508 | 0.387 |
+| w/o $L_{enc}$ | 34.55 | 38.45 | 73.32 / 71.95 | 73.62 / 71.99 | 1.047 | 0.532 | 33.85 | 58.97 | 73.85 | 79.03 | 0.510 | 0.373 |
+| HITNet | 35.26 | 39.22 | 74.12 / 72.66 | 74.53 / 73.10 | 1.043 | 0.539 | 35.62 | 59.28 | 73.99 | 77.33 | 0.504 | 0.389 |
+
+
+
+Figure 4: Boxplots showing Euclidean distances among missing, intra-, inter-modal, and complete features. The y-axis is 'Distance' ranging from 7.5 to 25.0. The x-axis shows four categories: P1:Missing, P2:Intra, P3:Inter, and a baseline for complete features. A red dashed line indicates the median for the complete features at 15.56. P1:Missing has a significantly higher median and larger spread compared to P2:Intra and P3:Inter, which are closer to the complete feature distribution.
+
+Figure 4: Boxplots showing Euclidean distances among missing, intra-, inter-modal, and complete features.
+
+
+
+Figure 5: Confusion matrices of HITNet and the baseline model LNLN on the MOSI dataset. The figure shows four sets of matrices for missing rates r = 0, 0.1, 0.5, and 0.9. Each set contains two matrices: LNLN (top) and HITNet (bottom). The x and y axes represent 7 sentiment classes: 0 (strongly negative), 1 (negative), 2 (weakly negative), 3 (neutral), 4 (weakly positive), 5 (positive), 6 (strongly positive). As the missing rate increases, the LNLN model's predictions become increasingly concentrated on the neutral class (3), while HITNet maintains more diverse predictions across multiple classes.
+
+Figure 5: Confusion matrices of HITNet and the baseline model LNLN on the MOSI dataset. Note: 0-6 denote strongly negative, negative, weakly negative, neutral, weakly positive, positive, and strongly positive, respectively.
+
+the capacity of the model to reconstruct missing semantic content, thereby reducing the completeness of intra-modal and inter-modal feature integration. These findings demonstrate that each loss component plays a complementary and indispensable role in the optimization process. Additional ablation results and detailed analyses are provided in Appendix B.4, B.5, B.6, and B.7.
+
+### 4.6 COMPLETION PERFORMANCE VISUALIZATION
+
+To evaluate the effectiveness of the proposed completion methods, we evaluate feature distributions on the MOSI dataset under a 90% missing rate. Specifically, we measure the Euclidean distances between the features of the missing data (P1), intra-modal completion (P2), and inter-modal completion (P3) against their corresponding complete data, as illustrated in Figure 4. As shown in P1, missing data exhibit large deviations from the complete representations, with wide dispersion and a high median, indicating severe information loss. A few outliers with very small distances appear in P1, which stem from cases where non-critical features are missing. After completion, these outliers vanish, and in both P2 and P3 the distances to the complete features become smaller and the distributions more compact, demonstrating that intra- and inter-modal completion effectively recover missing information and align the representations closer to their complete counterparts.
+
+### 4.7 CLASSIFICATION PERFORMANCE VISUALIZATION
+
+To evaluate the classification performance of the proposed method, we present the confusion matrices of the baseline model LNLN and our HITNet on the MOSI dataset under missing rates of 0, 0.1, 0.5, and 0.9 (Fig. 5). As the missing rate increases, both models suffer from class prediction bias, reflecting the difficulty of learning discriminative sentiment features under incomplete modalities and the emergence of prediction collapse. For instance, at a missing rate of 0.9, LNLN predictions concentrate almost exclusively on the neutral class, indicating reliance on a single dominant category. In contrast, the proposed HITNet produces predictions distributed across multiple sentiment categories even under high missing rates, demonstrating stronger discriminative capacity. This ad-
+
+{9}------------------------------------------------
+
+vantage arises from its intra-modal enhancement and inter-modal regulation streams, which enable effective exploitation of residual information and thereby yield superior robustness under severe missing conditions. For brevity, we present only the MOSI results in the main text. Results on the SIMS dataset, showing consistent trends, are reported in Appendix B.8.
+
+### 4.8 MODALITY-LEVEL MISSINGNESS ANALYSIS
+
+To evaluate the performance of HiTNet under modality-level missing conditions, we conducted experiments on the MOSI dataset and reported the Acc-2 for each condition, as shown in Table 4. The results demonstrate that HiTNet outperforms or is comparable to baseline methods in most cases, especially when visual or audio modalities are present, where HiTNet achieves a 10% improvement over the second-best model. This indicates that HiTNet significantly enhances sensitivity to visual and audio modalities. In the human brain, the thalamus integrates and regulates various sensory information to ensure completeness and accuracy. It is precisely through the inspiration from this brain function that the thalamus-inspired inter-modal regulation stream in HiTNet effectively integrates and completes missing modality information, even in the absence of the language modality, thereby improving the model’s sentiment analysis capability.
+
+Table 4: Acc-2 under modality-level missing conditions on the MOSI dataset. Note: The modalities inside the { } are the present modalities.
+
+| Method | {V} | {A} | {L} | {V,A} | {V,L} | {A,L} |
+|-|-|-|-|-|-|-|
+| MMIM | 48.20 | 48.64 | 81.29 | 49.61 | 81.15 | 81.83 |
+| CENET | 51.85 | 51.80 | 81.54 | 51.80 | 81.54 | 81.49 |
+| TETFN | 55.25 | 55.25 | 81.05 | 55.25 | 81.00 | 81.10 |
+| ALMT | 54.96 | 55.10 | 79.83 | 55.05 | 79.98 | 79.98 |
+| LNLN | 49.03 | 49.03 | 82.48 | 49.03 | 82.21 | 82.26 |
+| HiTNet | 59.33 | 59.29 | 82.49 | 59.04 | 82.26 | 81.90 |
+
+## 5 CONCLUSION
+
+In this paper, we propose a Hippocampal-Thalamic inspired dual-stream completion Network (HiTNet). On the one hand, the intra-modal enhancement stream simulates memory retrieval in the hippocampus to complete missing data by mining modality-specific information. On the other hand, the inter-modal regulation stream mimics thalamic perceptual regulation by estimating modality confidence to guide adaptive cross-modal completion. Finally, the outputs of both streams are integrated via a hierarchical fusion module. Experimental results demonstrate the effectiveness of HiTNet under missing data scenarios. In future work, we plan to investigate strategies for addressing classification imbalance, aiming to enhance model robustness under imbalanced scenarios.
+
+## 6 ETHICS STATEMENT
+
+This work adheres to the ICLR Code of Ethics. Our study does not involve direct experimentation with human or animal subjects. All datasets used, including MOSI, MOSEI, and SIMS, were accessed and utilized in compliance with their respective usage guidelines, ensuring no violation of privacy. We have taken care to avoid any biases or discriminatory outcomes in our research process. No personally identifiable information was used, and no experiments were conducted that could raise privacy or security concerns. We are committed to maintaining transparency and integrity throughout the research process.
+
+## 7 REPRODUCIBILITY STATEMENT
+
+We make every effort to ensure that the results presented in this paper are reproducible. All code and datasets have been made publicly available in an anonymous repository to facilitate replication and verification. The experimental setup, including training steps, model configurations, and hardware details, is described in detail in the paper. We have also provided a full description of HiTNet to assist others in reproducing our experiments. Additionally, the public datasets used in the paper, such as MOSI, MOSEI, and SIMS, are publicly available, ensuring consistent and reproducible evaluation results. We believe these measures will enable other researchers to reproduce our work and further advance the field.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/Kw2mvnzCoc.txt b/papers/Kw2mvnzCoc.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7342f1338d16c7c2465486dd2fd425296d88bc33
--- /dev/null
+++ b/papers/Kw2mvnzCoc.txt
@@ -0,0 +1,350 @@
+
+
+{0}------------------------------------------------
+
+# TSPULSE: TINY PRE-TRAINED MODELS WITH DISENTANGLED REPRESENTATIONS FOR RAPID TIME-SERIES ANALYSIS
+
+Vijay Ekambaram\*, Subodh Kumar\*, Arindam Jati\*, Sumanta Mukherjee†,
+Tomoya Sakai‡, Pankaj Dayama, Wesley M. Gifford, Jayant Kalagnanam
+
+**IBM Research**
+
+[vijaye12@in.ibm.com](mailto:vijaye12@in.ibm.com)
+
+## ABSTRACT
+
+Time-series tasks often benefit from signals expressed across multiple representation spaces (e.g., time vs. frequency) and at varying abstraction levels (e.g., local patterns vs. global semantics). However, existing pre-trained time-series models entangle these heterogeneous signals into a single large embedding, limiting transferability and direct zero-shot usability. To address this, we propose TSPulse, family of ultra-light pre-trained models (1M parameters) with disentanglement properties, specialized for various time-series diagnostic tasks. TSPulse introduces a novel pre-training framework that augments masked reconstruction with explicit disentanglement across spaces and abstractions, learning three complementary embedding views (temporal, spectral, and semantic) to effectively enable zero-shot transfer. In-addition, we introduce various lightweight post-hoc fusers that selectively attend and fuse these disentangled views based on task type, enabling simple but effective task specializations. To further improve robustness and mitigate mask-induced bias prevalent in existing approaches, we propose a simple yet effective hybrid masking strategy that enhances missing diversity during pre-training. Despite its compact size, TSPulse achieves strong and consistent gains across four TS diagnostic tasks: +20% on the TSB-AD anomaly detection leaderboard, +25% on similarity search, +50% on imputation, and +5–16% on multivariate classification, outperforming models that are 10–100x larger on over 75 datasets. TSPulse delivers state-of-the-art zero-shot performance, efficient fine-tuning, and supports GPU-free deployment. Models and source code are publicly available at .
+
+## 1 INTRODUCTION
+
+Time-series (TS) analysis encompasses a broad class of problems that aim to extract meaningful insights and semantics from observed sequences. Among these, **time-series diagnostic tasks**—such as anomaly detection, imputation, classification, and similarity search—operate on observed data and focus on retrospective understanding, i.e., analyzing existing sequences to characterize behavior, identify irregularities, recover missing information, or compare patterns across time. These tasks are central to many real-world applications in observability, manufacturing, and industrial monitoring.
+
+Inspired by the success of large language models (LLMs), time-series pre-trained models aim to learn reusable representations from large-scale public data for effective transfer learning. While time-series pre-trained models have seen rapid progress in forecasting (Ansari et al., 2024; Das et al., 2023; Ekambaram et al., 2024), their development for time-series diagnostic tasks remains relatively limited. A few pre-trained models—such as Moment (Goswami et al., 2024), UniTS (Gao et al., 2024), VQShape (Wen et al., 2024), and GPT4TS (Zhou et al., 2023)—support subsets of diagnostic tasks. However, their performance on time-series diagnostic tasks still leaves substantial
+
+\*Equal second authorship. †Equal third authorship.
+
+{1}------------------------------------------------
+
+room for improvement, while their large model sizes further hinder real-time, low-latency deployment—especially in lightweight and CPU-only settings. Specifically, a key limitation underlying these approaches lies in how representations are learned during pre-training. Most existing diagnostic models rely on self-supervised objectives, with masked reconstruction emerging as one of the most widely adopted strategies (Goswami et al., 2024; Gao et al., 2024). While effective in capturing local & global structure, masked reconstruction alone is insufficient to model the full complexity of time-series data.
+
+Meaningful insights in time-series often arises, when signals are examined across different representation spaces(e.g. time vs spectral) and abstraction levels (e.g. local patterns vs global semantics). For example, abrupt spikes and local irregularities are most apparent in the time domain, whereas periodic patterns emerge more clearly in the frequency domain. Likewise, some structures are visible only at fine temporal resolutions, while others manifest at higher semantic levels. To be broadly useful, pre-trained embeddings must therefore capture these complementary cues across both spaces and abstraction levels. However, simply learning them jointly within a single embedding often leads to entanglement, making it difficult for downstream tasks to selectively access the information they require. For broad utility—particularly in zero-shot transfer—representations must explicitly expose these insights in a disentangled form, enabling temporal, spectral, and semantic signals to be accessed as needed.
+
+
+
+Figure 1: TSPulse Overview. The diagram illustrates the TSPulse architecture and its performance improvements. At the top, a comparison shows 'GPU-FREE Zero-shot' with +50% accuracy improvement and 'Multi-Variate Finetuning' with +20% and +25% improvements, and a 5-16% size reduction. Below this, the TSPulse architecture is shown with four heads: Time Head (Full Reconstruction), FFT Head (Long FFT Embedding, Embedding Disentanglement), Sign Head (Semantic Reconstruction), and Pred Head (Semantic Short Embedding). The core is 'TSPulse' with a '1M' parameter count. Below the architecture, it mentions 'Tiny 1M Pre-trained Models' and shows a graph of 'Time' vs 'Frequency' with 'Multi Space & Abstract Masked Reconstruction'.
+
+Figure 1: TSPulse Overview. % and X represent the accuracy and size improvements of TSPulse over SOTA pre-trained models across different benchmarks.
+
+pre-training framework. Optimized together, this design yields substantial gains in both performance and transferability across diverse downstream tasks.
+
+Through extensive sensitivity analyses, we demonstrate that different segments of the learned embeddings indeed capture distinct and complementary properties that substantially enhance transfer learning. In particular, the semantic embedding exhibits strong robustness to various distortions—such as time shifts, magnitude variations, and noise—which is especially important for reliable semantic analysis.
+
+Moreover, since different tasks benefit from different combinations of these disentangled views, we introduce a set of lightweight post-hoc fusers that selectively combine these views based on the task type, providing a simple yet effective mechanism to exploit their complementary strengths for effective task specialization. Specifically, we propose two post-hoc fusers: (i) Multi-Head Triangulation (MHT) for anomaly detection and (ii) TSLens for classification, each demonstrating strong effectiveness for its respective task.
+
+In addition, TSPulse improves pre-training robustness through a simple but impactful refinement of masking strategies. Unlike existing approaches (Goswami et al., 2024) that rely on fixed masking types and span lengths, TSPulse adopts a hybrid masking scheme that randomizes both, better
+
+To address these challenges, TSPulse proposes a novel pretraining framework to enable **disentangled masked reconstruction across multiple spaces and abstraction levels**, explicitly producing three distinct types of embeddings during pre-training: (i) detailed temporal embeddings for fine-grained time analysis, (ii) detailed spectral embeddings for frequency-aware fidelity, and (iii) semantic embeddings for high-level task understanding. The model formulates semantic and full reconstruction objectives across multiple spaces, employing multi-output heads that operate on distinct segments of the embedding to yield disentangled representations across spaces and abstraction levels (Figure 1). While prior works in traditional time-series modelling have explored time-frequency fusion (Zhang et al., 2022; 2023) or investigated disentanglement in isolation (Chang et al., 2024), TSPulse advances beyond these approaches by jointly learning disentangled representations across spaces and abstraction levels within a unified
+
+{2}------------------------------------------------
+
+
+
+Figure 2: TSPulse Architecture diagram. The diagram illustrates the flow from input X to output Y through various processing blocks. 1. Masking & RevIN: Input X is normalized and masked. 2. TSPulse Backbone: The backbone processes the masked input through time and frequency domains. 3. TSPulse Mini Decoder: A decoder block for reconstruction. 4. Multiplex 3D Mix & Attention: A block that mixes information across dimensions. 5. Detailed Long Embedding: A block for generating long embeddings. 6. Semantic signature Reconstruction: A block for generating semantic signatures. The diagram uses various colors (blue, green, red) to highlight different components and data flows.
+
+Figure 2: TSPulse Architecture. (X: Inputs, Y: Outputs, E: Embeddings). Annotations for easy reference: ①-⑥.
+
+reflecting real-world missing patterns. Despite its simplicity, this increased corruption diversity reduces overfitting and consistently boosts downstream performance.
+
+Finally, to ensure efficiency, TSPulse replaces conventional Transformer backbones (Vaswani et al., 2017) with light-weight TSMixers (Ekambaram et al., 2023), further enhanced with improved initialization strategies. This substitution, when combined with disentangled hybrid reconstruction, yields small and fast pre-trained models, while still delivering state-of-the-art representational power.
+
+**Contributions:** (1) **Compact & Versatile.** We introduce a family of ultra-light time-series pre-trained models (1M parameters) with rapid zero-shot and fast multivariate fine-tuning support, specialized for 4 diagnostic tasks: classification, imputation, anomaly detection (AD), and semantic search. (2) **Architectural Novelties.** TSPulse introduces (i) disentangled masked reconstruction across multiple representation spaces and abstraction levels, yielding temporal, spectral, and semantic embeddings; (ii) simple yet effective post-hoc fusers (MHT, TSLens) built on these disentangled views for task-specialization; and (iii) a hybrid masking scheme to mitigate pre-training bias prevalent in existing approaches. (3) **Emergent Representation Properties.** Through extensive sensitivity analyses, we show that the learned disentangled embeddings capture complementary properties and exhibit varied level of robustness to common perturbations, including time shifts, magnitude variations, missingness, spectral perturbations, and noise. (4) **Benchmark Performance.** TSPulse achieves (i) robust anomaly detection with +20% gains on the TSB-AD leaderboard, ranking first in both uni- and multivariate settings; (ii) semantic search improvements of +25% via robust semantic embeddings; (iii) +50% gains in zero-shot imputation under diverse missing patterns; and (iv) +5–16% improvements in multivariate classification on UEA benchmarks. (5) **GPU-Free Deployment.** Despite its compact size, TSPulse consistently matches or outperforms models that are 10–100× larger across a broad range of benchmark datasets, while providing near-instant, CPU-only inference suitable for real-time applications.
+
+## 2 TSPULSE ARCHITECTURE
+
+Let $\mathbf{X} \in \mathbb{R}^{S \times C}$ be a multivariate time series with length $S$ and $C$ channels. We first project and mask $\mathbf{X}$ in both the time and frequency domains. The backbone and decoder then process these representations, mixing information across dimensions in both spaces. To guide learning, we use multi-output heads for semantic and full reconstruction on different parts of the embeddings, which encourages disentangled representation learning. These embeddings can then be directly used across downstream tasks. Figure 2 gives an overview of the framework.
+
+**Masking & RevIN [Fig 2-①]:** TSPulse begins with a *masking block* that hides portions of the input sequence to enable self-supervised reconstruction. Given an input $\mathbf{X} \in \mathbb{R}^{S \times C}$ , we divide it into $N$ non-overlapping patches of length $pl$ and apply masking to obtain $\tilde{\mathbf{X}} \in \mathbb{R}^{S \times C}$ . TSPulse
+
+{3}------------------------------------------------
+
+supports two masking strategies: **block masking** and **hybrid masking**. In block masking, entire patches are randomly replaced with a learnable mask token $M \in \mathbb{R}^{1 \times pl}$ , as commonly done in prior work (Goswami et al., 2024; Gao et al., 2024). While effective for robust feature learning, this approach is inadequate for real-world imputation tasks, where missing values occur irregularly at both patch and point levels. To address this, we introduce a more realistic **hybrid masking** pre-train strategy that masks both full and partial patches within each sample using variable masking ratios, preventing overfitting to fixed patterns. A key design choice in TSPulse is to define the mask token $M \in \mathbb{R}^{1 \times pl}$ at the *raw patch level*, unlike prior approaches that insert mask tokens in the embedding space (Goswami et al., 2024; Vaswani et al., 2017). This enables individual time-points to be masked by selecting the appropriate value from $M$ based on their relative index within a patch (Figure 3(a)), allowing a single token to flexibly support both full and partial masking. After masking, a learnable ReViN block (Kim et al., 2022) is applied to normalize the input, yielding $\mathbf{X}_m \in \mathbb{R}^{S \times C}$ .
+
+**FFT Extraction (Fig 2-①):** As TSPulse reconstructs in both time and frequency domains, this block extracts masked FFT features for backbone processing and also prepares the corresponding ground-truth for loss computation. Instead of explicitly masking the frequency space, we feed the scaled and masked time-series $\mathbf{X}_m$ directly into the Fast Fourier Transform (rfft), propagating the mask and ensuring the same data is consistently hidden in both spaces, preventing leaks. The real and imaginary FFT outputs from $\mathbf{X}_m$ are then packaged, scaled, and processed into tensor $\mathbf{X}_m^f \in \mathbb{R}^{S \times C}$ for further backbone processing. Refer to Appendix. A.10 for more details. Simultaneously, two ground-truths are computed from the frequency representation. First, the unmasked scaled time-series is transformed using the same approach described above to get $\mathbf{X}^f \in \mathbb{R}^{S \times C}$ , a clean, unaltered frequency representation of the time-series, which is used to guide the model’s reconstruction. In addition, we also compute the log-magnitude spectrum of the unmasked time-series and apply softmax to obtain $\mathbf{X}_{\text{sign}}^f \in \mathbb{R}^{S/2 \times C}$ , a normalized global frequency signature (Appendix. A.10 for more details). This global signature serves as an auxiliary reconstruction target, helping the model capture high-level semantic patterns and improving generalization to downstream tasks. The log transformation reduces the dynamic range and stabilizes training, while softmax emphasizes dominant spectral components, mapping the output to a probability-like distribution.
+
+**Encoding (Fig 2-②):** This block projects the input to an embedding space. The masked time-domain input $\mathbf{X}_m \in \mathbb{R}^{S \times C}$ is transposed and then divided into $N$ non-overlapping patches of length $pl$ , resulting in a tensor of shape $\mathbb{R}^{C \times N \times pl}$ . Now, each patch is projected via a linear layer from $\mathbb{R}^{pl} \rightarrow \mathbb{R}^D$ to obtain time-encoded features $\mathbf{Time}_E \in \mathbb{R}^{C \times N \times D}$ . Similarly, the masked frequency-domain input $\mathbf{X}_m^f \in \mathbb{R}^{S \times C}$ is transposed, patched and projected to produce frequency-encoded features $\mathbf{FFT}_E \in \mathbb{R}^{C \times N \times D}$ . Motivated by recent advances in vision transformers (Darcet et al., 2024), where adding learnable register tokens stabilizes training and improves transfer learning, we introduce $R$ such tokens shared across channels: $\mathbf{Reg}_E \in \mathbb{R}^{C \times R \times D}$ . The full input to the backbone is constructed by concatenating time, frequency, and register tokens along the patch axis and layer normalized: $\mathbf{Input}_E = [\mathbf{Time}_E; \mathbf{FFT}_E; \mathbf{Reg}_E] \in \mathbb{R}^{C \times (2N+R) \times D} = \mathbb{R}^{C \times K \times D}$ .
+
+**TSPulse Backbone (Fig 2 - ③, ④):** The TSPulse backbone receives $\mathbf{Input}_E \in \mathbb{R}^{C \times K \times D}$ , a unified sequence of masked patches from both time and frequency domains, along with learnable register tokens. Its goal is to transform this input into semantically rich, task-robust representations. To maintain efficiency, we use the *TSMixer* backbone (Ekambaram et al., 2023), an MLP-Mixer based alternative to Transformers that performs strongly with reduced compute. TSMixer has stacked Mixer blocks interleaved with lightweight gated attention, enabling flexible feature mixing across three dimensions: within-patch, across-patch, and across channels. Since $\mathbf{Input}_E$ already integrates both time and frequency information, TSMixer effectively fuses these views, learning *dual-space representations* that capture temporal and spectral correlations. Gated attentions in TSMixer further prioritizes informative regions, enhancing the model’s ability to generalize across downstream tasks.
+
+**TSPulse Mini-Decoder (Fig 2-④):** The backbone output ( $\mathbf{Backbone}_E \in \mathbb{R}^{C \times K \times D}$ ) is passed through a lightweight *mini-decoder*, which mirrors the backbone but is only 10–20% of its size to output $\mathbf{Decoder}_E \in \mathbb{R}^{C \times K \times D}$ , where $K = 2N + R$ . This compact decoder adapts representations during fine-tuning, enabling fast & efficient data-specific adaptation
+
+**Multi-Objective Heads (Fig 2-⑤):** The decoder output $\mathbf{Decoder}_E$ , which consists of 3 segments $[\mathbf{Time}_E; \mathbf{FFT}_E; \mathbf{Reg}_E]$ is disentangled by optimizing each segment with a distinct head objective:
+
+{4}------------------------------------------------
+
+- **Full Reconstruction Heads [Fig 2-6]:** The first $N$ patch embeddings ( $\mathbf{Time}_E$ ) from the decoder pass through a linear layer ( $\mathbf{Time}$ Head) and inverse RevIN to obtain the full reconstruction $\mathbf{Y}$ of the input time-series. The next $N$ embeddings ( $\mathbf{FFT}_E$ ) from the decoder are projected (via the $\mathbf{FFT}$ Head) to reconstruct the input frequency spectrum $\mathbf{Y}^f$ , which is further reshaped, passed through `torch.fft.irfft`, and inverse RevIN to yield $\mathbf{Y}'$ , an alternate reconstruction of the input time-series from FFT-space. Losses are computed as Mean Squared Errors (MSE): $\mathcal{L}_{\text{time1}} = \text{MSE}(\mathbf{X}, \mathbf{Y})$ , $\mathcal{L}_{\text{time2}} = \text{MSE}(\mathbf{X}, \mathbf{Y}')$ , and $\mathcal{L}_m = \text{MSE}(\mathbf{X}^f, \mathbf{Y}^f)$ , where the first two losses are computed only on the masked time-points. This disentangled losses enables $\mathbf{Time}_E$ and $\mathbf{FFT}_E$ to capture fine-grained temporal and spectral insights.
+- **Semantic Heads [Fig 2-6]:** The final $R$ register embeddings (a.k.a semantic embeddings) from $\mathbf{Decoder}_E$ are primarily trained through a signature head that predicts $\mathbf{Y}_{\text{sign}}^f$ , a softmax distribution over the log-magnitude frequency spectrum (i.e. semantic signature). This objective, optimized with cross-entropy loss $\mathcal{L}_{\text{sign}} = \text{CE}(\mathbf{X}_{\text{sign}}^f, \mathbf{Y}_{\text{sign}}^f)$ , captures global spectral semantics and forms the core of semantic reconstruction. Optionally, a lightweight next-point prediction head $\mathbf{Y}_{\text{pred}}$ can also be added, trained with $\mathcal{L}_{\text{pred}} = \text{MSE}(\mathbf{X}_{\text{pred}}, \mathbf{Y}_{\text{pred}})$ , to inject temporal cues into the semantic embeddings. $\mathbf{X}_{\text{pred}}$ denotes the ground-truth future points. Importantly, this auxiliary head is limited to only a few points and is not designed for full-fledged forecasting; its sole purpose is to enrich the semantic representation. Together, these objectives ensure that the register tokens are converted into semantic embeddings for high-level understanding.
+
+Finally, a weighted sum of all the above losses across heads is jointly minimized during pre-training.
+
+## 3 TSPULSE WORKFLOWS
+
+### 3.1 PRE-TRAINING:
+
+TSPulse is pre-trained on diverse $\sim 1\text{B}$ TS samples as detailed in Appendix A.8. Inspired by the success of small, task-specialized pre-trained models in the language/vision domain (Schick & Schütze, 2020; Nguyen et al., 2024; Fu et al., 2023; Ling et al., 2024)—which achieve strong performance through minimal task-specific adaptations—we extend this strategy to time-series. Specifically, we specialize the pre-training for every task through reweighting loss objectives to prioritize heads most relevant to the target task. This enables TSPulse to refine task-specific representations while maintaining its lightweight design, facilitating efficient transfer learning across any datasets for the specified downstream task. Refer Appendix A.9 for more details. Pre-training on 1B samples takes just one day with 8×A100 GPUs, thus there are no practical challenges in pre-training task-specific models. In addition, given the heterogeneous channel counts in pre-training datasets, TSPulse is pre-trained in a univariate mode ( $c = 1$ ), treating each channel independently. Cross-channel modeling is deferred to fine-tuning, where channel-mixing is selectively activated based on the target dataset (Ekambaram et al., 2024).
+
+### 3.2 TARGET DATA FINE-TUNING:
+
+During fine-tuning, the pre-trained model—already strong in zero-shot settings—is further adapted to the target data by updating the decoder and task-specific heads. For multivariate inputs, we enable *channel mixing* in the decoder to capture inter-channel correlations, which are absent in the univariate pre-training setup. Our design draws inspiration from TSMixer and TTM (Ekambaram et al., 2023; 2024), where channel mixer blocks are interleaved between patch and feature mixers within each TSMixer layer. A key limitation in the original design is the *random initialization* of these mixers, which introduces untrained parameters between already pre-trained layers. This can disrupt information flow and create sharp activation shifts, leading to unstable gradient propagation, especially during the early stages of fine-tuning. To address this, we initialize channel mixers with *identity weights*, which enable smooth gradient flow between pre-trained weights. These layers gradually learn inter-channel dependencies without interfering with earlier knowledge, leading to a significantly more stable fine-tuning process, as confirmed by our experiments.
+
+{5}------------------------------------------------
+
+
+
+The diagram illustrates the downstream differentiators of TSPulse, organized into four panels:
+
+- (A) Hybrid Masking (varying mask patterns across pre-train samples):** Shows learnable mask tokens (M1, M2, M3, M4) and patterns (A1, A2, A3, A4) used for pre-training. It includes a table of mask patterns and a visual representation of time-series data with varying mask patterns.
+- (B) Time-Series Semantic Search & Retrieval:** Illustrates the use of semantic query (SQ) / free embeddings, which are robust to shifts in time, magnitude, and noise. It shows a search process where a query is compared against an index of embeddings.
+- (C) TSLens: Dominant Feature Extractor for multivariate classification fine-tuning:** Details the TSPulse Mini Decoder (D) Gated Attention Module. It shows the flow from BackboneE through the decoder, feature reduction, and a flattened linear head to produce class logits. The TSLens module uses gated attention to selectively attend to features.
+- (D) Robust Anomaly Detection Multi-Stream Triangulation:** Shows the multi-head triangulation process. It takes actual Y: Output and reconstructs time, FFT, and new point predictions. It then uses stream fusion (Agg. Statistics) and stream selection (Tuning data) to produce a robust anomaly detection score.
+
+Figure 3: TSPulse Downstream Differentiators. The diagram is divided into four panels: (A) Hybrid Masking, (B) Time-Series Semantic Search & Retrieval, (C) TSLens: Dominant Feature Extractor, and (D) Robust Anomaly Detection. Panel (A) shows learnable mask tokens and patterns. Panel (B) shows semantic search using time-series embeddings. Panel (C) shows the TSLens module for feature extraction. Panel (D) shows the multi-head triangulation for anomaly detection.
+
+Figure 3: TSPulse Downstream Differentiators.
+
+### 3.3 DOWNSTREAM TASKS & POST-HOC FUSERS:
+
+TSPulse delivers strong zero-shot imputation benefiting from hybrid masked pre-training (Fig. 3-A), which exposes the model to diverse corruption patterns. For semantic similarity search, the register token embeddings provide invariant representations that remain resilient to time shifts, magnitude changes, and noise (Fig. 3-B). For classification and anomaly detection, TSPulse further incorporates **task-specific post-hoc fusers**, detailed below.
+
+**Classification via TSLens:** TSPulse supports multivariate classification through a lightweight fine-tuning module, **TSLens** (Fig. 3-C), which replaces standard pooling across channels with a learned mechanism that adaptively extracts relevant features from disentangled embeddings. Unlike conventional methods, which average or max-pool all patch-level embeddings across channels followed by a linear head, TSLens selectively attends to and weights features across fine-grained patch embeddings and high-level register tokens.
+
+TSLens takes the backbone output $\mathbf{Backbone}_E \in \mathbb{R}^{C \times (2N+R) \times D}$ , passes it through the mini decoder (initialized with pre-trained weights and channel-mixing enabled), and learns cross-channel dependencies via identity-initialized channel mixers as explained in Section 3.2. The resulting representation $\mathbf{H} \in \mathbb{R}^{C \times (2N+R) \times D}$ is projected to a lower-dimensional space $\mathbf{H}' \in \mathbb{R}^{C \times (2N+R) \times D'}$ , flattened into $\mathbf{H}_{\text{flat}} \in \mathbb{R}^{C \cdot (2N+R) \cdot D'}$ , and passed through a linear layer to produce class logits $\mathbf{Y}_{\text{pred}} \in \mathbb{R}^{\text{num\_classes}}$ . The model is optimized with cross-entropy loss. This design allows TSPulse to dynamically focus on the most informative features across local and global representations, improving classification accuracy across diverse datasets.
+
+#### Robust Anomaly Detection via Multi-Head Triangulation:
+
+In anomaly detection, certain anomalies manifest in the time domain (sudden spikes), others in the frequency domain (periodicity breaks), and others in predictive space (missing trends). TSPulse leverages multi-output heads— $\text{Head}_{\text{time}}$ , $\text{Head}_{\text{fft}}$ , and $\text{Head}_{\text{pred}}$ —to reconstruct or predict from complementary views, capturing signal continuity, spectral consistency, and temporal dynamics. This unified design enables detection of diverse anomaly types.
+
+During inference, anomaly scores are computed from each head based on the deviations between the original and predicted signals (Fig. 3-D). Once the deviations are obtained from all heads, two approaches are possible. **Approach 1** ( $\text{Head}_{\text{ensemble}}$ ) is to fuse the normalized scores using statistics, such as the maximum, to generate a unified score. In **Approach 2** ( $\text{Head}_{\text{triang.}}$ ), when a small labeled validation set is available, it can be used to select the most effective head in zero-shot from the above four heads (including $\text{Head}_{\text{ensemble}}$ ). This allows the model to adapt to the anomaly type and structure specific to each application. Notably, TSPulse is the first pre-trained model to unify and triangulate multi-space outputs in a single lightweight framework, enabling robust anomaly detection in both zero-shot and fine-tuned settings.
+
+{6}------------------------------------------------
+
+## 4 EXPERIMENTS
+
+We evaluate TSPulse across 4 TS diagnostic tasks: classification, anomaly detection, imputation, and similarity search. Details of the pre-trained model configurations are in Appendix A.9. Pre-training datasets are listed in Table 10, and they do not overlap with any of the evaluation datasets.
+
+### 4.1 ANOMALY DETECTION (AD)
+
+
+
+**(a) TSB-AD-U: Univariate AD Performance**
+
+| Method | VUS-PR | IMP(%) |
+|-|-|-|
+| TSPulse (FT) | 0.52 | |
+| TSPulse (ZS) | 0.48 | 33% |
+| MOMENT (FT) | 0.39 | 37% |
+| MOMENT (ZS) | 0.38 | 73% |
+| TimeSeries | 0.3 | 93% |
+| Clustering | 0.27 | |
+| SubPCA | 0.42 | 24% |
+| SShaped | 0.4 | 30% |
+| POD | 0.39 | 33% |
+| USEAD | 0.36 | 44% |
+| CNN | 0.34 | 93% |
+| LETRAAD | 0.33 | 58% |
+
+**(b) TSB-AD-M: Multivariate AD Performance**
+
+| Method | VUS-PR | IMP(%) |
+|-|-|-|
+| TSPulse (FT) | 0.39 | |
+| TSPulse (ZS) | 0.36 | 21% |
+| MOG | 0.21 | 86% |
+| VC2 | 0.31 | 26% |
+| MomentAD | 0.29 | 34% |
+| CDOT | 0.27 | 44% |
+| CNN | 0.31 | 26% |
+| ContraAnomaly | 0.31 | 26% |
+| LETRAAD | 0.31 | 26% |
+
+Figure 4: VUS-PR (official metric, higher is better) scores of different AD methods on the TSB-AD leaderboard. (a) TSB-AD-U: Univariate AD Performance. (b) TSB-AD-M: Multivariate AD Performance. Both charts show VUS-PR scores for various methods categorized into Pre-trained, Statistical, and DNN groups. TSPulse (FT) and TSPulse (ZS) consistently outperform other methods across both settings.
+
+Figure 4: VUS-PR (official metric, higher is better) scores of different AD methods on the TSB-AD leaderboard; IMP(%)—the percentage improvement of TSPulse over baselines; A maximum of top three SOTA models have been reported in each category. Full results across all 40 models are in Appendix A.11.
+
+**Setup:** We evaluate TSPulse on the TSB-AD benchmark (Liu & Paparrizos, 2024) (recent comprehensive leaderboard for AD), which comprises 40 eval datasets, covering both univariate (TSB-AD-U) and multivariate (TSB-AD-M) anomaly detection. The benchmark includes results from 40 SOTA methods and establishes VUS-PR (Paparrizos et al., 2022) as the primary and robust evaluation metric. A small labeled official *tuning-set* is provided for hyperparameter selection, consistently used across all leaderboard methods. We adopt this tuning set for multi-head triangulation to select the best-performing head and report scores on the test set for both zero-shot (TSPulse-ZS) and fine-tuned (TSPulse-FT) variants. In the zero-shot case, TSPulse is evaluated directly without training on the target data; in the fine-tuned case, it is self-supervised using the official training split without access to any anomaly labels. Note that all non-pre-trained neural network models are also trained using the same training split. Figure 4 summarizes VUS-PR results. Full details in Appendix A.11.
+
+
+
+| Method | Mean Accuracy | IMP(%) |
+|-|-|-|
+| TSPulse (FT) | 0.733 | |
+| VQShape | 0.701 | 5% |
+| MOMENT | 0.675 | 9% |
+| UniTS | 0.634 | 10% |
+| TRIP | 0.699 | 5% |
+| TS2Vec | 0.699 | 5% |
+| TCSS | 0.652 | 12% |
+| TNC | 0.665 | 10% |
+| TS/STCC | 0.664 | 10% |
+
+Figure 5: Classification Mean Accuracy results (higher is better). The chart shows Mean Accuracy for various methods categorized into Pre-trained models and Data-specific models. TSPulse (FT) and TSPulse (ZS) consistently outperform other methods, achieving higher mean accuracy scores.
+
+Figure 5: Classification Mean Accuracy results (higher is better); IMP(%)—the percentage improvement of TSPulse over baselines.
+
+**Results:** As illustrated in Figure 4, TSPulse (ZS) outperforms all existing SOTA methods on both the uni and multi-variate AD benchmarks. Specifically, TSPulse (ZS) achieves 14% and 16% higher VUS-PR scores compared to the best-performing baselines—SubPCA for the univariate setting and CNN for the multivariate setting, respectively. Notably, TSPulse, without any training on the target data, outperforms all models trained on it, underscoring its strong transfer learning. TSPulse also outperforms all the pre-trained models by +30% by using just a fraction of their model size. The fine-tuned variant, TSPulse (FT), further improves results, achieving 24% and 26% gains over SOTA on uni and multi-variate benchmarks. These results underscore the effectiveness of TSPulse for diverse AD tasks.
+
+### 4.2 CLASSIFICATION
+
+**Setup:** We evaluate TSPulse results on 29 datasets from the UEA Multivariate Time Series Classification Archive (Bagnall et al., 2018). Dataset and hyperparameter details are provided in Appendix A.12. We compare against recent pre-trained models—VQShape (Wen et al., 2024), Moment (Goswami et al., 2024), and UniTS (Gao et al., 2024)—as well as strong data-specific baselines including T-
+
+{7}------------------------------------------------
+
+Rep (Fraikin et al., 2024), TS2Vec (Yue et al., 2022), T-Loss (Franceschi et al., 2019), TS-TCC (Eldele et al., 2021) and TNC (Tonekaboni et al., 2021).
+
+**Results** Classification results fine-tuned/trained on the labeled data are reported in Figure 5. TSPulse achieves state-of-the-art accuracy, surpassing VQShape, UniTS, and Moment by 5–16%, while being drastically smaller (1M vs. 10–340M parameters). It also outperforms contrastive and supervised baselines by 5–12%, highlighting the effectiveness of TSPulse fine-tuning with TSLens.
+
+### 4.3 IMPUTATION
+
+**Setup:** We evaluate TSPulse on 6 LTSF benchmark datasets (Wu et al., 2021): ETTh1, ETTh2, ETTm1, ETTm2, Weather, and Electricity, under 4 mask ratios (12.5%, 25%, 37.5%, 50%) using *irregular hybrid masking* (a mix of block and point masks) to simulate real-world missingness.
+
+**Results:** We first evaluate TSPulse in a fully Zero-Shot (ZS) setup, requiring no data-specific tuning. Among pre-trained baselines, MOMENT supports native zero-shot imputation, for UniTS (Gao et al., 2024) the pretrained model is prompt-tuned (PMT) with 10% data in multi-task setup. We also compare against statistical baselines in ZS setup. As shown in Figure 6, TSPulse (ZS) outperforms MOMENT by over 70% and UniTS by 50% despite its prompt-tuning. Compared to statistical interpolation methods, TSPulse shows 50%+ gains, highlighting the effectiveness of TSPulse in hybrid masking setup and robust zero-shot generalization. More details in Appendix A.13
+
+
+
+| Category | Method | Mean MSE | IMP(%) |
+|-|-|-|-|
+| Zero-Shot (Prompt-Tuned/Statistical) | TSPulse (ZS) | 0.074 | - |
+| | UniTS (PMT) | 0.170 | 56% |
+| | MOMENT | 0.276 | 73% |
+| | Naive | 0.339 | 76% |
+| | Linear | 0.161 | 54% |
+| | Interpol | 0.039 | - |
+| Fine-Tuned/Supervised | TSPulse (FT) | 0.039 | - |
+| | Non-Stat. | 0.076 | 49% |
+| | TimesNet | 0.080 | 51% |
+| | FedFormer | 0.314 | 88% |
+
+Figure 6: Bar chart showing Mean MSE for various imputation methods. The chart is divided into Zero-Shot (Prompt-Tuned/Statistical) and Fine-Tuned/Supervised sections. TSPulse (ZS) is highlighted with a red dashed line. IMP(%) values are shown above the bars.
+
+Figure 6: Hybrid Masking imputation MSE results (Lower is better). IMP(%)—the percentage improvement of TSPulse over baselines.
+
+this setting as well.
+
+When Fine-Tuning (FT) is desired, TSPulse can be extended with a channel-mixing decoder to capture inter-variable dependencies, outperforming strong supervised models like TimesNet (Wu et al., 2022), FedFormer (Zhou et al., 2022), and Non-Stationary Transformers (Non-Stat.) (Liu et al., 2022) by over 40%. Remarkably, TSPulse’s zero-shot performance already exceeds many of the fine-tuned benchmarks, demonstrating its strong generalization and transferability. We further evaluated TSPulse under the full block masking strategy in both ZS and FT settings, as illustrated in Appendix Figure 13. TSPulse continues to outperform all baselines by a significant margin in
+
+### 4.4 TIME-SERIES SIMILARITY SEARCH
+
+**Setup:** We evaluate TSPulse’s similarity search using its zero-shot semantic embeddings to retrieve time-series segments with similar patterns, even under real-world distortions like time shifts, magnitude changes, and noise. Since time-series are typically indexed via high-stride sliding
+
+
+
+| Task | Method | PREC@3 | MRR@3 | CPU [ms] | GPU [ms] | Emb. dim. | Size |
+|-|-|-|-|-|-|-|-|
+| Family match | TSPulse | 0.68 | 0.76 | 0.387 | 0.050 | 240 | 1M |
+| | MOMENT | 0.53 | 0.59 | 5.51 (14X) | 0.46 (9X) | 512 | 40M |
+| | Chronos | 0.23 | 0.25 | 46.71 (120X) | 0.77 (15X) | 512 | 46M |
+| Fine-grained match | TSPulse | 0.58 | 0.72 | 0.387 | 0.050 | 240 | 1M |
+| | MOMENT | 0.42 | 0.48 | 5.51 (14X) | 0.46 (9X) | 512 | 40M |
+| | Chronos | 0.18 | 0.20 | 46.71 (120X) | 0.77 (15X) | 512 | 46M |
+
+Figure 7: Bar chart showing Similarity Search results (PREC@k and MRR@k) for Family match and Fine-grained match. IMP(%) values are shown above the bars. A table below the chart provides CPU, GPU, Embedding, and Size details for each method.
+
+Figure 7: Similarity Search results using zero-shot embeddings (Higher is better). IMP(%)—the percentage improvement of TSPulse over baselines.
+
+windows for efficient storage, the same pattern can appear in different positions, making distortion-invariant embeddings essential for similarity search. We use real and synthetic data for indexing, and generate query samples by applying complex augmentations (time shifts, magnitude changes, and noise distortions) from indexed samples.
+
+This setup tests the embeddings’ robustness in retrieving distorted similar patterns and simplifies evaluation, as the correct matches for each query are already known. Two tasks are defined: *Family Match* for high-level pattern retrieval and *Fine-Grained Match* for precise pattern matching and evaluated using PREC@k and MRR@k (Valcarce et al., 2020). We construct a synthetic dataset and a real dataset based on the UCR dataset (Chen et al., 2015), and report the average score across both for each task. See Appendix A.14 for full details.
+
+{8}------------------------------------------------
+
+| Variant | TSPulse Head | VUS-PR |
+|-|-|-|
+| Uni. | Headtriang. | 0.48 |
+| | Head ensemble | 0.44 9% ↓ |
+| | Head line | 0.42 14% ↓ |
+| | Head fft | 0.42 14% ↓ |
+| | Head pred | 0.30 60% ↓ |
+| Multi. | Headtriang. | 0.36 |
+| | Head ensemble | 0.31 16% ↓ |
+| | Head line | 0.31 16% ↓ |
+| | Head fft | 0.31 16% ↓ |
+| | Head pred | 0.24 50% ↓ |
+
+(a) Zero-shot Anomaly Detection
+
+| Model Variant | Accuracy |
+|-|-|
+| TSPulse | 0.747 |
+| w/o Short Embedding | 0.689 8% ↓ |
+| w/o Long Embedding | 0.681 10% ↓ |
+| w/o Mask | 0.691 8% ↓ |
+| w/o CM Identity Init | 0.685 9% ↓ |
+| w/o Channel Expansion | 0.734 2% ↓ |
+| w/o TSLens (Avg-Pool) | 0.675 11% ↓ |
+| w/o TSLens (Max-Pool) | 0.645 16% ↓ |
+| w/o Dual-space Learning | 0.696 7% ↓ |
+
+(b) Classification Accuracy
+
+| Model Variant | MSE |
+|-|-|
+| TSPulse | 0.074 |
+| w/o Dual-Space | 0.081 8% ↓ |
+| w/o Hybrid PT | 0.354 79% ↓ |
+
+
+
+Figure 1(c): Imputation MSE plot showing MSE vs. Implication (0% to 50%). TSPulse (blue line with circles) maintains a low MSE around 0.07. MOMENT (orange line with squares) and Chronos (green line with triangles) show significantly higher MSE, starting around 0.35 and 0.15 respectively and increasing as implication increases.
+
+(d) Similarity Search
+
+Table 1: Ablation results across tasks. [VUS-PR, Accuracy, MRR]: Higher is better; [MSE]: Lower is better. IMP(%) indicates the percentage improvement of the bold variant over the compared variant.
+
+**Results:** Figure 7 compares TSPulse’s similarity search performance against zero-shot embeddings from MOMENT and Chronos. We use their smallest variants to closely match TSPulse’s embedding size and enable faster indexing for a fair comparison. As shown, TSPulse outperforms MOMENT by over 25% in family-level and 40% in fine-grained match accuracy, and surpasses Chronos by 100%. Notably, TSPulse’s zero-shot embeddings are 2X smaller and enable 10–100X faster CPU inference, 9–15X faster GPU inference, and come from a model that is 40X smaller than the baselines. Further discussion in Appendix A.14.
+
+## 5 ABLATION STUDIES
+
+- **Anomaly Detection (AD)** We evaluate the performance of individual TSPulse heads for anomaly detection. Table 1(a) reports average VUS-PR scores for each head used independently. The proposed multi-head triangulation outperforms all single-head variants on both TSB-AD-U and TSB-AD-M, demonstrating the strength of multi-head TSPulse. See Appendix A.11 for details.
+- **Classification** We evaluate the impact of key design components in Table 1(b), using a representative subset of 17 UEA datasets for faster analysis. Removing either the short or long embedding from the *disentanglement* design reduces mean accuracy by 8–10%, confirming the importance of capturing both semantic and fine-grained features. Disabling *masking* during fine-tuning leads to an 8% drop—especially on smaller datasets—highlighting its role as a regularizer. Replacing *TSLens* with simple pooling causes an 11–16% drop, emphasizing the value of feature-attention. Randomly initializing the *channel-mixing (CM)* blocks instead of using identity weights leads to a 9% drop, reflecting the need for stable gradient flow. Removing *dual-space learning* (i.e., reconstructing only in time domain) lowers accuracy by 7%, and omitting *virtual channel expansion*, critical for low-channel datasets—causes a further 2% drop. More details in Appendix 18.
+- **Imputation** Table 1(c) shows that removing dual-space learning leads to an 8% drop in zero-shot accuracy. When pre-training (PT) is done with only block masking (i.e., w/o Hybrid PT), performance drops by 79% under hybrid-mask eval settings, underscoring the importance of hybrid masking in pre-training for robust, generalizable imputation, where missingness is irregular and more reflective of real-world scenarios.
+- **Similarity Search** Table 1(d) shows that TSPulse and baselines perform similarly without distortion. As augmentation distortion increases, all models degrade, but TSPulse remains notably more robust to time shifts, magnitude changes, and noise—highlighting the resilience of its embeddings in retrieving distorted yet similar patterns. Also, use of hybrid masking & semantic embedding boosts search performance by over 20% (Appendix A.14)
+- **Efficiency** Appendix A.2 shows TSPulse is significantly faster, smaller and CPU-friendly.
+
+## 6 SENSITIVITY ANALYSIS OF EMBEDDING DISENTANGLEMENT
+
+To validate that TSPulse learns genuinely disentangled temporal, spectral, and semantic representations, we conduct controlled experiments on synthetic signals under three perturbation settings: missing data, additive noise, and phase/time shifts. These perturbations allow us to isolate how each
+
+{9}------------------------------------------------
+
+embedding type responds to missing data in the input (masking), stochastic changes (noise), and temporal misalignment (phase shift).
+
+We quantify embedding stability using a distortion metric that measures how much each embedding changes under controlled perturbations (formal definitions in Appendix A.3). Representative results are summarised in Table 2. Lower values indicate greater robustness.
+
+Table 2: Representative distortion results (in %). Lower indicates less distortion. Time and FFT embeddings have dimension $d = 1536$ , while the semantic embedding has dimension $d = 256$ .
+
+| Experiment | Time ( $d = 1536$ ) | FFT ( $d = 1536$ ) | Semantic ( $d = 256$ ) |
+|-|-|-|-|
+| 30% Missing Data | 8.3% | 27.4% | 4.6% |
+| Noise Level $\eta = 0.5$ | 2.7% | 6.8% | 2.5% |
+| Phase / Time Shift | 130% | 21% | 12% |
+
+The results exhibit clear and expected disentanglement patterns.
+
+**Temporal embeddings** are highly sensitive to phase/time shifts (130% distortion), confirming preservation of fine-grained temporal alignment. This property is critical for tasks that depend on precise timing cues.
+
+**FFT embeddings** demonstrate substantially lower phase sensitivity, reflecting invariance to temporal alignment while retaining spectral characteristics.
+
+**Semantic embeddings (a.k.a Register embeddings)** are the most robust to missing data and noise and the least sensitive to phase shifts, consistent with their role as high-level structural abstractions rather than fine-grained signal encoders.
+
+These complementary behaviours directly translate to downstream utility. Tasks such as anomaly detection and imputation benefit from time and FFT embeddings for high-fidelity reconstruction, while retrieval tasks primarily leverage semantic embeddings for compact summarisation. Moreover, disentangled reconstruction across spaces enables triangulation-based mechanisms that detect anomaly types missed by single-view models.
+
+For more details, refer to Appendix A.3. We have also conducted a sensitivity deep-dive analysis focused on register embeddings as explained in Appendix A.4. Together, these results confirm that TSPulse achieves effective disentanglement across both representational spaces (time vs. FFT) and abstraction levels (fine-grained vs. semantic), forming a core foundation for its strong zero-shot transfer performance.
+
+## 7 CONCLUSION
+
+TSPulse sets a new benchmark for ultra-compact time-series pre-trained models, achieving state-of-the-art performance in classification, imputation, anomaly detection, and similarity search—all with under 1M parameters. Powered by innovations like disentangled masked reconstruction across spaces and abstractions, TSLens, hybrid masking, and multi-head triangulation, TSPulse enables robust zero-shot and fine-tuned performance. Despite its small size, it outperforms models 10–100X larger and runs efficiently on CPUs, making it both powerful and deployment-ready. Appendix A.17 outlines limitations and future directions, including opportunities to expand to additional downstream tasks, enable incremental learning and reduce supervision requirements. We believe this work will inspire more advanced research and innovation in the field of lightweight time-series modeling.
+
+## REPRODUCIBILITY STATEMENT
+
+Models and source code are publicly available at . Detailed model parameters are included in Appendix A.9. All pretraining datasets are publicly available and referenced in Appendix A.8, and all evaluation datasets are likewise publicly accessible.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/LHSea6DI8U.txt b/papers/LHSea6DI8U.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1cd2ccd9d71894572217a44befdf6024a96e9a5b
--- /dev/null
+++ b/papers/LHSea6DI8U.txt
@@ -0,0 +1,299 @@
+
+
+{0}------------------------------------------------
+
+# A GENERAL SPATIO-TEMPORAL BACKBONE WITH SCALABLE CONTEXTUAL PATTERN BANK FOR URBAN CONTINUAL FORECASTING
+
+Aoyu Liu, Yaying Zhang\*
+
+Tongji University
+
+{liuaoyu, yaying.zhang}@tongji.edu.cn
+
+## ABSTRACT
+
+With the rapid growth of spatio-temporal data fueled by IoT deployments and urban infrastructure expansion, accurate and efficient continual forecasting has become a critical challenge. Most existing Spatio-Temporal Graph Neural Networks rely on static graph structures and offline training, rendering them inadequate for real-world streaming scenarios characterized by graph expansion and distribution shifts. Although Continual Spatio-Temporal Forecasting methods have been proposed to tackle these issues, they often adopt backbones with limited modeling capacity and lack effective mechanisms to balance stability and adaptability. To overcome these limitations, we propose STBP, a novel framework that integrates a general spatio-temporal backbone with a scalable contextual pattern bank. The backbone extracts stable representations in the frequency domain and captures dynamic spatial correlations through lightweight linear graph attention. To support continual adaptation and mitigate catastrophic forgetting, the contextual pattern bank is updated incrementally via parameter expansion, enabling the capture of evolving node-level heterogeneity and relevance. During incremental training, the backbone remains fixed to preserve general knowledge, while the pattern bank adapts to new scenarios and distributions. Extensive experiments demonstrate that STBP outperforms state-of-the-art baselines in both forecasting accuracy and scalability, validating its effectiveness for continual spatio-temporal forecasting. Code is available at .
+
+## 1 INTRODUCTION
+
+With the rapid development of urban IoT sensing systems, spatio-temporal data such as traffic flow (Shao et al., 2022b) and air quality (Tian et al., 2025) observations continue to surge (Kumar et al., 2024; Hu et al., 2023; Fang et al., 2026). Conducting efficient and accurate forecasting on data streams has become a core task in the development of smart cities (Jin et al., 2024; Yang et al., 2025). Unlike traditional offline learning based on static assumptions, real-world urban environments are in a state of continuous evolution—dynamic changes in urban structure and behavioral patterns constantly drive the evolution of graph structures and data distributions.
+
+Spatio-Temporal Graph Neural Networks (STGNNs) (Kong et al., 2024; Gao et al., 2024; Liu & Zhang, 2025) have been widely used to model complex spatio-temporal dependencies. However, most existing models still adhere to the paradigm of "fixed topology + offline training": the graph structure is predefined and fixed during the training phase, and the model is deployed directly after training. Yet, as shown in Figure 1, this static assumption becomes difficult to sustain when the node set continuously expands or the connectivity dynamically reconstructs over time. If one relies solely on structural modifications and continuous fine-tuning to handle node increments, model performance often degrades significantly. Therefore, Continual Spatio-Temporal Forecasting (CSTF) (Miao et al., 2024b; Chen & Liang, 2025; Ma et al., 2025b) has garnered increasing attention. Its goal is to achieve incremental learning and efficient inference on new data without repeatedly relying on retraining with historical data. As shown in Figure 1, typical CSTF approaches employ a general spatio-temporal
+
+\*Corresponding author.
+
+{1}------------------------------------------------
+
+backbone integrated with strategies such as regularization, replay, or dynamic architectures to adapt to graph structural expansion and mitigate catastrophic forgetting.
+
+However, two key issues in existing CSTF methods have not yet been adequately addressed. First, the general backbone adopted by most current methods is relatively simple (e.g., stacks of graph and temporal convolutions), making it difficult to effectively handle incremental scenarios characterized by dynamically changing spatio-temporal correlations and long-term distribution drift. Forcibly adapting existing STGNNs for continual learning often leads to performance degradation (Shao et al., 2024; Ma et al., 2025a). Second, continual optimization strategies based on dynamic structural expansion are often weakly coupled with the
+
+backbone—such as direct parameter expansion or prompt concatenation—making it challenging to achieve a good balance among model stability, adaptability, and interpretability. Based on the above issues, we argue that an ideal CSTF framework should simultaneously address the following four key challenges: ❶ *handling distributional drift*; ❷ *modeling dynamic spatio-temporal correlations*; ❸ *alleviating catastrophic forgetting*; and ❹ *designing an incremental strategy that efficiently collaborates with the backbone*.
+
+To this end, we bridge the gap between STGNNs and continual learning by introducing a general-purpose spatio-temporal backbone with scalable contextual pattern bank (STBP). Specifically, the backbone in STBP leverages frequency-domain modules to extract stable spatio-temporal components, mitigating distributional drift. Simultaneously, a lightweight, scene-agnostic linear graph attention mechanism is introduced to model dynamic spatial correlations with low computational overhead. To mitigate catastrophic forgetting and support continuous graph structure expansion, we design a contextual pattern bank composed of trainable parameters. It incrementally updates knowledge via parameter expansion and interacts with the backbone through gating and attention mechanisms, thereby uncovering node relevance and heterogeneity, and gradually adapting to scenario expansion at low cost. Within this framework, the backbone is responsible for modeling general and stable patterns, while the contextual pattern bank captures node-related heterogeneous contexts, working collaboratively to adapt to continuously evolving environments.
+
+Our main contributions are summarized as follows: ❶ We propose an efficient and general backbone tailored for continual forecasting tasks, capable of modeling dynamic spatial correlations and mitigating distribution shift; ❷ We design a prompt-based guidance mechanism using contextual pattern bank, supporting dynamic model adaptation and alleviating catastrophic forgetting; ❸ Extensive experiments on multiple real-world datasets demonstrate that STBP significantly outperforms state-of-the-art baselines in terms of forecasting accuracy, adaptability, and scalability.
+
+## 2 RELATED WORK
+
+**Spatio-Temporal Forecasting.** Early studies in spatio-temporal forecasting, including methods like STGCN (Yu et al., 2018) and DCRNN (Li et al., 2018), primarily focused on combining basic temporal and spatial elements for prediction tasks. These models typically depended on predefined geographic adjacency matrices, which limited their ability to capture the evolving nature of spatial correlations. In contrast, later advancements, such as GWNet (Wu et al., 2019), DGCRN (Li et al., 2023), and MegaCRN (Jiang et al., 2023b), addressed this limitation by incorporating adaptive adjacency matrices or learning spatial correlations directly from the data. This shift led to a notable improvement in forecasting accuracy. More recently, models like STID (Shao et al., 2022a), STAEformer (Liu et al., 2023a), and HimNet (Dong et al., 2024) have emphasized the significance of distinguishing spatial patterns to further enhance forecasting performance. These methods incorporate trainable components, including spatial embeddings, parameter pools, and contextual pattern bank, to more accurately capture spatial variations, boosting both prediction precision and model adaptability.
+
+**Continual Spatio-Temporal Forecasting.** TrafficStream (Chen et al., 2021), one of the pioneering frameworks in CSTF, integrates spatio-temporal modeling with continual learning by employing
+
+
+
+Figure 1: Limitations of existing studies. The diagram is divided into two main sections. The top section shows 'STGNNs' with a checkmark, leading to 'Static Assumptions' with a red X and a sad face icon. A plus sign connects this to 'Bridges the Gap', which leads to 'Effective Continual Forecasting' with a gold medal icon. The bottom section shows 'CSTF Methods' with a checkmark, leading to 'Regularization', 'Replay', and 'Dynamic' with checkmarks, and 'Weak ST Modeling' with a red X and a sad face icon.
+
+Figure 1: Limitations of existing studies.
+
+{2}------------------------------------------------
+
+historical data replay and parameter smoothing to manage long-term streaming traffic data and achieve accurate traffic flow prediction. Building on this line of work, STKEC (Wang et al., 2023a) proposes an influence-based knowledge expansion strategy together with a memory-augmented knowledge consolidation mechanism, which better supports the scaling of transportation networks while alleviating catastrophic forgetting. PECPM (Wang et al., 2023b) leverages pattern matching to dynamically maintain a traffic pattern bank, enabling efficient, historical-data-free continual learning with improved accuracy. STRAP (Zhang et al., 2025) adopts retrieval-augmented learning, constructing multi-dimensional pattern libraries and using plug-and-play prompting to fuse retrieved patterns, thereby enhancing out-of-distribution (OOD) generalization and mitigating catastrophic forgetting. EAC (Chen & Liang, 2025) introduces prompt tuning via a dynamic prompt pool that expands and compresses over time, balancing adaptation to new nodes with knowledge preservation in a parameter-efficient manner. Additionally, UFCL (Miao et al., 2025) leverages federated learning to protect data privacy and employs a global replay buffer of synthetic spatio-temporal data, addressing the challenges of distributed streaming environments.
+
+## 3 PRELIMINARY
+
+**Definition 1 (Streaming Spatio-Temporal Graph).** We define a streaming spatio-temporal graph as a sequence of evolving graphs $\mathbb{G} = \{G_\tau\}_{\tau=1}^T$ , where each graph $G_\tau = (V_\tau, E_\tau, A_\tau)$ represents the graph at incremental period $\tau$ . Here, $V_\tau$ denotes the node set, $E_\tau$ the edge set, and adjacency matrix $A_\tau \in \mathbb{R}^{N_\tau \times N_\tau}$ connections between nodes. The number of nodes at period $\tau$ is denoted by $N_\tau = |V_\tau|$ . The graph evolves incrementally as $G_\tau = G_{\tau-1} + \Delta G_\tau$ , where $\Delta G_\tau$ captures structural or feature modifications between periods.
+
+**Definition 2 (Continual Spatio-Temporal Forecasting).** Continual spatio-temporal forecasting aims to develop an optimal predictive model at each stage based on dynamic, streaming spatio-temporal graph data. At each incremental period $\tau$ , given the current graph $G_\tau$ and historical observations $\mathbf{X}_\tau \in \mathbb{R}^{N_\tau \times T_h}$ , the goal is to predict future signals $\mathbf{Y}_\tau \in \mathbb{R}^{N_\tau \times T_f}$ as follows:
+
+$$\hat{\mathbf{Y}}_\tau = f_\theta(G_\tau, \mathbf{X}_\tau), \quad (1)$$
+
+where $T_h$ is the length of the historical observation window, and $T_f$ is the forecasting horizon. The model $f_\theta$ is parameterized by $\theta$ , and continually updated by minimizing:
+
+$$\theta_\tau^* = \arg \min_{\theta} \mathbb{E}_{(G_\tau, \mathbf{x}_\tau, \mathbf{y}_\tau) \sim \mathcal{D}_\tau} [\mathcal{L}(f_\theta(G_\tau, \mathbf{x}_\tau), \mathbf{y}_\tau)], \quad (2)$$
+
+where $\mathcal{L}(\cdot, \cdot)$ is a loss function, and $\mathcal{D}_\tau$ denotes the data distribution at period $\tau$ .
+
+## 4 METHODOLOGY
+
+### 4.1 OVERVIEW OF STBP
+
+The workflow and architecture of STBP are shown in Figure 2. It consists of two core components: a general spatio-temporal backbone and a contextual pattern bank. The backbone, comprising temporal and spatial modules with a prediction layer, captures spatio-temporal correlations in evolving networks. The contextual pattern bank, made of trainable parameters, is dynamically expanded and fine-tuned as data evolves. While the backbone captures general, stable patterns, the contextual pattern bank adapts to environmental changes, focusing on context-specific patterns. Guided by prompts, both components collaborate to form an efficient and robust continual learning system.
+
+In terms of workflow, streaming spatio-temporal data is sequentially fed into the STBP. During the initial incremental training phase, the backbone and contextual pattern bank are jointly trained to capture spatio-temporal correlations from current data. In later stages, the backbone is frozen (denoted by a snowflake) to retain knowledge learned from historical data, while the contextual pattern bank is updated (denoted by a flame) through expansion and fine-tuning. These updates serve as prompts, guiding the frozen backbone to adapt to new data distributions. This continual learning process, driven by the interplay between backbone and contextual pattern bank, enables the model to progressively enhance its representation power and adaptability while preserving core functionality. For detailed workflow steps, refer to Algorithm 1 in Appendix A.3.2.
+
+{3}------------------------------------------------
+
+
+
+Figure 2: The overall workflow and architecture of STBP. The diagram is divided into three main horizontal sections. The top section, 'The workflow of STBP', shows an incremental learning process where a graph with nodes T1 and T2 is expanded to include T3. Below this, the 'Contextual Pattern Bank Prompt-Based Guidance' section shows a bank of prompts P\_tau^(0), P\_tau^(1), P\_tau^(2) being updated and used by a 'gating' mechanism to guide a 'FFW' (Feed Forward) and 'DLGA' (Dual-Stream Linear Graph Attention) module. The bottom section shows the 'Spatio-Temporal Backbone' architecture, which includes a 'Frequency-Domain Network' (processing input X\_tau through FFT and IFFT), a 'Dual-Stream Linear Graph Attention' module (with Query, Key, and Value streams), and a 'Contextual Pattern Bank Expansion' module. The final output is a 'Prediction Y\_tau'.
+
+Figure 2: The overall workflow and architecture of STBP.
+
+### 4.2 CONTEXTUAL PATTERN BANK
+
+Recent studies (Shao et al., 2022a; Dong et al., 2024; Chen & Liang, 2025) have shown that incorporating node-specific trainable parameters into STGNNs can significantly enhance forecasting performance. Following this insight, we propose an expandable contextual pattern bank $\mathbf{P}_\tau \in \mathbb{R}^{N_\tau \times d}$ , composed of trainable parameters, to consolidate historical spatio-temporal patterns and generalize to new ones, thereby mitigating *catastrophic forgetting* and continuously adapting to new incremental scenarios, where $d$ denotes the feature dimension.
+
+We posit that the model can utilize $\mathbf{P}_\tau$ to effectively distinguish both the *relevance* and *heterogeneity* of nodes, enabling a more nuanced understanding of the underlying data structures. Here, *relevance* refers to shared behavioral patterns among nodes—such as similar trends or periodic fluctuations—while *heterogeneity* captures differences arising from distinct node functions or external factors such as geography, policy, or events. To validate this hypothesis, we conduct a t-SNE-based analysis on $\mathbf{P}_\tau$ trained on spatio-temporal datasets (see Figure 3), which reveals meaningful clustering patterns. Each cluster exhibits distinct characteristics, corresponding to *heterogeneity*, while nodes within the same cluster display similar temporal dynamics, reflecting *relevance*.
+
+As shown in Figure 2, given a streaming spatio-temporal input $\mathbf{X}_\tau \in \mathbb{R}^{N_\tau \times T_h}$ , the backbone model $\mathcal{M}_\theta$ , and contextual pattern bank $\mathbf{P}_\tau \in \mathbb{R}^{N_\tau \times d}$ , the incremental learning process is formulated as:
+
+$$\hat{\mathbf{Y}}_\tau = \mathcal{M}_\theta(\mathbf{X}_\tau, \mathbf{P}_\tau). \quad (3)$$
+
+At the initial training stage ( $\tau = 1$ ), both the backbone and contextual pattern bank are jointly trained (denoted with flame). For subsequent stages ( $\tau > 1$ ), the backbone is frozen (denoted with snowflake), and only the contextual pattern bank is updated through expansion:
+
+$$\mathbf{P}'_\tau = \mathbf{P}_{\tau-1} \parallel \Delta \mathbf{P}_\tau, \quad (4)$$
+
+
+
+Figure 3: Contextual pattern bank visualization. The figure contains four subplots. The top-left is a t-SNE scatter plot showing nodes clustered into four groups: Cluster 1 (green), Cluster 2 (blue), Cluster 3 (red), and Cluster 4 (purple). The top-right is a line plot for Cluster 1 showing 'Flow' over 'Time Step' for nodes 260, 221, 465, 448, and 267. The bottom-left is a line plot for Cluster 2 showing 'Flow' over 'Time Step' for nodes 177, 187, 182, 231, and 181. The bottom-right is a line plot for Cluster 3 showing 'Flow' over 'Time Step' for nodes 166, 972, 965, 978, and 973.
+
+Figure 3: Contextual pattern bank visualization.
+
+{4}------------------------------------------------
+
+where $\Delta \mathbf{P}_\tau \in \mathbb{R}^{(N_\tau - N_{\tau-1}) \times d}$ represents newly introduced parameters for the current incremental period. Only the expanded contextual pattern bank $\mathbf{P}'_\tau \in \mathbb{R}^{N_\tau \times d}$ is fine-tuned during training. Notably, even without explicit clustering constraints, the contextual pattern bank autonomously distinguishes heterogeneous and relevant nodes through data-driven parameter learning and prompt-based interactions with the backbone, driven by the prediction task. This strategy ensures that the backbone retains previously acquired knowledge, while the contextual pattern bank continually adapts to evolving distributions. It incrementally expands to represent an increasingly diverse set of environmental patterns, thereby avoiding the inadequacy exhibited by fixed models in novel scenarios.
+
+Distinct from existing work (Wang et al., 2023a; Chen & Liang, 2025; Wang et al., 2023b), we introduce a *Prompt-Based Guidance* (Peebles & Xie, 2023; Zhang et al., 2023) mechanism to enhance $\mathbf{P}_\tau$ 's capacity to model both node-level relevance and heterogeneity. Specifically, the contextual pattern bank comprises three groups of trainable parameters: $\mathbf{P}_\tau^{(i)} \in \mathbb{R}^{N_\tau \times d}$ for $i \in \{0, 1, 2\}$ . As illustrated in Figure 2, these components interact with the backbone's hidden representation $\mathbf{H}_\tau$ via the following prompt-based gating function:
+
+$$\mathbf{H}'_\tau = \mathbf{P}_\tau^{(1)} \cdot h_\theta(\mathbf{H}_\tau \cdot (1 + \mathbf{P}_\tau^{(0)})), \quad (5)$$
+
+where $h_\theta$ denotes an arbitrary submodule within the backbone. This gating mechanism enables adaptive modeling of node heterogeneity. Additionally, $\mathbf{P}_\tau^{(2)}$ acts as a key embedding in the attention module, guiding the backbone to generalize correlation-aware information under task constraints. Importantly, since the contextual pattern bank encodes high-level abstractions rather than raw historical data, our method supports knowledge retention without revisiting prior data—offering advantages in *privacy protection* and *storage efficiency*.
+
+### 4.3 GENERAL SPATIO-TEMPORAL BACKBONE
+
+While the contextual pattern bank mitigates catastrophic forgetting in continual learning, it lacks the ability to model dynamic spatio-temporal correlations and handle distributional drift. To address this, we design a **general spatio-temporal backbone** aimed at handling distributional drift, spatio-temporal correlation modeling, and graph scalability during continual learning. The term *general* implies that the backbone is independent of the number of nodes and does not rely on any predefined adjacency matrix, making it adaptable to arbitrary spatio-temporal data structures.
+
+As shown in Figure 2, the backbone operates as follows: the input spatio-temporal data first passes through a **frequency-domain network** (FreNet), which maps it into high-dimensional temporal representations and extracts stable components via frequency domain analysis. A **dual-stream linear graph attention** (DLGA) module then captures dynamic spatial correlations, followed by a feedforward layer with a multilayer perceptron for enhanced nonlinear expressivity. Finally, the features are reconstructed to their original shape by another FreNet and passed through a prediction layer. We detail the FreNet and DLGA modules below.
+
+**Frequency-Domain Network.** Spatio-temporal data in evolving environments often suffer from distributional drift (Wang et al., 2024; Ji et al., 2025; Zhou et al., 2023). Although the contextual pattern bank helps retain stable knowledge, we further address this issue through a dedicated frequency-domain analysis (Xia et al., 2023). FreNet is designed to capture temporal correlations while emphasizing stable components in the data, such as periodicity and trends, which are more resilient to distributional changes (Liu & Zhang, 2025). Specifically, STBP employs two FreNets—one at the beginning and one at the end of the backbone (Figure 2). The first maps input data $\mathbf{X}_\tau \in \mathbb{R}^{N_\tau \times T_h}$ through a linear layer into a high-dimensional representation $\mathbf{H}_\tau \in \mathbb{R}^{N_\tau \times d}$ , which is then transformed to the frequency domain using a Fast Fourier Transform (FFT). A learnable frequency-domain embedding $\mathbf{F}_\tau \in \mathbb{C}^{(\frac{d}{2}+1)}$ adaptively highlights stable features. This process is formalized as:
+
+$$\mathbf{H}_\tau^f = \text{IFFT}(\text{FFT}(\mathbf{H}_\tau) \odot \mathbf{F}_\tau), \quad (6)$$
+
+where $\mathbf{H}_\tau^f \in \mathbb{R}^{N_\tau \times d}$ is further processed by a linear layer. The resulting representation $\mathbf{H}_\tau^f$ then interacts with the contextual pattern bank component $\mathbf{P}_\tau^{(0)}$ via gating-based prompt guidance (Eq. 5) to produce $\mathbf{H}_\tau^g \in \mathbb{R}^{N_\tau \times d}$ , which serves as input to the subsequent DLGA module. The second FreNet performs an inverse operation, restoring the feature shape to $\mathbb{R}^{N_\tau \times T_h}$ . Compared to traditional temporal modules like RNNs (Li et al., 2018; Bai et al., 2020) or TCNs (Zheng et al., 2023; Fang et al., 2023), FreNet offers higher computational efficiency and enhanced ability to extract
+
+{5}------------------------------------------------
+
+stable low-frequency components (e.g., periodicity and trends) while suppressing high-frequency noise, thereby obtaining more robust temporal representations that are resilient to distributional drift across periods and scenarios.
+
+**Dual-Stream Linear Graph Attention.** After obtaining stable components, it remains essential to capture complex spatial interactions and time-varying node correlations. An effective spatial module must adaptively learn node correlations in a data-driven manner, maintain computational efficiency, and scale to growing graphs. Graph attention mechanisms (Veličković et al., 2018) have emerged as promising solutions, enabling dynamic correlation modeling without relying on fixed adjacency matrices. However, conventional graph attention (Zheng et al., 2020; Jiang et al., 2023a; Liu et al., 2023a) incurs $O(N^2)$ complexity, limiting its scalability. To overcome this, we propose DLGA (Figure 2), which improves efficiency using a *random feature mapping*-based linear attention mechanism (Katharopoulos et al., 2020). Moreover, DLGA introduces a **dual-stream structure** by incorporating the contextual pattern bank $\mathbf{P}_\tau^{(2)} \in \mathbb{R}^{N_\tau \times d}$ as an additional *key*. This enables the model to assess the relationship between evolving input patterns and stored knowledge. Formally:
+
+$$\mathbf{Q} = \mathbf{W}_q \mathbf{H}_\tau^s, \quad \mathbf{K} = \mathbf{W}_k \mathbf{H}_\tau^s, \quad \mathbf{V} = \mathbf{W}_v \mathbf{H}_\tau^s, \quad (7)$$
+
+$$\mathbf{H}_\tau^{s'} = \text{Attention}(\mathbf{Q}, \mathbf{K}, \mathbf{V}, \mathbf{P}_\tau^{(2)}) \quad (8)$$
+
+$$\begin{aligned} \text{Attention}(\mathbf{Q}, \mathbf{K}, \mathbf{V}, \mathbf{P}_\tau^{(2)}) &\approx (\phi(\mathbf{Q})\phi(\mathbf{K})^\top + \phi(\mathbf{Q})\phi(\mathbf{P}_\tau^{(2)})^\top) \mathbf{V} \\ &= \phi(\mathbf{Q}) \left( \phi(\mathbf{K})^\top \mathbf{V} + \phi(\mathbf{P}_\tau^{(2)})^\top \mathbf{V} \right). \end{aligned} \quad (9)$$
+
+Here, $\mathbf{W}_q$ , $\mathbf{W}_k$ , and $\mathbf{W}_v$ are trainable projection matrices. $\mathbf{H}_\tau^s$ and $\mathbf{H}_\tau^{s'} \in \mathbb{R}^{N_\tau \times d}$ denote the input and the spatially enriched representation passed to the feedforward layer of the DLGA module, respectively. The function $\phi(\cdot)$ denotes a random feature mapping, with Softmax used for approximation in our implementation. For further details on the approximation derivation, see Appendix A.3.1. Notably, the linear attention approximation does not explicitly construct an adjacency matrix. Instead, it implicitly models dynamic correlations by reordering operations in the attention computation. DLGA reduces computational complexity from quadratic to linear, while preserving dynamic spatial modeling and seamlessly integrating prompt-based knowledge from the contextual pattern bank.
+
+## 5 EXPERIMENT
+
+### 5.1 EXPERIMENTAL SETTINGS
+
+**Datasets.** We evaluate our model on three real-world streaming spatio-temporal datasets from the traffic and meteorology domains. The traffic datasets, **PEMS-Stream** (Chen et al., 2001) and **CA-Stream** (Liu et al., 2023b), consist of traffic flow measurements provided by the California Department of Transportation (CalTrans), with a sampling interval of 5 minutes. The meteorological dataset, **AIR-Stream** (Chen & Liang, 2025), is derived from urban air quality platform of the Chinese Environmental Monitoring Center, with hourly sampling intervals. To ensure fair evaluation, all datasets are split into training, validation, and test sets using a fixed ratio of 6:2:2. For each prediction task, the model is trained to forecast the next 12 time steps based on the previous 12 observations. Detailed dataset statistics are provided in Appendix A.4.1.
+
+**Baselines and Metrics.** We select representative models from two categories as baselines: ▷ Conventional spatio-temporal forecasting models, including lightweight spatio-temporal architectures such as **GWNet** (Wu et al., 2019), **STID** (Shao et al., 2022a), and **iTransformer** (Liu et al., 2024b). These models are adapted specifically for incremental training in our experiments. ▷ Continual spatio-temporal forecasting models, including **TrafficStream**, **STKEC** (Wang et al., 2023a), **PECPM** (Wang et al., 2023b), **STRAP** (Zhang et al., 2025), and **EAC** (Chen & Liang, 2025). The performance of all models is evaluated using the following metrics: Mean Absolute Error (**MAE**), Root Mean Squared Error (**RMSE**), and Mean Absolute Percentage Error (**MAPE**). More details on this are included in Appendix A.4.2.
+
+### 5.2 MAIN RESULTS
+
+The main experimental results are summarized in Table 1, which reports the metrics averaged over all incremental periods. We also present the results at specific forecasting horizons (3, 6, and 12 time steps ahead), together with the overall average across horizons. STGNNs, including GWNet and STID,
+
+{6}------------------------------------------------
+
+Table 1: Main experimental results. **Bold**: best, underline: second best.
+
+| Dataset | Metric | Horizon | GWNet | STID | iTransformer | TrafficStream | STKEC | PECPM | STRAP | EAC | STBP |
+|-|-|-|-|-|-|-|-|-|-|-|-|
+| PEMS-Stream | MAE | 3 | 19.64 ±0.12 24.34 ±0.13 | 17.63 ±0.76 | 14.23 ±0.09 | 14.29 ±0.12 14.26 ±0.13 14.30 ±0.11 | 13.80±0.16 | 11.62±0.09 | | | |
+| | | 6 | 19.68 ±0.10 25.45 ±0.21 | 20.82 ±0.76 | 16.43 ±0.03 | 16.44 ±0.11 16.35 ±0.12 16.34 ±0.10 | 15.40±0.19 | 12.26±0.10 | | | |
+| | | 12 | 20.63 ±0.10 26.42 ±0.38 | 28.31 ±0.86 | 21.76 ±0.07 | 21.66 ±0.11 21.46 ±0.12 21.52 ±0.10 | 20.32±0.28 | 13.47±0.08 | | | |
+| | | Avg. | 19.87 ±0.10 26.07 ±0.23 | 21.60 ±0.79 | 16.95 ±0.03 | 16.96 ±0.09 16.86 ±0.12 16.88 ±0.10 | 15.67±0.20 | 12.31±0.07 | | | |
+| | RMSE | 3 | 32.20 ±0.17 39.37 ±0.13 | 28.20 ±1.15 | 23.00 ±0.09 | 23.08 ±0.11 23.07 ±0.15 23.06 ±0.13 | 22.26±0.23 | 19.20±0.13 | | | |
+| | | 6 | 32.34 ±0.12 40.89 ±0.19 | 33.80 ±1.13 | 26.87 ±0.04 | 26.93 ±0.11 26.76 ±0.20 26.71 ±0.11 | 24.92±0.28 | 20.51±0.15 | | | |
+| | | 12 | 33.73 ±0.09 46.20 ±0.43 | 45.98 ±1.25 | 35.29 ±0.11 | 35.19 ±0.11 34.77 ±0.37 34.30 ±0.10 | 30.50±0.45 | 22.67±0.13 | | | |
+| | | Avg. | 32.59 ±0.18 41.67 ±0.21 | 34.88 ±1.17 | 27.52 ±0.05 | 27.56 ±0.11 27.37 ±0.20 27.35 ±0.19 | 25.30±0.29 | 20.52±0.11 | | | |
+| | MAPE (%) | 3 | 27.47 ±0.06 37.79 ±2.23 | 32.46 ±3.04 | 18.34 ±0.67 | 18.54 ±0.61 18.12 ±0.66 18.69 ±0.49 | 18.35±0.31 | 15.00±0.24 | | | |
+| | | 6 | 27.22 ±0.09 39.70 ±2.43 | 36.73 ±3.84 | 20.77 ±0.71 | 20.64 ±0.48 20.79 ±0.57 21.33 ±0.41 | 20.11±0.36 | 15.55±0.26 | | | |
+| | | 12 | 29.38 ±1.11 47.94 ±2.91 | 54.31 ±4.66 | 27.88 ±0.26 | 27.05 ±0.08 28.33 ±0.52 28.20 ±1.10 | 24.30±0.57 | 16.75±0.23 | | | |
+| | | Avg. | 27.79 ±0.76 41.09 ±2.49 | 39.63 ±3.81 | 21.66 ±0.54 | 21.50 ±0.52 21.73 ±0.45 22.17 ±0.46 | 20.42±0.41 | 15.65±0.21 | | | |
+| CA-Stream | MAE | 3 | 23.49 ±0.09 27.71 ±0.23 | 20.16 ±0.06 | 17.82 ±0.26 | 17.69 ±0.19 17.93 ±0.12 23.59 ±0.61 | 17.60±0.37 | 15.01±0.18 | | | |
+| | | 6 | 23.31 ±0.09 28.93 ±0.26 | 24.37 ±0.06 | 20.38 ±0.17 | 20.41 ±0.04 20.33 ±0.09 25.38 ±0.68 | 19.65±0.54 | 15.78±0.07 | | | |
+| | | 12 | 24.78 ±0.08 33.61 ±0.45 | 34.05 ±0.06 | 26.92 ±0.53 | 27.05 ±0.17 26.68 ±0.19 31.10 ±0.89 | 24.80±1.33 | 17.19±0.09 | | | |
+| | | Avg. | 23.73 ±0.29 29.71 ±0.28 | 25.34 ±0.05 | 21.09 ±0.29 | 21.09 ±0.13 21.04 ±0.11 26.25 ±0.62 | 20.20±0.69 | 15.77±0.09 | | | |
+| | RMSE | 3 | 35.87 ±0.98 41.53 ±0.31 | 31.58 ±0.09 | 28.01 ±0.22 | 28.02 ±0.19 28.00 ±0.16 34.73 ±0.74 | 27.40±0.46 | 24.37±0.27 | | | |
+| | | 6 | 35.68 ±0.08 43.14 ±0.35 | 37.76 ±0.10 | 32.19 ±0.22 | 32.43 ±0.05 31.94 ±0.09 37.97 ±0.86 | 30.64±0.83 | 25.71±0.22 | | | |
+| | | 12 | 37.57 ±1.11 49.18 ±0.58 | 51.24 ±0.10 | 41.59 ±0.64 | 42.08 ±0.21 41.14 ±0.30 46.74 ±1.36 | 37.77±1.94 | 28.08±0.14 | | | |
+| | | Avg. | 36.20 ±0.35 44.12 ±0.37 | 38.94 ±0.09 | 33.01 ±0.35 | 33.24 ±0.13 32.77 ±0.17 39.05 ±0.49 | 31.15±0.99 | 25.70±0.16 | | | |
+| | MAPE (%) | 3 | 24.61 ±0.95 29.24 ±0.65 | 21.76 ±0.17 | 17.05 ±0.41 | 16.60 ±0.19 17.63 ±0.91 19.11 ±0.49 | 18.26±1.88 | 14.22±0.03 | | | |
+| | | 6 | 24.44 ±0.80 30.60 ±0.78 | 26.70 ±0.22 | 19.22 ±0.30 | 18.98 ±0.19 19.74 ±0.92 20.48 ±0.39 | 19.45±1.16 | 15.85±0.07 | | | |
+| | | 12 | 25.71 ±0.06 36.88 ±1.29 | 39.81 ±0.38 | 25.47 ±0.46 | 24.99 ±0.29 25.94 ±1.09 24.97 ±0.92 | 25.52±1.10 | 16.20±0.08 | | | |
+| | | Avg. | 24.79 ±0.85 31.75 ±0.86 | 28.34 ±0.20 | 19.98 ±0.30 | 19.61 ±0.19 20.49 ±0.69 21.15 ±0.47 | 20.11±1.25 | 14.94±0.05 | | | |
+| AIR-Stream | MAE | 3 | 28.48 ±1.43 32.85 ±0.21 | 22.37 ±0.76 | 20.73 ±0.40 | 20.95 ±0.10 20.82 ±0.35 21.41 ±0.33 | 20.41±0.36 | 14.94±0.14 | | | |
+| | | 6 | 29.79 ±0.96 33.13 ±0.22 | 26.22 ±0.48 | 25.64 ±0.34 | 25.54 ±0.08 25.54 ±0.19 26.12 ±0.43 | 25.20±0.29 | 24.70±0.30 | | | |
+| | | 12 | 31.30 ±0.12 33.88 ±0.25 | 29.45 ±0.31 | 29.04 ±0.23 | 28.94 ±0.10 28.95 ±0.11 29.38 ±0.45 | 28.52±0.42 | 28.28±0.63 | | | |
+| | | Avg. | 29.66 ±0.10 33.23 ±0.22 | 25.53 ±0.56 | 24.58 ±0.34 | 24.63 ±0.11 24.60 ±0.21 25.16 ±0.42 | 24.21±0.43 | 23.64±0.23 | | | |
+| | RMSE | 3 | 34.38 ±0.29 51.24 ±0.28 | 34.98 ±1.18 | 32.80 ±0.57 | 33.13 ±0.05 33.07 ±0.52 33.72 ±0.41 | 32.19±0.57 | 32.15±0.24 | | | |
+| | | 6 | 46.22 ±1.41 51.61 ±0.31 | 40.95 ±0.73 | 40.41 ±0.53 | 40.38 ±0.20 40.48 ±0.39 41.13 ±0.40 | 39.63±0.48 | 39.81±0.26 | | | |
+| | | 12 | 48.34 ±0.52 52.55 ±0.39 | 45.70 ±0.55 | 45.54 ±0.47 | 45.53 ±0.27 45.63 ±0.27 46.07 ±0.43 | 44.65±0.63 | 44.97±0.97 | | | |
+| | | Avg. | 46.01 ±1.46 51.72 ±0.33 | 39.67 ±0.91 | 38.58 ±0.53 | 38.70 ±0.20 38.76 ±0.41 39.37 ±0.30 | 37.83±0.60 | 37.76±0.30 | | | |
+| | MAPE (%) | 3 | 38.02 ±2.60 43.52 ±0.64 | 28.64 ±1.28 | 26.33 ±0.30 | 26.24 ±0.06 25.79 ±0.50 26.10 ±0.30 | 26.00±0.71 | 24.64±0.16 | | | |
+| | | 6 | 39.98 ±1.70 44.12 ±0.57 | 34.91 ±0.68 | 33.33 ±0.21 | 33.10 ±0.28 32.97 ±0.18 33.30 ±0.19 | 32.85±0.64 | 30.66±0.42 | | | |
+| | | 12 | 42.37 ±1.14 45.06 ±0.62 | 40.79 ±0.39 | 39.27 ±0.24 | 39.02 ±0.18 38.67 ±0.02 38.87 ±0.24 | 38.85±0.67 | 36.23±0.52 | | | |
+| | | Avg. | 39.87 ±1.87 44.16 ±0.60 | 34.15 ±0.70 | 32.29 ±0.29 | 32.12 ±0.21 31.82 ±0.19 32.37 ±0.28 | 31.77±0.53 | 29.70±0.35 | | | |
+
+rely on static graph assumptions and are not designed for continual learning. Following prior work (Chen & Liang, 2025), we therefore **retrain** the backbone from scratch at each incremental stage using only data from the current period. In contrast, iTransformer is scenario-agnostic, so we adopt an **online** training regime: at each stage it is trained on the complete node set of the current spatio-temporal graph, initialized from the previous period’s weights, enabling end-to-end fine-tuning. More detailed experimental results are provided in Appendix A.4.4.
+
+Table 2: Comparison of few-shot forecasting performance.
+
+| Model | PEMS-Stream 10% | | | CA-Stream 10% | | |
+|-|-|-|-|-|-|-|
+| | MAE | RMSE | MAPE (%) | MAE | RMSE | MAPE (%) |
+| GWNet | 30.15 ±1.10 | 45.30 ±1.59 | 48.80 ±3.35 | 33.73 ±0.88 | 50.80 ±1.43 | 36.52 ±0.86 |
+| STID | 33.42 ±2.90 | 50.63 ±3.73 | 63.96 ±12.60 | 37.09 ±0.52 | 55.10 ±0.69 | 39.18 ±1.12 |
+| iTransformer | 20.99 ±0.19 | 32.67 ±0.25 | 49.11 ±1.02 | 25.43 ±0.08 | 39.01 ±0.10 | 28.39 ±0.54 |
+| TrafficStream | 17.23 ±0.08 | 27.49 ±0.17 | 27.63 ±0.43 | 21.28 ±0.19 | 33.25 ±0.22 | 20.45 ±0.45 |
+| STKEC | 17.73 ±0.12 | 28.23 ±0.13 | 27.80 ±0.88 | 21.20 ±0.13 | 33.20 ±0.08 | 20.23±0.46 |
+| PECPM | 17.05 ±0.02 | 27.20 ±0.07 | 29.08 ±1.90 | 21.48 ±0.15 | 33.33 ±0.13 | 21.25 ±0.86 |
+| STRAP | 17.08 ±0.12 | 27.98 ±0.14 | 31.67 ±2.88 | 26.34 ±0.79 | 39.39 ±1.06 | 21.34 ±0.45 |
+| EAC | 16.13±0.05 | 25.57±0.06 | 24.02±1.23 | 20.94±0.79 | 32.15±1.00 | 21.37 ±0.53 |
+| STBP | 13.58±0.05 | 22.24±0.13 | 17.89±0.29 | 17.11±0.03 | 27.48±0.16 | 17.60±0.30 |
+
+**Results of conventional methods.** As shown in Table 1, STGNNs trained from scratch achieve only poor performance on all datasets. Although these methods work well under static assumptions, they fail to exploit past spatio-temporal knowledge, resulting in unsatisfactory performance. In contrast, iTransformer performs better by leveraging historical spatio-temporal information through online training, but it still suffers from catastrophic forgetting and is therefore not an ideal solution.
+
+**Results of CSTF methods.** The best-performing models are those that explicitly mitigate catastrophic forgetting, including CSTF methods such as PECPM, STRAP, and EAC. Compared with full-parameter fine-tuning strategies (e.g., PECPM, STKEC, TrafficStream), lightweight prompt-based adaptation on a frozen backbone (e.g., EAC, STRAP, STBP) yields higher average accuracy, highlighting the benefits of dynamically tuning only a small set of parameters. Nevertheless, STRAP performs notably poorly on CA-Stream, indicating that retrieval-based pattern matching struggles
+
+{7}------------------------------------------------
+
+
+
+Figure 4 displays three bar charts showing the results of ablation experiments for PEMS-Stream, CA-Stream, and AIR-Stream datasets. The legend indicates six variants: Our (blue), Retrain (purple), Online (grey), w/o Backbone (orange), w/o DLGA (pink), and EAC (green). The metrics measured are MAE, RMSE, and MAPE. In all cases, the 'Our' variant achieves the lowest error across all metrics.
+
+| Dataset | Our | Retrain | Online | w/o Backbone | w/o DLGA | EAC |
+|-|-|-|-|-|-|-|
+| PEMS-Stream | ~15 | ~20 | ~22 | ~24 | ~25 | ~26 |
+| CA-Stream | ~18 | ~22 | ~24 | ~26 | ~28 | ~29 |
+| AIR-Stream | ~28 | ~32 | ~34 | ~36 | ~38 | ~40 |
+
+Figure 4: Results of ablation experiments. Three bar charts for PEMS-Stream, CA-Stream, and AIR-Stream showing MAE, RMSE, and MAPE for various ablation variants.
+
+Figure 4: Results of ablation experiments.
+
+
+
+Figure 5 displays three line charts showing the results of parameter experiments for PEMS-Stream, CA-Stream, and AIR-Stream datasets. The x-axis represents the number of Channels (64, 128, 192, 256). The y-axis represents the error metrics: MAE (blue line with circles) and RMSE (red dashed line with squares). In all cases, the error metrics generally decrease as the number of channels increases, with MAE showing a more significant drop than RMSE.
+
+| Dataset | 64 Channels | 128 Channels | 192 Channels | 256 Channels |
+|-|-|-|-|-|
+| PEMS-Stream | ~13.6 | ~12.8 | ~12.5 | ~12.4 |
+| CA-Stream | ~16.5 | ~16.0 | ~15.8 | ~15.5 |
+| AIR-Stream | ~24.5 | ~23.5 | ~23.8 | ~23.7 |
+
+Figure 5: Results of parameter experiments. Three line charts for PEMS-Stream, CA-Stream, and AIR-Stream showing MAE and RMSE across different channel counts.
+
+Figure 5: Results of parameter experiments.
+
+in extreme incremental scenarios with rapid, large-scale topology expansion. Overall, our proposed STBP outperforms all competing models. Compared with the best baseline, STBP reduces the average MAE by **21.44%**, **21.93%**, and **2.35%** on the PEMS-Stream, CA-Stream, and AIR-Stream datasets, respectively. This gain stems from the bridge it establishes between STGNNs and CSTF methods: the carefully designed general spatio-temporal backbone and contextual pattern bank jointly capture dynamic spatio-temporal correlations, thereby mitigating catastrophic forgetting and alleviating distributional drift.
+
+**Results of few-shot forecasting task.** To further evaluate the robustness of the proposed model under low-resource scenarios, we construct a few-shot training setting and compare it against existing baselines. Specifically, we simulate a few-shot setting in which the sample size of the first incremental period is kept unchanged, while the training set size for subsequent periods is reduced to only 10% of the original. The test set size remains fixed throughout. As shown in Table 2, STBP consistently outperforms all other methods, highlighting its strong ability to extract meaningful patterns from limited data. CSTF baselines are more resilient to low-resource conditions than conventional STGNNs (e.g., GWNet, STID). This demonstrates that when data is extremely scarce, conventional models struggle to capture stable spatio-temporal patterns, whereas CSTF methods can leverage knowledge accumulated from historical stages to adapt more quickly to new nodes. The continual learning mechanism effectively mitigates catastrophic forgetting, allowing the model to continuously utilize previously learned general features during incremental learning.
+
+### 5.3 ABLATION STUDY & PARAMETER SENSITIVITY ANALYSIS
+
+**Ablation Study Settings.** To validate the core contributions of STBP, we design the following variants for ablation experiments: ❶ **Retrain**: The contextual pattern bank is removed. Similar to GWNet and STID, a new backbone is trained for each incremental period using the spatio-temporal graph data of that period, with the corresponding model predicting the results for the current test set. ❷ **Online**: The contextual pattern bank is removed. Similar to iTransformer, the model is trained on the complete node data of the current spatio-temporal graph and initialized with the model from the previous period, allowing for adjustments across the entire model. ❸ **w/o Backbone**: The contextual pattern bank is retained, but the spatio-temporal backbone is replaced with the ones used in TrafficStream, STKEC, and EAC—i.e., replacing FreNet and DLGA with CNN and GCN. ❹ **w/o DLGA**: The DLGA module in the spatio-temporal backbone is ablated. ❺ **EAC**: We also include EAC, which follows a similar approach, for comparison in the ablation study.
+
+**Ablation findings.** As shown in Figure 4, the ablation results demonstrate that parameter expansion in the contextual pattern bank, together with spatio-temporal pattern distinction and prompt guidance, is essential for alleviating catastrophic forgetting in continual learning. The performance of the **Retrain** and **Online** variants supports this conclusion. Notably, even without the contextual pattern
+
+{8}------------------------------------------------
+
+
+
+Figure 6: Case study on PEMS-Stream. The figure shows the evolution of a pattern bank over time. The top row displays 2D scatter plots of nodes in a 'Initial Pattern Bank', 'Pattern Bank (2011)' with 655 nodes, and 'Pattern Bank (2017)' with 871 nodes, showing increasing clustering. The bottom row shows 'Flow' vs 'Time Step' for various nodes. The first column shows 'Random nodes' from 2011. The second column shows 'Cluster 1' and 'Cluster 2' from 2011. The third column shows 'Cluster 1' and 'Cluster 2' from 2017, with arrows indicating the 'extend' process from 2011 to 2017.
+
+Figure 6: Case study on PEMS-Stream.
+
+
+
+Figure 7: Visualization of real forecasting results. Three line plots show 'Traffic Flow' vs 'Time Step' for PEMS-Stream Node 2, CA-Stream Node 1150, and AIR-Stream Node 900. Each plot compares 'Label' (blue), 'EAC' (yellow), and 'STBP' (red) models. STBP consistently shows lower Mean Absolute Error (MAE) than EAC across all three nodes.
+
+Figure 7: Visualization of real forecasting results.
+
+bank on traffic datasets, the spatio-temporal backbone alone attains performance comparable to **EAC** under online training, highlighting the critical role of real-time dynamic correlation modeling and temporal distribution-drift mitigation in adapting to new incremental tasks. The performance drop observed in the **w/o Backbone** variant further confirms the indispensability of the general backbone and highlights the portability and adaptability of the pattern bank across different backbone architectures. Moreover, removing the **DLGA** module leads to significant performance degradation, validating its role in capturing dynamic spatial correlations and integrating prompt-based knowledge. The **FreNet** module also makes a notable contribution by improving computational efficiency and enhancing the extraction of stable temporal components.
+
+**Parameter Sensitivity Analysis.** Additionally, we perform a sensitivity analysis on the adjustable hyperparameter $d$ in **STBP**. In **STBP**, $d$ represents the feature dimension for each module’s feature mapping, as well as the feature dimension of parameters in the contextual pattern bank. The analysis results are shown in Figure 5. Increasing $d$ enhances the model’s overall parameter count and improves its expressive power. However, the performance gains from increasing $d$ do not grow indefinitely; after reaching a certain threshold, the performance gain stabilizes. Further increases in $d$ not only fail to improve performance but may also lead to negative effects, causing parameter redundancy. More parameter sensitivity analysis can be found in Appendix A.4.5.
+
+### 5.4 CASE STUDY
+
+To illustrate the distinction and expandability of the contextual pattern bank in **STBP**, we apply t-SNE to reduce the dimensionality of $\mathbf{P}_\tau \in \mathbb{R}^{N_\tau \times d}$ on the PEMS-Stream dataset. As shown in Figure 6, each point represents a graph node. Initially untrained, the pattern bank shows a chaotic distribution. After incremental training, clear clusters emerge. Nodes within the same cluster exhibit similar periodic and trend patterns in their traffic data, while those in different clusters (e.g., Clusters 1–3) show distinct behaviors. New nodes from later stages (e.g., Nodes 693, 809, 834 in 2017) are
+
+{9}------------------------------------------------
+
+
+
+Figure 8: Efficiency comparison. The figure contains three plots. The first two are scatter plots for PEMS-Stream and CA-Stream, showing MAE (y-axis) vs. Average Training Time (s/period) (x-axis). The third is a bar chart for the Toy dataset, showing GPU Memory (GB) (y-axis) vs. Number of Nodes (x-axis) for different model configurations: STBP Q(N), STBP Q(N^2), and Retrain. A legend at the top identifies the models: GWNet, STD, iTransformer, TrafficStream, STKEC, EAC, PECPM, STRAP, and STBP.
+
+Figure 8: Efficiency comparison. $\text{STBP } O(N^2)$ denotes the version without linear attention, and Retrain refers to removing the contextual pattern bank.
+
+correctly grouped into existing clusters, demonstrating that the pattern bank effectively distinguishes and generalizes spatio-temporal patterns through parameter fine-tuning, enabling continual adaptation.
+
+In addition, we conduct an intuitive comparison of the forecasting performance between $\text{STBP}$ and $\text{EAC}$ in real-world application scenarios. As shown in Figure 7, we select representative nodes from three datasets for visualization. Compared to $\text{EAC}$ , $\text{STBP}$ more accurately captures dynamic trends, and its predictions demonstrate higher practical relevance in real-world continual learning environments. Additional case studies on other datasets can be found in Appendix A.4.6.
+
+### 5.5 EFFICIENCY STUDY
+
+An effective CSTF method must balance scalability, computational cost, and performance. We evaluate the efficiency of $\text{STBP}$ against baselines under the same settings. As shown in Figure 8, the average computational cost per period on PEMS-Stream and AIR-Stream is reported, with scatter size indicating GPU memory usage. We further analyze the impact of linear attention, full attention, and removal of the contextual pattern bank using a toy dataset. Results indicate that non-continual methods—such as $\text{GWNet}$ , $\text{STD}$ , and $\text{iTransformer}$ —require global parameter adjustments at each phase, impairing efficiency. $\text{iTransformer}$ , in particular, incurs high memory overhead due to quadratic attention complexity. Even lightweight non-continual models exhibit limited efficiency in incremental training.
+
+In contrast, CSTF methods such as $\text{EAC}$ , $\text{TrafficStream}$ , and $\text{STKEC}$ achieve higher efficiency through lightweight backbones and localized parameter tuning. While $\text{PECPM}$ and $\text{STRAP}$ maintain low memory usage, their training speeds remain modest. Despite its more complex backbone, $\text{STBP}$ incurs only minimal overhead compared to models like $\text{EAC}$ , thanks to optimizations including frequency-domain processing and linear attention. This enables $\text{STBP}$ to deliver substantial performance gains with negligible cost increase. Results on the toy dataset confirm that linear attention reduces computational load effectively. As node count grows, the contextual pattern bank introduces only linear additional cost through its lightweight interaction with the backbone, avoiding exponential overhead. Furthermore, on CA-Stream, $\text{STBP}$ maintains state-of-the-art performance even under drastic graph expansion, demonstrating strong scalability.
+
+## 6 CONCLUSION
+
+In this work, we propose $\text{STBP}$ , a novel framework for continual spatio-temporal forecasting. By combining a general-purpose backbone with a scalable contextual pattern bank, $\text{STBP}$ efficiently mitigates catastrophic forgetting while capturing dynamic spatio-temporal correlations. It adapts to evolving urban data without retraining from scratch, making it suitable for real-time applications. Validated on multiple datasets, $\text{STBP}$ demonstrates strong continual learning capabilities. Nevertheless, $\text{STBP}$ currently supports continual learning in a single-task setting. In the future, we plan to extend its application to cross-domain continual spatio-temporal forecasting, which will be a crucial step towards developing a foundational spatio-temporal model.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/M14YpuTejd.txt b/papers/M14YpuTejd.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4b59a2adbeb1f09daffff0843fcea0423516038c
--- /dev/null
+++ b/papers/M14YpuTejd.txt
@@ -0,0 +1,443 @@
+
+
+{0}------------------------------------------------
+
+# UNDERSTANDING THE TASK AND DATA MISCONCEPTIONS IN ONLINE MAP BASED MOTION PREDICTION FOR AUTONOMOUS DRIVING AND A BOUNDARY-FREE BASELINE
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+In autonomous driving (AD), online high-definition (HD) map estimation is gaining increasing attention. To examine how online-estimated HD maps impact downstream tasks, the protocol of online mapping based motion prediction emerges. This protocol follows a two-stage training paradigm: online mapping models are firstly trained and then used to output map elements which are fed as inputs for motion prediction models. In this paper, we conduct in-depth study to investigate the challenges and misunderstandings associated with the protocol and propose **OMMP-Bench**, a well-defined and insightful benchmark of online map based motion prediction. We identify that the current dataset splits are unsuitable for two-stage training, leading to a severe train-validation gap, and thus we design a new data partitioning split. Furthermore, we find that the perception range of map prediction models does not fully meet the requirements of motion prediction, resulting in a lack of map elements for agents far from the ego vehicle. This issue is obscured by incorrect metrics that evaluate only the ego vehicle’s trajectory. We address it by refining the metrics to evaluate all moving vehicles and separately report performance for agents under different distance ranges. Further, to alleviate the issue of missing map elements for faraway agents, we introduce a new baseline that directly uses image features generated by the online mapping model. These features are not constrained by perception range and could supplement environmental information around agents beyond the online map’s coverage. We further explore how different map elements influence motion prediction, as existing online mapping models have different designs of output format. We conduct thorough experiments to verify the proposed corrections and will open source the related code and checkpoints. We hope OMMP-Bench could solve the long-standing mis-usage and misunderstanding of the emerging field and provide insights for further co-development of online mapping and motion prediction models.
+
+## 1 INTRODUCTION
+
+Motion prediction plays a critical role in an autonomous driving system, which forecasts the future movements of surrounding agents based on their past trajectories as well as map elements. Traditional motion prediction methods Zhou et al. (2022); Shi et al. (2022); Gu et al. (2021), as in Fig. 2 (a), assume the availability of high-definition (HD) maps with rich static environmental information, such as lane markings, centerlines, and crosswalks. Such information aids in predicting agent movement Gao et al. (2020b).
+
+However, HD map creation is expensive due to the need for extensive data collection and manual annotation, with updates required every 2-3 months Li et al. (2022). This limits the use of methods that rely on HD maps. To mitigate this, online mapping models Liao et al. (2023a); Li et al. (2024); Yuan et al. (2024) have gained significant attention in recent days. These models utilize raw sensor data (e.g. from cameras and LiDAR) to generate HD maps of the vehicle’s surroundings in real time, providing essential information for motion prediction (and other downstream tasks). Online
+
+{1}------------------------------------------------
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+068
+069
+070
+071
+072
+073
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+098
+099
+100
+101
+102
+103
+104
+105
+106
+107
+
+
+
+```
+
+graph TD
+ Top[Online Mapping Based Motion Prediction] --> Data[Data]
+ Top --> Task[Task Misconceptions]
+ Data --> Gap[Train-val Gap]
+ Task --> Misaligned[Misaligned Range]
+ Task --> Metrics[Non-discriminative Metrics]
+ Gap --> NewPartition[New Partition]
+ Misaligned --> OMMPBench[OMMP-Bench]
+ Metrics --> OMMPBench
+ OMMPBench --> Baseline[Boundary-Free Baseline]
+ OMMPBench --> ClassifiedMetrics[Classified Metrics]
+ NewPartition --> Analysis[Analysis on map element selection]
+ Baseline --> Analysis
+ ClassifiedMetrics --> Analysis
+
+```
+
+Figure 1: Overview of Our Study. The diagram shows a flow from 'Online Mapping Based Motion Prediction' at the top, branching into 'Data' and 'Task Misconceptions'. 'Data' leads to 'Train-val Gap', which leads to 'New Partition'. 'Task Misconceptions' leads to 'Misaligned Range' and 'Non-discriminative Metrics', which both lead to 'OMMP-Bench'. 'OMMP-Bench' leads to 'Boundary-Free Baseline' and 'Classified Metrics'. A bracket at the bottom labeled 'Analysis on map element selection' spans across 'New Partition', 'Boundary-Free Baseline', and 'Classified Metrics'.
+
+Figure 1: Overview of Our Study.
+
+maps reduce the reliance on high-definition map annotations. However, the errors may impact the performance of downstream tasks such as motion prediction.
+
+To analyze the impact of using online maps on motion prediction and promote the co-development of the two fields, the online map based motion prediction protocol emerges in 2024 Gu et al. (2024a) (CVPR 2024 Best Paper Final List), as shown in Fig. 2 (c), which attracts keen attention from the research community. It is formulated by using online maps (including features generated by online mapping models) and agents’ ground truth history trajectories as inputs to the motion prediction model. Pioneering works Gu et al. (2024a;b) all adopt a two-stage paradigm. At the first stage, sensor data is used to train an online mapping model Liao et al. (2023a); Li et al. (2024); Yuan et al. (2024). Then, in the second stage, the online mapping model generates inference results for the map. This predicted map, along with historical trajectory data, is then used to train a motion prediction model. As a brand new paradigm, it is at an early stage. In this paper, **we delve deep into it and identify the following misunderstandings and challenges:**
+
+**Inappropriate Dataset Splits.** The official splits of typical autonomous driving datasets such as nuScenes Caesar et al. (2019) are composed of training, validation, and test sets, a standard way for regular machine learning problems. However, under the two-stage training online map based motion prediction, there are two issues: (1) The online mapping model is trained on the training set first. Then, to set up the training data for the motion prediction model, the online mapping model would infer on the training set under existing protocol Gu et al. (2024a). **The predicted map would be very accurate since the online mapping model is trained on this set.** However, this is not the case during validation where the motion prediction model would take the online mapping model’s prediction on the validation set as inputs. At the validation set, the online mapping model has much lower accuracy and thus introduces a huge **train-val gap for the downstream motion prediction model.** (2) Additionally, as pointed out in Yuan et al. (2024), there are **spatial overlaps among the training and validation set** of nuScenes. As a result, the official train-val split could not fully reflect the generalization ability of the online mapping models. To alleviate these two issues, we design a new partition for OMMP-Bench by cutting nuScenes into three parts without any geometry overlap: a map training set, a motion training set, and a motion validation set. The online mapping model is trained on the map training set and generates online maps on the motion training set and motion validation set.
+
+**Different Considered Range for Online Mapping and Motion Prediction.** Popular online mapping models, such as MapTR/MapTRv2 Liao et al. (2023a;b) used in the protocol of Gu et al. (2024a), have rather small pre-defined range (for example, $\pm 15 \times \pm 30$ meters) due to the difficulty of prediction for distant map elements. However, for the motion prediction part, the nearest agent could be more than 100 meters away from the ego vehicle. As a result, **there are a bunch of agents that do not have map elements nearby,** which could significantly degenerate the accuracy of prediction Gao et al. (2020b). The pioneering protocol Gu et al. (2024a;b) sidesteps this issue by only calculating the motion prediction accuracy of the ego vehicle during evaluation. However, motion prediction is mainly designed to avoid potential collision with other agents, which the existing protocol fails to evaluate at all. To this end, in OMMP-Bench, we propose to only evaluate non-ego agents. Further, to compensate for those agents without any context, we propose a simple yet effective baseline that leverages the image feature around those agents as environmental information to address the out-of-map issue.
+
+{2}------------------------------------------------
+
+
+
+(a) Offline Map Based Motion Prediction
+
+(b) Visual Motion Prediction
+
+(c) Online Map Based Motion Prediction
+
+Figure 2: Paradigm Comparison for Different Settings to Study Motion Prediction. The figure shows three sub-diagrams: (a) Offline Map Based Motion Prediction, (b) Visual Motion Prediction, and (c) Online Map Based Motion Prediction. Each diagram illustrates the flow from input data to a Motion Prediction Model, which outputs a Future Trajectory. (a) uses GT Agent History and Offline HD map. (b) uses Sensor Data to produce Detected Agents and Online HD Maps. (c) uses Sensor Data to produce Online HD Maps, which are then used to generate GT Agent History.
+
+Figure 2: Paradigm Comparison for Different Settings to Study Motion Prediction.
+
+**Non-discriminative Metrics.** For the motion prediction protocol Gu et al. (2024a) in nuScenes, we observe that there are lots of static agents and all motion models could perfectly predict static trajectories for these agents. As a result, the large number of easy cases would cause the metrics less distinguishable, and thus we propose to only evaluate non-static agents, similar to the design of Argoverse Lambert & Hays (2021); Wilson et al. (2021) and Waymo Ettinger et al. (2021). Further, since agents within and outside the perception range of online mapping models have rather different inputs, we separately report the motion prediction metrics of agents nearby or far away from the ego vehicle to evaluate motion prediction models’ accuracy under different conditions.
+
+**Formulation of Online Map.** As the output formulations of online mapping Liao et al. (2023a;b); Li et al. (2023) are still open problems, we investigate the influence of different existing formulations for motion prediction models on OMMP-Bench to provide insights for new designs in the online mapping community.
+
+Notably, there is another line of study taking a step further where the agent and map inputs for motion prediction are both inference results of upstream modules, like ViP3D Gu et al. (2023) and PIP Jiang et al. (2022), as shown in Fig. 2 (b). This line of research contributes important insights regarding the recent emergence of end-to-end autonomous driving. However, the study of online mapping’s influence on motion prediction perspective introduces additional complexity by coupling motion prediction performance with that of object detection and tracking. For example, if a vehicle is not detected, its trajectory cannot even be predicted. To avoid misconception and offer clear insights, in this work, we focus on the online map based motion prediction setting.
+
+Our contributions are summarized below:
+
+- We discover the misconceptions of data and tasks in online mapping based motion prediction, including inappropriate dataset splits, different considered ranges, and non-discriminative metrics.
+- We propose a well-defined benchmark OMMP-Bench with a new partition and separate evaluation within and outside situations to avoid misleading conclusions.
+- We introduce a boundary-free baseline that utilizes image features to mitigate the unaligned range issue between the online mapping and motion prediction model.
+- We evaluate existing methods on OMMP-Bench and analyze the effect of map element selection on motion prediction models.
+
+## 2 RELATED WORK
+
+**Online Map Estimation.** Online HD map estimation methods generate HD maps from sensor data such as cameras and LiDAR. Early models Zhou & Krähenbühl (2022) approached online
+
+{3}------------------------------------------------
+
+map estimation as a BEV segmentation. These models first generated BEV features from sensor data using 2D-BEV transformations, then predicted the semantic category of each BEV grid cell, producing a gridded HD map. However, gridded maps lack continuity and instance information. Consequently, recent online map prediction models tend to generate vectorized maps. HDMapNet Li et al. (2022) extracts vectorized maps from gridded maps using complex post-processing, while VectorMapNet Liu et al. (2023) is the first model to directly generate vectorized maps in an end-to-end manner. MapTR Liao et al. (2023a;b) introduces a unified permutation-equivalent modeling method to accurately represent point groups, and StreamMapNet Yuan et al. (2024) leverages temporal information for map prediction. LanSegNet Li et al. (2024) introduces the concept of lane segments, combining map element detection with centerline perception.
+
+**Motion Prediction.** Pioneering deep learning based motion prediction methods opt to use rasterized images to represent the scene Tang & Salakhutdinov (2019); Lee et al. (2017); Zhao et al. (2019); Chai et al. (2020); Cui et al. (2019); Hong et al. (2019). These approaches project map elements onto a top-down image based on 2D coordinates, with different elements painted on separate channels, allowing convolutional neural networks (CNNs) to extract map information. Later, vector-based approaches for map encoding have shown superior performance in multiple challenges. These methods typically employ 1D CNNs or LSTMs Hochreiter & Schmidhuber (1997) for temporal data. PointNet Qi et al. (2017) to process polylines, and GNNs to handle interactions between agents and map elements. VectorNet Gao et al. (2020a) uses sub-graphs for lane and agent encoding, followed by a global fully-connected graph to capture relationships. SceneTransformer Ngiam et al. (2021) introduces a factorized spatio-temporal network, applying Transformers to a fully-connected spatial/temporal graph alternately. LaneGCN Liang et al. (2020) employs four modules for aggregating scene information, while TPCN Ye et al. (2021) treats coordinate data as point clouds. Recently, HiVT and MTR Shi et al. (2022) adopt pure Transformer architecture. Their following works QCNet Zhou et al. (2023) and MTR++ Shi et al. (2023) introduce ego-centric representation Jia et al. (2022) to enhance performance.
+
+**Online Map Based Motion Prediction.** To study the influence of online mapping on motion prediction, pioneering work MapUncertaintyPrediction Gu et al. (2024a) sets up the first protocol in the field and conveys potential error information by predicting the uncertainty of each point in the predicted vectorized map. Following work MapBEVPrediction Gu et al. (2024b) incorporates BEV features from the online map prediction model into the motion prediction model, eliminating the need for the decoder in the map model and the encoder for maps in the motion prediction model during inference. However, as mentioned above, the newly proposed protocol has several issues and we aim to overcome them and provide a clearer protocol and benchmark for the field. There are more advanced end-to-end models like ViP3D Gu et al. (2023), PIP Jiang et al. (2022), UniAD Hu et al. (2023), and VAD Jiang et al. (2023), which further make the agent input of motion prediction be the results of an upstream module as well. However, it makes the motion prediction performance deeply entangled with object detection accuracy so it is difficult to analyze the actual influence caused by the errors of online mapping.
+
+## 3 ONLINE MAPPING BASED MOTION PREDICTION
+
+### 3.1 PRELIMINARY
+
+To study the influence of online mapping on motion prediction, following the pioneering protocol Gu et al. (2024a;b), there are two stages. At the first stage, sensor data is used to train an online mapping model Liao et al. (2023a); Li et al. (2024); Yuan et al. (2024). Then, in the second stage, the online mapping model generates inference results. This predicted map, along with historical trajectory data, is then used to train a motion prediction model. **By studying the performance of the final motion prediction model, it could provide insights on (1) the designs of online mapping models to better fit the requirements of motion prediction and (2) the designs of motion prediction to be more robust to imperfect online maps.** Note that all existing online mapping based motion prediction models are conducted only on nuScenes (Caesar et al., 2019) dataset because it provides raw camera data, HD maps, and trajectories of agents in the same scenario while others such as Waymo motion (Ettinger et al., 2021) or Argoverse2 motion (Wilson et al., 2021) do not. In the following sections, we delve into the details of the existing protocol of online map based motion prediction and discuss its misconceptions and our corresponding solutions in our proposed OMMP-Bench.
+
+{4}------------------------------------------------
+
+
+
+Figure 3: Comparison of Default (Upper) and Proposed (Lower) Protocol. The diagram illustrates two protocols for online mapping-based motion prediction. The 'Default (Upper)' protocol uses a single 'Train Set' to train a 'Map Model' and a 'Val Set' to train a 'Trained Map Model'. The 'Map Model' is used to generate maps for the 'Motion Model', which is then trained on the 'Train Set'. The 'Motion Model' is evaluated on the 'Val Set', showing a significant drop in accuracy (mAP: 87.6 to 50.3) due to a 'Train-val Gap!'. The 'Proposed (Lower)' protocol uses separate 'Map Train Set', 'Motion Train Set', and 'Motion Val Set'. The 'Map Train Set' is used to train a 'Map Model', which generates maps for the 'Motion Train Set'. The 'Motion Train Set' is used to train a 'Motion Model', which is evaluated on the 'Motion Val Set', showing 'Similar Accuracy' (mAP: 48.9 to 50.3). A legend indicates: solid arrow for 'Train step', dashed arrow for 'Inference Step', and double-headed arrow for 'Calculate Loss'.
+
+Figure 3: Comparison of Default (Upper) and Proposed (Lower) Protocol. Four standard steps of online mapping based motion prediction: ① training the map model; ② using the trained map model to generate maps to train the motion model; ③ training the motion model; ④ conduct inference with the trained map and motion model. Under the default setting in Gu et al. (2024a) (Upper), it would introduce train-val gaps for the motion model due to the huge difference in map accuracy. Under the proposed setting (Lower), the motion model could use maps of similar accuracy during both training and evaluation.
+
+Table 1: Comparison of Different Splits with MapTRv2-CL and HiVT. The metrics are calculated on all moving non-ego vehicles.
+
+| Split Setting | Train Map Model | Train Motion Model | Evaluation | minADE L | minFDE L | MR L |
+|-|-|-|-|-|-|-|
+| 1 (Ours) 2 | Map Train | Motion Train | Motion Val | 0.6308 | 1.2487 | 0.1558 |
+| | Map Train + Motion Train | Map Train + Motion Train | Motion Val | 0.7006 | 1.3501 | 0.1817 |
+| 3 (Default) Gu et al. (2024a) 4 | nuScenes Train | nuScenes Train | nuScenes Val | 0.6839 | 1.3362 | 0.1732 |
+| | nuScenes Train (Sub 50%) | nuScenes Train (Another Sub 50%) | nuScenes Val | 0.6373 | 1.2261 | 0.1580 |
+
+### 3.2 INAPPROPRIATE DATA SPLITS
+
+In classic machine learning problems, one commonly used data partition strategy is training, validation, and test set, which is widely adopted by existing autonomous driving datasets Caesar et al. (2019); Wilson et al. (2021); Ettinger et al. (2021). However, for the task of online map based motion prediction, we find that the default split adopted in Gu et al. (2024a) is unsuitable under the two-stage training pipeline. Specifically, under the official training and validation split of nuScenesCaesar et al. (2019), the protocol would be (1) Training the online mapping model on the sensor data of the training set; (2) Using the online mapping model to inference on the training set to generate online maps; (3) Training the motion prediction model with the online maps on the training set; (4) Evaluate the motion prediction performance on the validation set with online mapping model inference on validation set first, as shown in Fig. 3 (Upper). As a result, in the training data of motion prediction, the online maps are highly accurate since the online mapping model is inference on its training set. However, during evaluation, the online mapping model encounters data it has not seen before, resulting in a significant drop in map accuracy and a shift in the distribution. **This distribution shift greatly degenerates the performance of the motion prediction model.**
+
+Another issue of nuScenes data split has been pointed out in recent online mapping work Yuan et al. (2024). Since map elements are rather static, online mapping models could perform well on the locations covered by the training set, even with different sensor data. Unfortunately, **there exist large spatial overlaps between the training and validation set** Yuan et al. (2024) of nuScenes, as their data partition strategy divides data based on different driving logs, shown in Fig. 4 (Upper). As a result, the default split would overestimate the generalization ability of online mapping models.
+
+To address the aforementioned issue, **we manually check the whole dataset and split it into three spatially disjoint sets for OMPBench**: map train set, motion train set, and motion val set, as shown in Fig. 4 (Lower). Under this setting, the online map based motion prediction protocol is executed as: (1) training the online mapping model on the map train set; (2) using the trained map model to generate maps on the motion train set; (3) training the motion prediction model on the motion train set; (4) evaluate the motion prediction on the motion val set with online mapping model inference on the motion val set first, as shown in Fig. 3 (Upper). In this way, we make sure **the online mapping model has never encountered data from the two motion related subsets** and thus the accuracy of online maps is similar. As a result, the motion prediction model adapts to the less precise
+
+{5}------------------------------------------------
+
+
+
+Figure 4: Comparison of Default and Proposed Data Splits. The figure shows two rows of four maps for Singapore Onenorth, Singapore Holland Village, Singapore Queenstown, and Boston Seaport. The top row, 'Original Split', shows training (green), validation (blue), and overlap (red) data. The bottom row, 'Our Split', shows map training (green), motion training (blue), motion validation (orange), and overlap (red) data. The proposed split significantly reduces overlap between training and validation sets.
+
+Figure 4: **Comparison of Default and Proposed Data Splits.** In default split Gu et al. (2024a), 87% of the validation data has overlap with training set. In the proposed split, only 5% of the motion train data has overlap with map train data.
+
+Table 2: **Online Mapping Performance (mAP) under Different Perception Range.**
+
+| Map model | 30x60m | 100x100m |
+|-|-|-|
+| MapTR | 0.124 | 0.014 |
+| MapTRv2-CL | 0.164 | 0.002 |
+
+Table 3: **Motion Prediction Performance of HiVT under GT Maps with Different Range.**
+
+| Range | minADE↓ | minFDE↓ | MR↓ |
+|-|-|-|-|
+| 30x60m | 0.6154 | 1.2382 | 0.1448 |
+| 100x100m | 0.6003 | 1.2243 | 0.1432 |
+
+maps, eliminating the train-validation gap. As shown in Table 1, the split of OMMP-Bench leads to an explicit performance enhancement compared to the default split, demonstrating the importance of reducing the train-val gap.
+
+### 3.3 DIFFERENT CONSIDERED RANGE FOR ONLINE MAPPING AND MOTION PREDICTION
+
+Autonomous driving, as an outdoor task, naturally requires defining a range of considerations to avoid unbound and unnecessary computation. Currently, most **online mapping models** Liao et al. (2023a;b); Li et al. (2023) set a **rather limited perception range**, due to the inherent difficulty of detecting a line in long distance with cameras. For example, MapTR only covers a $30 \times 60\text{m}$ area ( $\pm 15 \times \pm 30\text{m}$ ). As shown in Table 2, when extending the online mapping model to a longer range, the perception performance would drastically degenerate.
+
+On the other hand, motion prediction tasks usually consider agents as far as more than 100 meters away from the ego vehicle in nuScenes. As a result, **a large portion of the predicted agents does not have map elements around them**, which means no surrounding information and causes degenerated performance. In Table 3 and Fig. 6, we could conclude that the absence of map elements can impact motion prediction for other vehicles, and simply expanding the perception range of the map prediction model leads to decreased map accuracy, ultimately failing to improve motion prediction performance. This indicates that current online map prediction models cannot fully meet the perception range requirements of downstream motion prediction tasks.
+
+To enable those distant agents to obtain environment information, we propose a new baseline in OMMP-Bench to allow all agents to extract features from their corresponding nearby regions of raw image features. In this way, image features have the benefit that it does not have out-of-scope issues unlike BEV features Gu et al. (2024b). As shown in Fig. 7, We implement the integration
+
+
+
+Figure 5: Different Perception Range. The figure shows a top-down view of a road intersection with pedestrian crossing, centerline, boundary, and divider. It illustrates two perception ranges: a smaller 30x60m area (dashed red box) and a larger 100x100m area (dashed blue box). Past trajectories are shown in red, and future trajectories are shown in blue.
+
+Figure 5: **Different Perception Range.**
+
+{6}------------------------------------------------
+
+324
+325
+326
+327
+328
+329
+330
+331
+332
+333
+334
+335
+336
+337
+
+
+
+Figure 6: Visualization of Performance under Different Perception Range. The figure shows four top-down plots of agent trajectories at an intersection. The top-left plot is labeled 'HiVT + MapTR (50x30m)' and shows many trajectories ending abruptly. The top-right plot is labeled 'HiVT + GT map (50x30m)' and shows more complete trajectories. The bottom-left plot is labeled 'HiVT + MapTR (100x100m)' and shows improved performance. The bottom-right plot is labeled 'HiVT + GT map (100x100m)' and shows the best performance with the most complete trajectories.
+
+338 **Figure 6: Visualization of Performance under Different Perception Range.** Using long-range GT
+339 map could give explicit guidance for the far away agents while using long-range online map is not
+340 helpful.
+
+341
+342
+343
+344
+345
+346
+347
+348
+349
+
+
+
+Figure 7: Proposed Baselines to Alleviate Out-of-Scope Issue. The diagram shows a flow from 'Sensor Data' (a road image) through a 'Map Estimation Model' (containing CNN, Image Feature, 2D-BEV, BEV Feature, and Decoder) to produce an 'Online Map'. This map and 'Agent History' (a sequence of positions) are fed into a 'Motion Model' which outputs a 'Future Trajectory'. To the right, two road images show agents (red cars) with trajectories extending beyond the map boundaries, illustrating the out-of-scope issue.
+
+350 **Figure 7: Proposed Baselines to Alleviate Out-of-Scope Issue (Left), Illustration of Out-of-Scope**
+351 **Agents. (Right)** Applying Deformable Attention for all agents to retrieve image features enables
+352 each agent to have its own environment information.
+
+353
+354
+355
+356
+357
+
+of agent and image features using Deformable Attention. We denote the image features extracted
+354 from a backbone $\{I_1, I_2, \dots, I_{N_c}\} \in \mathbb{R}^{H \times W}$ , where $(H, W)$ is the size of image features and $N_c$ is
+355 the number of multi-view images. Using the intrinsic and extrinsic parameters and agent positions,
+356 we project each agent onto an image feature. For the $i$ -th agent projected onto image feature $T(i)$ at
+357 location $\mathbb{R}^2$ , its feature is denoted by $A_i \in \mathbb{R}^D$ .
+
+358
+
+The aggregated features are then computed as follows:
+
+359
+
+$$\hat{A}_i = \text{DeformAtt}(A_i, p_i, I_{T(i)}) \quad (1)$$
+
+360
+
+361
+
+As shown in Table 4, this straightforward yet effective baseline
+362 addresses the issue of agents extending beyond the map’s perceptual
+363 boundaries and achieves SOTA performance.
+364
+
+365
+
+### 3.4 NON-DISCRIMINATIVE METRICS
+
+366
+
+367
+
+The major purpose of motion prediction is to provide the intentions
+368 of surrounding agents so that the planning module can avoid collision.
+369 However, under existing protocol, only ego vehicle’s motion
+370 prediction performance is reported during evaluation, which is
+371 against the purpose of motion prediction. Thus, in OMMP-Bench
+372 we propose to predict other agents’ future trajectories.
+
+373
+
+374
+
+375
+
+376
+
+377
+
+Further, we observe that nuScenes contains a substantial number of
+374 stationary or slow-moving vehicles, whose motion is relatively easy
+375 for models to predict while fast-moving agents are generally more
+376 challenging to predict. Therefore, we focused our evaluation on
+377 moving vehicles, similar to popular motion prediction benchmarks
+like Argoverse Wilson et al. (2021) and Waymo Ettinger et al. (2021).
+
+
+
+Figure 8: Comparison of Evaluation Agent Selection Strategy. The figure shows two top-down plots of agent trajectories at an intersection. In the left plot (Existing protocol), only the ego vehicle (red) is highlighted. In the right plot (Proposed protocol), multiple moving agents (red) are highlighted, while stationary or slow-moving agents (grey) are not.
+
+**Figure 8: Comparison of Evaluation Agent Selection Strategy.** Red vehicles represent the selected agents to report motion prediction performance about. (Left) Existing protocol Gu et al. (2024a;b) only reports results on the ego vehicle. (Right) The proposed protocol evaluates the motion prediction performance of ego vehicle and other moving agents.
+
+{7}------------------------------------------------
+
+Table 4: **Comparison of Online Map Based Motion Prediction.**
+
+| Base model | Method | minADE↓ | minFDE↓ | MR↓ |
+|-|-|-|-|-|
+| HiVT+MapTR | base | 0.6375 | 1.2592 | 0.1585 |
+| HiVT+MapTR | unc Gu et al. (2024a) | 0.6272 | 1.2487 | 0.1578 |
+| HiVT+MapTR | bey Gu et al. (2024b) | 0.6287 | 1.2364 | 0.1566 |
+| HiVT+MapTR | ing(ours) | 0.6163 | 1.2344 | 0.1519 |
+
+Table 5: **Performance of HiVT under Different Online Map Element Types.**
+
+| Divider | Boundary | Ped. crossing | Centerline | minADE |
+|-|-|-|-|-|
+| ✓ | ✗ | ✗ | ✗ | 0.8770 |
+| ✗ | ✓ | ✗ | ✗ | 0.6829 |
+| ✗ | ✓ | ✗ | ✗ | 0.6558 |
+| ✗ | ✓ | ✓ | ✗ | 0.6500 |
+| ✗ | ✓ | ✗ | ✓ | 0.6631 |
+| ✗ | ✓ | ✓ | ✓ | 0.6308 |
+
+Table 6: **Motion Prediction Performance (minADE ↓) of Different Groups of Agents.**
+
+| Models | Ego | All | Moving | Static | Moving Non-Ego Close | Moving Non-Ego Far |
+|-|-|-|-|-|-|-|
+| HiVT+MapTR | 0.4015 | 0.2224 | 0.6307 | 0.002 | 0.5585 | 0.6997 |
+| DenseTNT+MapTR | 1.2114 | 0.9732 | 2.3069 | 0.009 | 2.0214 | 2.4140 |
+
+We classify an agent as moving if it moves more than two meters within three seconds.
+
+As discussed in Sec 3.3, some agents might fall outside of the online mapping range. To measure and observe this influence, we further divide agents into two groups: Moving-Non-Ego-Close and Moving-Non-Ego-Far, where **"close" and "far" are decided by whether within the perception range of online mapping models.**
+
+In summary, Fig. 8 illustrates the proposed evaluation agent selection strategy while Table 6 compares the motion prediction results of different groups of agents. We could conclude that (1) The difficulty of prediction is: Moving > Ego > Static. Both models perform nearly perfectly in predicting static agents' future trajectories, demonstrating the importance of excluding those from metrics. (2) The faraway agents' have worse performance compared to nearby agents, which is natural considering the missing maps.
+
+### 3.5 FORMULATION OF ONLINE MAP
+
+HD Map, as an abstraction for road lines and traffic signs, could have rather different number of semantic types across different datasets Caesar et al. (2019); Wilson et al. (2021); Ettinger et al. (2021) and across different online mapping models Liao et al. (2023a,b); Li et al. (2024). For example, in nuScenes, the official semantic types include dividers, boundaries, and pedestrian crossings. In the extension of OpenLane series Chen et al. (2022); Wang et al. (2023); Li et al. (2024), centerlines, describing the virtual mid-points of lanes, and topology representing the connection relations of different map elements are introduced. In Table 5, we compare the influence of incorporating different types of online map elements for motion prediction. Not surprisingly, feeding all possible map element types into the motion prediction model leads to the best performance, as it has comprehensive information. Further, we could observe that centerlines are most helpful and centerlines only achieve the second best performance, which is natural since most people would like to drive following the center of the lane. Thus, **in OMMP-Bench we always feed all possible map elements into the motion prediction model for the best performance** while the existing framework Gu et al. (2024a) only feeds one type of map elements into the motion prediction model at each time. It could be either dividers, boundaries, or centerlines, depending on the availability of map elements in the scene.
+
+## 4 EXPERIMENTS
+
+### 4.1 BENCHMARK
+
+In summary, Compared with existing online map based motion prediction protocol, the proposed **OMMP-Bench** has the following improvements:
+
+- 1. New Split:** we construct a new split on nuScenes dataset with three sets named the map train set, motion train set, and motion val set, which contain 367, 397, and 86 scenes respectively. With the new protocol proposed for training and evaluating online mapping based motion prediction along with the dataset, the train-val gap is eliminated. The split is carefully checked to minimize the spatial overlaps between the map train set and others, which is able to better evaluate the generalization ability of online mapping models than the original split.
+- 2. More Moving Agents:** We predict other agents' future trajectories which are aligned with the purpose of motion prediction while the existing one only evaluates the ego vehicle. As the motion
+
+{8}------------------------------------------------
+
+Table 7: **Results of Existing Online Map Based Motion Prediction Methods on Proposed OMMP-Bench.**
+
+| Map Model | Motion Model | Method | Ego | | | Moving Non-Ego Close | | | Moving Non-Ego Far | | |
+|-|-|-|-|-|-|-|-|-|-|-|-|
+| | | | minADE L | minDE L | MR L | minADE L | minDE L | MR L | minADE L | minDE L | MR L |
+| MapTR | HiVT | base | 0.4015 | 0.8576 | 0.0937 | 0.5585 | 1.1476 | 0.1305 | 0.6997 | 1.3657 | 0.1854 |
+| MapTR | HiVT | unc | 0.3839 | 0.8236 | 0.0956 | 0.5560 | 1.1548 | 0.1352 | 0.6946 | 1.3383 | 0.1795 |
+| MapTR | HiVT | bew | 0.3812 | 0.8070 | 0.0943 | 0.5328 | 1.1184 | 0.1339 | 0.6738 | 1.3174 | 0.1772 |
+| MapTR | HiVT | img | 0.3792 | 0.8032 | 0.0930 | 0.5275 | 1.1028 | 0.1332 | 0.6318 | 1.2780 | 0.1538 |
+| MapTR | DenseTNT | base | 1.2114 | 2.3185 | 0.4183 | 2.0214 | 4.3053 | 0.4546 | 2.4140 | 5.0250 | 0.5055 |
+| MapTR | DenseTNT | unc | 1.0486 | 2.0875 | 0.3774 | 1.8123 | 4.0554 | 0.4279 | 2.3794 | 4.5621 | 0.4994 |
+| MapTR | DenseTNT | bew | 1.0856 | 2.0732 | 0.3781 | 1.8243 | 4.0384 | 0.4296 | 2.3771 | 4.6091 | 0.4991 |
+| MapTR | DenseTNT | img | 0.9921 | 1.8476 | 0.3393 | 1.6851 | 3.6264 | 0.3849 | 2.0702 | 4.1723 | 0.4382 |
+| MapTRv2-CL | HiVT | base | 0.3976 | 0.8571 | 0.1025 | 0.5585 | 1.1412 | 0.1301 | 0.6999 | 1.3512 | 0.1805 |
+| MapTRv2-CL | HiVT | unc | 0.3862 | 0.8185 | 0.0898 | 0.5682 | 1.1751 | 0.1356 | 0.7071 | 1.3785 | 0.1856 |
+| MapTRv2-CL | HiVT | bew | 0.3882 | 0.8170 | 0.0920 | 0.5632 | 1.1692 | 0.1336 | 0.7242 | 1.3944 | 0.1972 |
+| MapTRv2-CL | HiVT | img | 0.3773 | 0.7991 | 0.0869 | 0.5175 | 1.0742 | 0.1320 | 0.6274 | 1.2631 | 0.1501 |
+| MapTRv2-CL | DenseTNT | base | 1.1625 | 2.0731 | 0.3846 | 1.9528 | 4.1070 | 0.4284 | 2.2742 | 4.7492 | 0.4729 |
+| MapTRv2-CL | DenseTNT | unc | 1.0424 | 2.0642 | 0.3570 | 1.7918 | 3.9362 | 0.4203 | 2.3666 | 4.8551 | 0.5152 |
+| MapTRv2-CL | DenseTNT | bew | 1.0068 | 1.9942 | 0.3482 | 1.7738 | 3.9626 | 0.4210 | 2.3537 | 4.6741 | 0.4997 |
+| MapTRv2-CL | DenseTNT | img | 0.9770 | 1.8156 | 0.3363 | 1.6482 | 3.5829 | 0.3627 | 1.9836 | 4.0002 | 0.4128 |
+
+of stationary vehicles is easy to predict, we further propose to only evaluate moving agents and divide them into "close" and "far" groups.
+
+- All Map Elements:** For the best performance, We use all possible map elements as input of the motion prediction model, while the existing benchmark only feeds one type of map elements.
+- New Baseline:** We propose a new baseline that integrates raw image features into motion prediction models, to provide agents that are out of the range of online maps with environmental information.
+
+### 4.2 RESULTS
+
+The results of existing online map based motion prediction methods on OMMP-Bench are shown in Tab 7, yielding the following insights:
+
+- Distant agents are hard to predict.** On the one hand, across all methods, the accuracy of predicting the ego vehicle's motion is consistently better than predicting nearby vehicles, which in turn is better than predicting the motion of distant vehicles. On the other hand, methods that improve the motion prediction on ego vehicle prediction do not necessarily show similar improvements for other vehicles. For example, for several combinations of the online mapping model and motion prediction model, both MapUncertaintyPrediction Gu et al. (2024a) and MapBEVPrediction Gu et al. (2024b) methods improve ego vehicle prediction but show performance drops when predicting close non-ego agents compared to base method. When predicting far non-ego agents with the MapTRv2-CL+DenseTNT model, minADE increased by 4.1% and 4.0%. This also highlights the challenge of our proposed metrics, encouraging the online map based motion prediction model to deal with more difficult while realistic tasks.
+- Stronger online mapping model benefits motion prediction.** When using DenseTNT as the downstream module, MapTRv2-CL achieves a reduction in minADE of 4.0% relative to MapTR. Compared to MapTR, MapTRv2-CL provides higher map prediction accuracy and additionally predicts centerlines. This indicates that a stronger online mapping model can supply downstream models with richer and more accurate information, thereby enhancing their performance.
+- Integrating image feature helps to predict agents far away.** Our proposed baseline reaches a better performance on predicting farther agents. Applied the method on the MapTRv2-CL+HiVT model, the minADE decreased by 12.7%.
+
+## 5 CONCLUSION
+
+In this paper, we delve into the challenges and misunderstandings of the emerging online map based motion prediction protocol, which includes inappropriate data splits, different considered ranges for online mapping and motion prediction, and non-discriminative metrics. We propose the OMMP-Bench, a benchmark with new data split, refined metrics, and a new baseline as the solution. We hope OMMP-Bench could solve the misunderstanding of the new field and provide insights for further co-development of online mapping and motion prediction models.
+
+{9}------------------------------------------------
+
+## 6 ETHICS STATEMENT
+
+The research conducted in the paper conforms with the ICLR Code of Ethics.
+
+## 7 REPRODUCIBILITY STATEMENT
+
+We describe the proposed module in Sec. 3 and detailed rules of the pipeline in Appendix A. The code and checkpoints will be open-sourced for reproduction.
+
+## REFERENCES
+
+- Holger Caesar, Varun Bankiti, Alex H. Lang, Sourabh Vora, Venice Erin Liong, Qiang Xu, Anush Krishnan, Yu Pan, Giancarlo Baldan, and Oscar Beijbom. nuscenes: A multimodal dataset for autonomous driving. *arXiv preprint arXiv:1903.11027*, 2019.
+- Yuning Chai, Benjamin Sapp, Mayank Bansal, and Dragomir Anguelov. Multipath: Multiple probabilistic anchor trajectory hypotheses for behavior prediction. In *Conference on Robot Learning*, pp. 86–99, 2020.
+- Li Chen, Chonghao Sima, Yang Li, Zehan Zheng, Jiajie Xu, Xiangwei Geng, Hongyang Li, Conghui He, Jianping Shi, Yu Qiao, and Junchi Yan. Persformer: 3d lane detection via perspective transformer and the openlane benchmark. In *European Conference on Computer Vision (ECCV)*, 2022.
+- Henggang Cui, Vladan Radosavljevic, Fang-Chieh Chou, Tsung-Han Lin, Thi Nguyen, Tzu-Kuo Huang, Jeff Schneider, and Nemanja Djuric. Multimodal trajectory predictions for autonomous driving using deep convolutional networks. In *2019 International Conference on Robotics and Automation*, pp. 2090–2096. IEEE, 2019.
+- Scott Ettinger, Shuyang Cheng, Benjamin Caine, Chenxi Liu, Hang Zhao, Sabeek Pradhan, Yuning Chai, Ben Sapp, Charles Qi, Yin Zhou, Zoey Yang, Aurelien Chouard, Pei Sun, Jiquan Ngiam, Vijay Vasudevan, Alexander McCauley, Jonathon Shlens, and Dragomir Anguelov. Large scale interactive motion forecasting for autonomous driving : The waymo open motion dataset, 2021. URL .
+- Jiyang Gao, Chen Sun, Hang Zhao, Yi Shen, Dragomir Anguelov, Congcong Li, and Cordelia Schmid. Vectornet: Encoding hd maps and agent dynamics from vectorized representation. In *Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition*, pp. 11525–11533, 2020a.
+- Jiyang Gao, Chen Sun, Hang Zhao, Yi Shen, Dragomir Anguelov, Congcong Li, and Cordelia Schmid. Vectornet: Encoding hd maps and agent dynamics from vectorized representation. In *Proceedings of the IEEE/CVF conference on computer vision and pattern recognition*, pp. 11525–11533, 2020b.
+- Junru Gu, Chen Sun, and Hang Zhao. Densetnet: End-to-end trajectory prediction from dense goal sets. In *Proceedings of the IEEE/CVF International Conference on Computer Vision*, pp. 15303–15312, 2021.
+- Junru Gu, Chenxu Hu, Tianyuan Zhang, Xuanyao Chen, Yilun Wang, Yue Wang, and Hang Zhao. Vip3d: End-to-end visual trajectory prediction via 3d agent queries. In *Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition*, pp. 5496–5506, 2023.
+- Xunjiang Gu, Guanyu Song, Igor Gilitschenski, Marco Pavone, and Boris Ivanovic. Producing and leveraging online map uncertainty in trajectory prediction. In *Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)*, 2024a.
+- Xunjiang Gu, Guanyu Song, Igor Gilitschenski, Marco Pavone, and Boris Ivanovic. Accelerating online mapping and behavior prediction via direct bev feature attention. In *European Conference on Computer Vision (ECCV)*, 2024b.
+- Sepp Hochreiter and Jürgen Schmidhuber. Long short-term memory. *Neural Computation*, 9, 1997.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/MQmrcX5jnk.txt b/papers/MQmrcX5jnk.txt
new file mode 100644
index 0000000000000000000000000000000000000000..55f7866cf809da59380e4a74b4c1d63908b682d8
--- /dev/null
+++ b/papers/MQmrcX5jnk.txt
@@ -0,0 +1,286 @@
+
+
+{0}------------------------------------------------
+
+# LEARNING BOLTZMANN GENERATORS VIA CONSTRAINED MASS TRANSPORT
+
+Christopher von Klitzing1 Denis Blessing1\* Henrik Schopmans2\*
+
+Pascal Friederich2 Gerhard Neumann1
+
+1 Autonomous Learning Robots, Karlsruhe Institute of Technology
+
+2 Artificial Intelligence for Materials Sciences, Karlsruhe Institute of Technology
+
+## ABSTRACT
+
+Efficient sampling from high-dimensional and multimodal unnormalized probability distributions is a central challenge in many areas of science and machine learning. We focus on Boltzmann generators (BGs) that aim to sample the Boltzmann distribution of physical systems, such as molecules, at a given temperature. Classical variational approaches that minimize the reverse Kullback–Leibler divergence are prone to mode collapse, while annealing-based methods, commonly using geometric schedules, can suffer from mass teleportation and rely heavily on schedule tuning. We introduce *Constrained Mass Transport* (CMT), a variational framework that generates intermediate distributions under constraints on both the KL divergence and the entropy decay between successive steps. These constraints enhance distributional overlap, mitigate mass teleportation, and counteract premature convergence. Across standard BG benchmarks and the here introduced *ELIL tetrapeptide*, the largest system studied to date without access to samples from molecular dynamics, CMT consistently surpasses state-of-the-art variational methods, achieving more than $2.5\times$ higher effective sample size while avoiding mode collapse.
+
+## 1 INTRODUCTION
+
+We consider the problem of sampling from a target probability measure $p \in \mathcal{P}(\mathbb{R}^d)$ given by $p(x) = \tilde{p}(x)/Z$ where $\tilde{p} \in C(\mathbb{R}^d, \mathbb{R}_{>0})$ can be evaluated pointwise but the normalization constant $Z = \int_{\mathbb{R}^d} \tilde{p}(x) dx$ is intractable. Sampling from unnormalized densities arises in many areas, including Bayesian statistics (Gelman et al., 1995), reinforcement learning (Celik et al., 2025), and the natural sciences (Stoltz et al., 2010).
+
+A promising alternative to classical Monte Carlo methods (Hammersley, 2013) is offered by variational approaches (Struwe & Struwe, 2000), which aim to minimize a statistical divergence between a variational probability measure $q \in \mathcal{P}(\mathbb{R}^d)$ and the target $p$ , commonly the reverse Kullback–Leibler (KL) divergence
+
+$$q^* = \arg \min_{q \in \mathcal{P}(\mathbb{R}^d)} D_{\text{KL}}(q \| p), \quad (1)$$
+
+whose unique minimizer is $q^* = p$ . A prominent example is the variational learning of molecular Boltzmann generators (BGs) (Noé et al., 2019), for which $\tilde{p}(x) = \exp(-E(x)/k_B T)$ , with $E$ being an energy function, $T$ the temperature, and $k_B$ the Boltzmann constant. BGs enable efficient sampling of thermodynamic ensembles, thereby bypassing costly molecular dynamics (MD) simulations and accelerating the exploration of rare but physically important states. However, learning BGs is challenging as the state space is typically high-dimensional, the target distribution is often highly multimodal, and evaluating $E(x)$ can be very costly, especially when using accurate energies such as those from density-functional theory (Argaman & Makov, 2000).
+
+Furthermore, directly minimizing the reverse KL divergence tends to suffer from mode collapse, ignoring low-probability modes of the target (Blessing et al., 2024; Soletskiy et al., 2025). To address this, a number of recent approaches have proposed to construct a sequence of intermediate
+
+\*Equal contribution. Correspondence to denis.blessing@kit.edu and henrik.schopmans@kit.edu.
+
+{1}------------------------------------------------
+
+distributions that transport probability mass from a tractable base distribution $q_0$ to the target (Arbel et al., 2021; Matthews et al., 2022; Vargas et al., 2023; Tian et al., 2024; Albergo & Vanden-Eijnden, 2024). This idea, which dates back more than two decades to annealed importance sampling (Neal, 2001), is most often realized through a geometric annealing path, which is defined as a sequence of $(q_i)_{i=1}^I$ which follows $q_i \propto q_0^{1-\beta_i} \tilde{p}^{\beta_i}$ , where the corresponding annealing schedule $(\beta_i)_{i=1}^I$ ensures that $q_I = p$ . Despite its simplicity, geometric annealing can suffer from mass teleportation, where large portions of the probability mass shift to disjoint regions between successive steps, complicating mass transport (Akound-Sadegh et al., 2025; Mauraïs et al., 2025; Chehab & Korba, 2024; Béreux et al., 2024). Moreover, its performance critically depends on the choice of annealing schedule (Sayed et al., 2024). By “mass teleportation”, we refer to the failure mode of geometric annealing in which probability mass abruptly shifts to regions where the current intermediate has negligible density, blocking effective transport. This differs from the definition of Máté & Fleuret (2023), who focus on preserving relative weights (often termed “mode switching” (Phillips et al., 2024)).
+
+To counteract this, we build on ideas from reinforcement learning (Schulman et al., 2015) and use a trust-region constraint that modifies (1) by bounding the KL divergence between successive distributions, which results in the geometric annealing path with automatic schedule tuning. Adapting these ideas to sampling problems, we further introduce a constraint that explicitly controls the rate at which the entropy of the variational distribution decreases along the transport path. This added degree of freedom enables deviations from the standard geometric annealing path, mitigating issues such as mass teleportation and premature convergence, while fostering greater overlap between consecutive distributions. These contributions culminate in *Constrained Mass Transport* (CMT), a general framework for transporting variational densities along well-defined annealing paths. To highlight its practical utility, we instantiate the framework with normalizing flows and demonstrate that it consistently outperforms state-of-the-art approaches, often by a substantial margin when learning molecular Boltzmann generators directly from energy evaluations, without reliance on additional MD samples.
+
+**Contributions.** Our contributions can be summarized as follows:
+
+- We introduce a general framework for addressing sampling problems through a sequence of constrained variational problems, considering trust-region, entropy, and hybrid constraints.
+- We establish a connection between these sequences and annealing paths, which interpolate between a tractable prior and the target distribution.
+- We instantiate our framework in practice by employing normalizing flows (Papamakarios et al., 2021) to learn molecular Boltzmann generators (Noé et al., 2019).
+- We show that our method, *Constrained Mass Transport* (CMT), consistently surpasses state-of-the-art approaches, often by a significant margin when learning molecular Boltzmann generators solely from energy evaluations, without relying on additional MD samples.
+- We introduce a new benchmark, the *ELIL tetrapeptide*, which, to the best of our knowledge, is the largest system studied to date under the setting of learning exclusively from energy evaluations.
+
+## 2 CONSTRAINED MASS TRANSPORT
+
+Here, we denote by $\mathcal{P}(\mathbb{R}^d)$ the space of probability measures on $\mathbb{R}^d$ that are absolutely continuous with respect to Lebesgue measure and admit smooth densities. We approach the sampling problem by dividing (1) into a sequence of constrained optimization problems that result in an annealing path of intermediate densities $(q_i)_{i=0}^I$ that bridge between a tractable prior $q_0$ and the target $p$ .
+
+**Trust-region constraint.** Trust regions aim at dividing the problem (1) into subproblems by constraining the updated density to be close to the old density in terms of KL divergence. Formally, this is given by the iterative optimization scheme1
+
+$$q_{i+1} = \arg \min_{q \in \mathcal{P}(\mathbb{R}^d)} D_{\text{KL}}(q \| p) \quad \text{s.t.} \quad D_{\text{KL}}(q \| q_i) \leq \varepsilon_{\text{tr}}, \quad (2)$$
+
+1To ensure that $q \in \mathcal{P}(\mathbb{R}^d)$ we need an additional constraint $\int q(x)dx = 1$ which we omitted in the main part of the paper for readability.
+
+{2}------------------------------------------------
+
+
+
+Figure 1: Illustration of the annealing paths (AP) obtained by solving the variational problems (2), (7), or (9). The figure shows four plots: 'Geometric AP linear schedule', 'Geometric AP via (2)', 'Tempered AP via (7)', and 'Geometric-tempered AP via (9)'. Each plot shows a sequence of density distributions (blue curves) starting from a target distribution p (black curve) and evolving towards a source distribution q0 (grey curve). The 'Geometric AP linear schedule' shows a linear interpolation between p and q0. The 'Geometric AP via (2)' shows a more complex path with mass teleportation. The 'Tempered AP via (7)' shows a path that maintains overlap but fails to guarantee sufficient overlap. The 'Geometric-tempered AP via (9)' shows a path that maintains overlap and avoids mass teleportation.
+
+Figure 1: Illustration of the annealing paths (AP) obtained by solving the variational problems (2), (7), or (9). Trust-region-based optimization (2) mitigates the irregularities of naive schedules (e.g., the linear schedule), but the resulting geometric AP suffers from mass teleportation as the right mode of the target distribution $p$ emerges without overlap with earlier intermediate densities. Constraining the entropy decay between successive densities (7) prevents mass teleportation, yet fails to guarantee sufficient overlap between the initial distribution $q_0$ and subsequent intermediate densities. In contrast, combining both constraints (9) yields APs that both maintain overlap between successive densities and avoid mass teleportation.
+
+for $i \in \mathbb{N}$ , trust-region bound $\varepsilon_u > 0$ and some $q_0 \in \mathcal{P}(\mathbb{R}^d)$ . Due to the convexity of the KL divergence, we can show that in all but the last step we actually have an equality constraint in (2); see Appendix A. Thus, there exists an $I \in \mathbb{N}$ such that $q_I = q^* (= p)$ . Under suitable regularity assumptions, we can approach the above constrained optimization problem using a relaxed Lagrangian formalism, i.e.,
+
+$$\mathcal{L}_u^{(i+1)}(q, \lambda) = D_{\text{KL}}(q \| p) + \lambda (D_{\text{KL}}(q \| q_i) - \varepsilon_u) \quad (3)$$
+
+where $\lambda \geq 0$ is a Lagrangian multiplier, and solve the saddle point problems
+
+$$\max_{\lambda \geq 0} \min_{q \in \mathcal{P}(\mathbb{R}^d)} \mathcal{L}_u^{(i)}(q, \lambda). \quad (4)$$
+
+We note that $\mathcal{L}_u^{(i)}$ is convex in $q$ by convexity of the KL divergence and the dual function
+
+$$g_u^{(i+1)}(\lambda) := \min_{q \in \mathcal{P}(\mathbb{R}^d)} \mathcal{L}_u^{(i)}(q, \lambda)$$
+
+concave in $\lambda$ since it is the pointwise minimum of a family of linear functions of $\lambda$ . Thus, (4) has unique optima which we denote by $q_{i+1}$ and $\lambda_i$ , respectively. Indeed, (2) admits an analytical solution which is characterized by Proposition 2.1. We refer to Appendix A for a proof and further details on problem (2).
+
+**Proposition 2.1** (Optimal intermediate trust-region densities). *The intermediate optimal densities that solve (2) satisfy*
+
+$$q_{i+1}(x, \lambda) = \frac{q_i(x)^{\frac{1}{1+\lambda}} \tilde{p}(x)^{\frac{1}{1+\lambda}}}{\mathcal{Z}_{i+1}(\lambda)}, \quad \text{with} \quad \mathcal{Z}_{i+1}(\lambda) = \int q_i(x)^{\frac{1}{1+\lambda}} \tilde{p}(x)^{\frac{1}{1+\lambda}} dx, \quad (5)$$
+
+where $q_{i+1}$ are the unique optima of the Lagrangian corresponding to (2).
+
+The optimal multiplier $\lambda_i$ that solves (2) is obtained by plugging $q_{i+1}(\lambda)$ in the Lagrangian (3) to obtain the dual function $g_u \in C(\mathbb{R}, \mathbb{R})$ given by
+
+$$g_u^{(i+1)}(\lambda) := \mathcal{L}_u^{(i+1)}(q_{i+1}(\lambda), \lambda) = -(1 + \lambda) \log \mathcal{Z}_{i+1}(\lambda) - \lambda \varepsilon_u. \quad (6)$$
+
+Assuming access to $\mathcal{Z}_{i+1}(\lambda)$ one can solve $\lambda_i = \arg \max_{\lambda \geq 0} g_u^{(i+1)}(\lambda)$ to obtain the optimal $q \in \mathcal{P}(\mathbb{R}^d)$ that solves (2) as $q_{i+1} := q_{i+1}(\lambda_i)$ .
+
+**Entropy constraint.** In a similar fashion to (2), we can avoid premature convergence by regulating the entropy decay of the model by constructing a sequence of intermediate densities whose change in entropy is constrained. Formally, we aim to solve the following problem
+
+$$q_{i+1} = \arg \min_{q \in \mathcal{P}(\mathbb{R}^d)} D_{\text{KL}}(q \| p) \quad \text{s.t.} \quad H(q_i) - H(q) \leq \varepsilon_{\text{ent}}, \quad (7)$$
+
+where $H(q) = -\int q(x) \log q(x) dx$ is the Shannon entropy and $\varepsilon_{\text{ent}} > 0$ the entropy bound. We can again approach (7) using a Lagrangian formalism by introducing a Lagrangian multiplier $\eta \geq 0$ . The analytical solution to (7) is characterized by Proposition 2.2 whose proof can be found in Appendix A.
+
+{3}------------------------------------------------
+
+**Proposition 2.2** (Optimal intermediate densities for entropy constraint). *The intermediate optimal densities that solve (7) satisfy*
+
+$$q_{i+1}(x, \eta) = \frac{\tilde{p}(x)^{\frac{1}{1+\eta}}}{\mathcal{Z}_{i+1}(\eta)}, \quad \text{with} \quad \mathcal{Z}_{i+1}(\eta) = \int \tilde{p}(x)^{\frac{1}{1+\eta}} dx, \quad (8)$$
+
+where $q_{i+1}$ are the unique optima of the Lagrangian corresponding to (7).
+
+Despite the potential of (7) for counteracting premature convergence, we identify two challenges depending on the entropy of the initial density $H(q_0)$ : First, if $H(q_0) < H(p)$ then the constraint is inactive resulting in $\eta_0 = 0$ , reducing (7) to the optimization problem as stated in (1). Second, if $H(q_0) \gg H(p)$ then the KL divergence between $q_0$ and $q_1 \propto p^{1/(1+\eta_0)}$ can be arbitrarily large and therefore could cause instabilities due to a lack of overlap between the successive densities. While the former challenge can typically be addressed by initializing $q_0$ with large entropy, the second can be more intricate. In the following, we explain how this challenge can be addressed by combining the trust-region and entropy constraint.
+
+**Combining both constraints.** One can straightforwardly combine the constraints in (2) and (7) into a single iterative optimization scheme defined as
+
+$$q_{i+1} = \arg \min_{q \in \mathcal{P}(\mathbb{R}^d)} D_{\text{KL}}(q \| p) \quad \text{s.t.} \quad \begin{cases} D_{\text{KL}}(q \| q_i) \leq \varepsilon_{\text{tr}}, \\ H(q_i) - H(q) \leq \varepsilon_{\text{ent}}. \end{cases} \quad (9)$$
+
+In analogy to the previous section, we introduce Lagrangian multipliers $\lambda$ and $\eta$ for the trust-region and entropy constraint, respectively. Indeed, one can again obtain an analytical expression for the evolution of the optimal densities, see Proposition 2.3 and Appendix A for a proof.
+
+**Proposition 2.3** (Optimal intermediate densities for entropy and trust-region constraint). *The intermediate optimal densities that solve (9) satisfy*
+
+$$q_{i+1}(x, \lambda, \eta) = \frac{q_i(x)^{\frac{1}{1+\lambda+\eta}} \tilde{p}(x)^{\frac{1}{1+\lambda+\eta}}}{\mathcal{Z}_{i+1}(\lambda, \eta)} \quad \text{with} \quad \mathcal{Z}_{i+1}(\lambda, \eta) = \int q_i(x)^{\frac{1}{1+\lambda+\eta}} \tilde{p}(x)^{\frac{1}{1+\lambda+\eta}} (x) dx, \quad (10)$$
+
+where $q_{i+1}$ are the unique optima of the Lagrangian corresponding to (9).
+
+Clearly, if $H(q_0) \gg H(p)$ , the trust-region constraint ensures that the KL divergence between $q_0$ and $q_1$ is at most $\varepsilon_{\text{tr}}$ and, therefore, for a suitable choice of $\varepsilon_{\text{tr}}$ ensures that two consecutive densities have sufficient overlap. Lastly, the Lagrangian dual function $g_{\text{tr-ent}} \in C(\mathbb{R}^2, \mathbb{R})$ corresponding to (9), that is,
+
+$$g_{\text{tr-ent}}^{(i+1)}(\lambda, \eta) := -(1 + \lambda + \eta) \log \mathcal{Z}_{i+1}(\lambda, \eta) - \lambda \varepsilon_{\text{tr}} - \eta(H(q_i) - \varepsilon_{\text{ent}}), \quad (11)$$
+
+requires solving a two-dimensional convex optimization problem to obtain $\lambda_i, \eta_i$ which can be done efficiently in practice; see Section 3 for additional details.
+
+**Connection to annealing paths.** Iteratively solving (2), (7) or (9) induces an *annealing path*, that is, a sequence of densities $(q_i)_{i \in \mathbb{N}}$ that interpolates between $q_0$ and $p$ . We characterize these paths in Theorem 2.4; See Appendix A for a proof.
+
+**Theorem 2.4** (Annealing paths). *Let $p \in \mathcal{P}(\mathbb{R}^d)$ be the target density and $q_0 \in \mathcal{P}(\mathbb{R}^d)$ some initial density. The intermediate optimal densities that solve (2), (7) and (9) satisfy*
+
+$$q_i \propto q_0^{1-\beta_i} \tilde{p}^{\beta_i}, \quad q_i \propto \tilde{p}^{\alpha_i} \quad (i \geq 1), \quad \text{and} \quad q_i \propto q_0^{1-\beta_i} (\tilde{p}^{\alpha_i})^{\beta_i}, \quad (12)$$
+
+respectively, with $\beta$ and $\alpha$ being functions of the corresponding Lagrangian multipliers. Moreover, the sequences $(\alpha_i)_{i \in \mathbb{N}_0}$ and $(\beta_i)_{i \in \mathbb{N}_0}$ take values in $[0, 1]$ , satisfy $\alpha_0 = \beta_0 = 0$ and $\alpha_I = \beta_I = 1$ for some $I \in \mathbb{N}_+$ and $(\beta_i)_{i \in \mathbb{N}_0}$ is monotonically increasing.
+
+In what follows, we refer to the annealing paths in (12) as geometric (G), tempered (T), and geometric-tempered (GT) annealing paths, respectively. We further refer to Figure 1 for an illustration of the impact of the introduced constraints on the annealing paths.
+
+{4}------------------------------------------------
+
+## 3 LEARNING THE INTERMEDIATE DENSITIES
+
+**A general recipe.** So far, we discussed how one can construct a sequence of intermediate measures $(q_i)_{i \in \mathbb{N}}$ using our constrained mass transport formulation. However, despite having access to the analytical form of $q_i$ , it is typically not possible to sample from it directly. As such, we approximate each $q_i$ by a distribution from a tractable class $\mathcal{Q} \subset \mathcal{P}(\mathbb{R}^d)$ that permits efficient sampling and density evaluation. Given an approximation family $\mathcal{Q}$ , we select $\hat{q}_i \in \mathcal{Q}$ to approximate $q_i$ by solving
+
+$$\hat{q}_i = \arg \min_{q \in \mathcal{Q}} D(q_i, q), \quad (13)$$
+
+where $D$ is an arbitrary statistical divergence between probability measures. This formulation is general: the choice of $\mathcal{Q}$ and $D$ determines the trade-off between expressivity, computational cost, and statistical properties such as mode coverage or robustness.
+
+**Practical algorithm.** In this work, we choose $\mathcal{Q}$ to be a normalizing flow family constructed via push-forwards of a simple base measure (Rezende & Mohamed, 2015; Dinh et al., 2016; Durkan et al., 2019; Kingma & Dhariwal, 2018; Gabrié et al., 2022; Kolesnikov et al., 2024; Zhai et al., 2024). Let $q_z \in \mathcal{P}(\mathbb{R}^d)$ be an easy-to-sample base measure (e.g., a standard Gaussian), and let $\mathcal{F}$ be a class of smooth invertible maps $f : \mathbb{R}^d \rightarrow \mathbb{R}^d$ . We define
+
+$$\mathcal{Q}_{\text{NF}} := \{f_{\#}q_z \mid f \in \mathcal{F}\}, \quad \text{with} \quad (f_{\#}q_z)(z) = q_z(f^{-1}(z)) \left| \det \frac{\partial f^{-1}(z)}{\partial z} \right|. \quad (14)$$
+
+with push-forward $f_{\#}q_z$ . To fit $\hat{q}_i$ within this family, we take $D$ to be the importance-weighted forward KL divergence
+
+$$\hat{q}_{i+1} = \arg \min_{q \in \mathcal{Q}_{\text{NF}}} D_{\text{KL}}(q_{i+1} \| q) \quad \text{with} \quad D_{\text{KL}}(q_{i+1} \| q) = \mathbb{E}_{x \sim q_i} \left[ \frac{q_{i+1}(x)}{q_i(x)} \log \left( \frac{q_{i+1}(x)}{q(x)} \right) \right] \quad (15)$$
+
+This choice offers several advantages. First, forward KL strongly penalizes underestimating the support of $q_{i+1}$ , encouraging mode coverage and reducing the risk of mode collapse. Second, because $q_{i+1}$ is available in closed form from the constrained transport updates (see Proposition 2.1, 2.2 and 2.3), the importance weights $q_{i+1}(x)/q_i(x)$ can be computed solely from $q_i$ and $\tilde{p}$ . Third, the importance-weighted formulation allows us to reuse samples drawn from $q_i$ , enabling a seamless integration of replay buffers, resulting in increased sample efficiency. Lastly, the trust-region constraint controls the variance of the importance weights, keeping it approximately constant, independent of the problem dimension $d$ (see Appendix C.3), resulting in a highly scalable algorithm. Details regarding this specific form of CMT are provided in Appendix C.2.
+
+**Lagrangian dual optimization.** Maximizing the concave dual function (11) requires evaluating intermediate normalization constants $\mathcal{Z}_{i+1}$ . This can be done efficiently by expressing $\mathcal{Z}_{i+1}$ as an expectation under $q_i$ and using Monte Carlo estimation. For instance, the expression for $\mathcal{Z}_{i+1}$ in (10) can be estimated as
+
+$$\mathcal{Z}_{i+1}(\lambda, \eta) = \mathbb{E}_{x \sim q_i} \left[ \left( \frac{\tilde{p}(x)}{q_i(x)^{1+\eta}} \right)^{\frac{1}{1+\lambda+\eta}} \right] \approx \frac{1}{N} \sum_{x_n \sim q_i} \left( \frac{\tilde{p}(x_n)}{q_i(x_n)^{1+\eta}} \right)^{\frac{1}{1+\lambda+\eta}}. \quad (16)$$
+
+We note that, in contrast to estimating the normalization constant of the target $\mathcal{Z}$ , estimation of the normalization constant of the intermediate distributions $\mathcal{Z}_{i+1}$ can be performed with low variance since the trust-region constraint ensures sufficient overlap with the next intermediate distribution. Furthermore, samples $x_n \sim q_i$ and the corresponding evaluations $q_i(x_n)$ and $\tilde{p}(x_n)$ are typically already computed when solving (13), so the additional cost of determining the Lagrangian multipliers is negligible (see Appendix D.4). For example, on alanine dipeptide, it accounts for only about 0.01% of the total training time. Details of the dual optimization procedure are provided in Appendix C.1, including a code example. Lastly, we refer to Algorithm 1 for an algorithmic overview of the trained measure transport method.
+
+## 4 RELATED WORK
+
+**Boltzmann generators.** Learning molecular Boltzmann generators (Noé et al., 2019) purely from energy evaluations has been explored with both flow-based methods (Stimper et al., 2022b; Midgley
+
+{5}------------------------------------------------
+
+#### **Algorithm 1** Constrained mass transport
+
+---
+
+```
+
+Require: Initial measure $q_0$ , target measure $\tilde{p}$ , divergence $D$ , approximation family $\mathcal{Q}$ , buffer size $N$
+for $i \leftarrow 0, \dots, I-1$ do
+ Draw $N$ samples $x_n \sim q_i$ , evaluate $q_i(x_n), \tilde{p}(x_n)$
+ Initialize buffer $\mathcal{B}^{(i)} = (x_n, q_i(x_n), \tilde{p}(x_n))_{n=1}^N$
+ Compute multipliers $\lambda_i, \eta_i = \arg \max_{\lambda, \eta \in \mathbb{R}^+} g_{\text{w-ent}}^{(i+1)}(\lambda, \eta)$ using $\mathcal{B}^{(i)}$
+ Compute $q_{i+1} \approx \tilde{q}_{i+1} = \arg \min_{q \in \mathcal{Q}} D(q_{i+1}, q)$ using $\mathcal{B}^{(i)}$
+return $\tilde{q}_I \approx p$
+
+```
+
+---
+
+et al., 2022; Schopmans & Friederich, 2025) and diffusion-based methods (Liu et al., 2025; Choi et al., 2025; Kim et al., 2025). While flow-based approaches have demonstrated strong performance, their diffusion-based counterparts remain less competitive on molecular systems, often struggling with mode collapse, even on relatively small systems.
+
+Next to purely energy-based approaches, recent work showed success in leveraging samples from a higher temperature, which are typically easier to obtain, and transferring the distribution to a lower target temperature (Dibak et al., 2022a; Wahl et al., 2025; Schopmans & Friederich, 2025; Rissanen et al., 2025; Akhound-Sadeghi et al., 2025).
+
+Alternative methods train on samples from molecular dynamics (Klein et al., 2023; Midgley et al., 2023; Tan et al., 2025a; Peng & Gao, 2025), allowing for amortized sampling due to transferability to unseen systems (Jing et al., 2022; Abdin & Kim, 2023; Klein & Noé, 2024; Jing et al., 2024; Lewis et al., 2025; Tan et al., 2025b).
+
+**Constrained optimization.** Trust-region methods have a long history as robust optimization algorithms that iteratively minimize an objective within an adaptively sized “trust region”; see Conn et al. (2000) for an overview. Beyond classical optimization, these methods have been extended to operate over spaces of probability distributions, with applications in reinforcement learning (Peters et al., 2010; Schulman et al., 2015; 2017; Achiam et al., 2017; Pajarinen et al., 2019; Akrou et al., 2019; Yang et al., 2020; Otto et al., 2021; Xu et al., 2024; Wu et al., 2017; Abdolmaleki et al., 2018b;a; Meng et al., 2021), black-box optimization (Sun et al., 2009; Wierstra et al., 2014; Abdolmaleki et al., 2015), variational inference (Arenz et al., 2020; 2022), and path integral control (Gómez et al., 2014; Thalmeyer et al., 2020). The first explicit link between trust-region optimization and geometric annealing paths was established by Blessing et al. (2025) for path space measures in the setting of stochastic optimal control. Entropy constraints, often introduced as entropy regularization, have also been studied in policy optimization and reinforcement learning, either in the form of soft constraints (Ahmed et al., 2019; Mnih et al., 2016; O’Donoghue et al., 2016) or hard constraints (Abdolmaleki et al., 2015; Pajarinen et al., 2019; Akrou et al., 2016; 2018; 2019). However, prior work typically constrains the absolute entropy value, which is problematic for inference tasks, since it requires prior knowledge of the target density’s entropy. To the best of our knowledge, such methods have not yet been extended to sampling problems. Furthermore, the connection between entropy-constrained optimization and annealing paths has not previously been established.
+
+**Improved annealing paths.** Research on improving annealing paths (APs) has largely focused on geometric APs in the context of annealed importance sampling (AIS) (Neal, 2001) and their extensions to sequential Monte Carlo (SMC) (Del Moral et al., 2006); see Jasma et al. (2011); Goshtasbpour et al. (2023); Chopin et al. (2023); Syed et al. (2024). Beyond the standard geometric AP, alternative constructions have been proposed, such as the moment-averaging path for exponential family distributions (Grosse et al., 2013) and the arithmetic mean path (Chen et al., 2021). The geometric path itself can be interpreted as a quasi-arithmetic mean (Kolmogorov & Castelnuovo, 1930) under the natural logarithm, which motivated Brekelmans et al. (2020) to propose APs based on the deformed logarithm transformation. A variational characterization of these paths was later analysed by Brekelmans & Nielsen (2024). Related work also explores improved schedules for parallel tempering Surjanovic et al. (2022); Syed et al. (2021) and for the diffusion coefficient in ergodic Ornstein-Uhlenbeck processes used to train denoising diffusion models (Ho et al., 2020;
+
+{6}------------------------------------------------
+
+Song et al., 2020); see, e.g., Nichol & Dhariwal (2021); Williams et al. (2024); Benita et al. (2025); Zhang (2025).
+
+## 5 NUMERICAL EVALUATION
+
+Table 1: Results for all systems of varying dimensionality $d$ . Evaluation criteria include the number of target evaluations (TARGET EVALS), the evidence upper bound (EUBO), the reverse effective sample size (ESS) and the average total variation distance to the Ramachandran plots generated from molecular dynamics samples (RAM TV). Details on all metrics can be found in Appendix D.3. Each value is shown as the mean $\pm$ standard error over four independent runs. An exception is TA-BG on the ELIL tetrapeptide, for which only two runs were successful due to numerical instabilities. The best results are highlighted in bold, except for the forward KL and reverse KL. Reverse KL is prone to mode collapse, which makes ESS values not directly comparable, and forward KL is trained from samples rather than from energy.
+
+| SYSTEM | METHOD | TARGET EVALS ↓ | EUBO ↓ | ESS [%] ↑ | RAM TV ↓ | |
+|-|-|-|-|-|-|-|
+| ALANINE DIPEPTIDE ( $d = 60$ ) | FORWARD KL | $5 \times 10^6$ | $-174.92 \pm 0.00$ | $(82.14 \pm 0.08) \%$ | $(1.09 \pm 0.01) \times 10^{-2}$ | |
+| | REVERSE KL | $2.56 \times 10^8$ | $-174.96 \pm 0.00$ | $(94.13 \pm 0.21) \%$ | $(1.36 \pm 0.05) \times 10^{-2}$ | |
+| | FAB | $2.13 \times 10^8$ | $-174.98 \pm 0.00$ | $(94.80 \pm 0.04) \%$ | $(1.03 \pm 0.01) \times 10^{-2}$ | |
+| | TA-BG | $1 \times 10^8$ | $-174.99 \pm 0.00$ | $(95.76 \pm 0.13) \%$ | $(1.24 \pm 0.07) \times 10^{-2}$ | |
+| | CMT (ours) | $1 \times 10^8$ | | | | |
+| ALANINE TETRA- PEPTIDE ( $d = 120$ ) | FORWARD KL | $4.2 \times 10^9$ | $-333.79 \pm 0.00$ | $(45.29 \pm 0.11) \%$ | $(1.47 \pm 0.03) \times 10^{-2}$ | |
+| | REVERSE KL | $2.56 \times 10^8$ | $-332.96 \pm 0.13$ | $(75.06 \pm 3.50) \%$ | $(2.89 \pm 0.02) \times 10^{-2}$ | |
+| | FAB | $2.13 \times 10^8$ | $-333.93 \pm 0.00$ | $(63.59 \pm 0.23) \%$ | $(3.10 \pm 0.04) \times 10^{-2}$ | |
+| | TA-BG | $1 \times 10^8$ | $-333.99 \pm 0.00$ | $(65.81 \pm 0.24) \%$ | $(1.53 \pm 0.09) \times 10^{-2}$ | |
+| | CMT (ours) | $1 \times 10^8$ | | | | |
+| ALANINE HEXA- PEPTIDE ( $d = 180$ ) | FORWARD KL | $4.2 \times 10^9$ | $-533.16 \pm 0.01$ | $(10.98 \pm 0.11) \%$ | $(1.88 \pm 0.01) \times 10^{-2}$ | |
+| | REVERSE KL | $2.56 \times 10^8$ | $-529.26 \pm 0.26$ | $(21.83 \pm 1.30) \%$ | $(7.73 \pm 0.63) \times 10^{-2}$ | |
+| | FAB | $4.2 \times 10^8$ | $-532.98 \pm 0.01$ | $(14.55 \pm 0.05) \%$ | $(6.43 \pm 0.03) \times 10^{-2}$ | |
+| | TA-BG | $4 \times 10^8$ | $-533.43 \pm 0.00$ | $(18.22 \pm 0.15) \%$ | $(2.59 \pm 0.03) \times 10^{-2}$ | |
+| | CMT (ours) | $4 \times 10^8$ | | | | |
+| ELIL TETRA- PEPTIDE ( $d = 219$ ) | FORWARD KL | $4.2 \times 10^9$ | $-276.76 \pm 0.00$ | $(5.85 \pm 0.03) \%$ | $(1.58 \pm 0.01) \times 10^{-2}$ | |
+| | REVERSE KL | $2.56 \times 10^8$ | $-262.34 \pm 3.48$ | $(1.26 \pm 0.53) \%$ | $(2.61 \pm 0.27) \times 10^{-1}$ | |
+| | FAB | $8.43 \times 10^8$ | $-276.67 \pm 0.01$ | $(7.21 \pm 0.08) \%$ | $(7.54 \pm 0.14) \times 10^{-2}$ | |
+| | TA-BG | $8 \times 10^8$ | $-277.40 \pm 0.06$ | $(13.75 \pm 1.42) \%$ | | |
+| | CMT (ours) | $8 \times 10^8$ | | | $(3.13 \pm 0.03) \times 10^{-2}$ | |
+
+In this section, we compare our approach against state-of-the-art methods on four challenging molecular systems. We provide a brief overview of the experimental setup here, with full details in Appendix D. Additional experimental results are provided in Appendix B, including extended performance metrics, an ablation study on the effect of both constraints, and an analysis of different trust-region bounds across systems of different dimensionality.
+
+### 5.1 EXPERIMENTAL SETUP
+
+**Benchmark problems.** Our evaluation covers a range of molecular systems, beginning with the well-studied alanine dipeptide ( $d = 60$ ) (Dibak et al., 2022b; Stimpner et al., 2022b; Midgley et al., 2022; Tan et al., 2025a), and extending to the larger alanine tetrapeptide ( $d = 120$ ) and alanine hexapeptide ( $d = 180$ ), which have only recently been addressed using variational methods (Schopmans & Friederich, 2025). In addition, we introduce a new benchmark, the ELIL tetrapeptide ( $d = 219$ ), which is higher-dimensional and which contains more complex side chain interactions compared to the alanine hexapeptide. To the best of our knowledge, this represents the largest and most complex molecular system investigated using variational approaches to date. A detailed description of all benchmark systems is provided in Appendix D.2, and visualizations of all systems can be found next to Table 1.
+
+While using Lagrangian multipliers as a stopping criterion is possible (as $\lambda = \eta = 0$ implies satisfied constraints), we use a fixed number of annealing steps $\tilde{T}$ to strictly control the computational budget for fair benchmarking (see Algorithm 2).
+
+{7}------------------------------------------------
+
+**Baseline methods.** Our main baselines are Flow Annealed Importance Sampling Bootstrap (FAB) (Midgley et al., 2022) and Temperature-Annealed Boltzmann Generators (TA-BG) (Schopmans & Friederich, 2025), which currently define the state of the art for variational sampling of molecular systems. For reference, we also include reverse and forward KL training; the latter leverages ground truth samples obtained from molecular dynamics (MD) simulations (see Appendix D.2). To ensure a fair comparison, all methods use neural spline flows (Durkan et al., 2019) and identical architectures.
+
+**Performance criteria.** We evaluate methods primarily using three criteria. First, the evidence upper bound (EUBO), computed with ground truth MD samples. Up to an additive constant, the EUBO corresponds to the forward KL divergence and is therefore well suited for detecting mode collapse (Blessing et al., 2024). Second, we consider the effective sample size (ESS), defined as $\text{ESS}(q, p) := (\mathbb{E}_{x \sim q} [(p(x)/q(x))^2])^{-1}$ . ESS is a common measure of sample quality, but it is known to be less reliable for assessing mode collapse (Blessing et al., 2024).
+
+Finally, we consider Ramachandran plots as a qualitative criterion for assessing mode collapse. These plots visualize the 2D log-density of the joint distribution of a pair of dihedral angles in a peptide’s backbone. This is a low-dimensional representation of important molecular configurations, making it possible to assess whether the generated samples capture all relevant modes of the distribution or fail to represent certain regions of the state space. For more details on Ramachandran plots, we refer to Appendix D.3 and Schopmans & Friederich (2025). To assess the quality of the Ramachandran plots, we use the total variation distance (Ram TV) between the model-sampled and ground-truth (MD) Ramachandran histograms, as the TV distance is symmetric and more naturally reflects the bidirectional nature of matching generated and target Boltzmann distributions, thereby also penalizing overestimation of density by the model.
+
+For details on all metrics, we refer to Appendix D.3. Since evaluating the target density of molecular systems is typically expensive, we also report the number of target evaluations required by each method.
+
+### 5.2 RESULTS
+
+**Main results.** The main findings are summarized in Table 1. Across all systems and metrics, our method outperforms the baselines while requiring the same or fewer target evaluations. It produces samples closer to the ground-truth distribution (EUBO), allows more efficient importance sampling (ESS), and provides superior mode coverage and resolution of metastable high-energy regions (RAM TV). While the performance gap between our method and the baselines is less pronounced for smaller systems, it widens substantially for the larger ones. In particular, on alanine hexapeptide and ELIL tetrapeptide, our method attains approximately twice the ESS of competing approaches, while also avoiding mode collapse, as reflected in improved EUBO and Ram TV values. In contrast, the reverse KL objective exhibits significant mode collapse, as evidenced by the widening gap in EUBO and Ram TV relative to the other methods, with the most pronounced discrepancy observed on the largest system, ELIL tetrapeptide.
+
+Taken together, the consistency of these trends across metrics and systems highlights the robustness of our method, particularly in challenging high-dimensional systems.
+
+**Ablation study for constraints.** Additionally, we investigate the effect of different constraint choices on the performance of the alanine hexapeptide system. Specifically, we compare four settings: using both constraints, each constraint individually, and no constraint (which corresponds to importance-weighted forward KL minimization). The results are summarized in Figure 2 and Figure 3. Figure 2a shows that omitting the trust-region constraint causes entropy to decrease rapidly, which leads to mode collapse during training. Moreover, using only the entropy constraint yields unstable training, as evidenced by violations of the prescribed linear entropy decay. In contrast, incorporating a trust-region constraint stabilizes training, as reflected in Figure 2b, where it produces a substantially higher ESS between successive intermediate densities. Figure 3 shows Ramachandran plots of alanine hexapeptide with the constraints selectively enabled or disabled. Visible signs of mode collapse appear in all cases except for the tempered (7) and geometric-tempered (9) variants, with the most accurate Ramachandran plot observed in the latter. Overall, our findings indicate that both constraints are necessary to achieve high ESS values while simultaneously avoiding mode collapse.
+
+{8}------------------------------------------------
+
+![Figure 2: Impact of the trust-region and entropy constraint visualized on alanine hexapeptide. (a) H(q_i) vs Target Evaluations. (b) ESS(q_{i-1}, q_i) [%] vs Target Evaluations. (c) -EUBO bar chart. (d) ESS(q_i, p) [%] bar chart.](b93cbfb52e37619e688175a6aad9edd9_img.jpg)
+
+Figure 2 consists of four subplots. Subplot (a) shows the model entropy $H(\hat{q}_i)$ over $10^6$ target evaluations. Subplot (b) shows the effective sample size (ESS) between successive intermediate densities over $10^6$ target evaluations. Subplots (c) and (d) are bar charts comparing four methods: No constraint (orange), Geometric via (2) (purple), Tempered via (7) (red), and Geometric-tempered via (9) (green). In (c), the values are approximately 531.48, 533.05, 533.06, and 533.49. In (d), the values are approximately 25.57, 33.42, 15.11, and 29.63. The Geometric-tempered method (green) shows the highest ESS to the target density.
+
+Figure 2: Impact of the trust-region and entropy constraint visualized on alanine hexapeptide. (a) H(q\_i) vs Target Evaluations. (b) ESS(q\_{i-1}, q\_i) [%] vs Target Evaluations. (c) -EUBO bar chart. (d) ESS(q\_i, p) [%] bar chart.
+
+Figure 2: Impact of the trust-region and entropy constraint visualized on alanine hexapeptide. Figure 2a visualizes the model entropy over the course of the training. Analogously, Figure 2b shows the importance-weight effective sample size (ESS) between successive intermediate densities. Figures 2c and 2d depict the final log-likelihood and ESS to the target density, respectively. The variants in Figure 2d marked with “ $\star$ ” exhibit visible mode-collapse on the Ramachandran plots; see Figure 3. The ESS is therefore not directly comparable to the other methods. We denote by $\hat{q}_i$ the variational approximation of the intermediate density $q_i$ .
+
+
+
+Figure 3 displays five Ramachandran plots for alanine hexapeptide, showing the distribution of $\phi_2$ vs $\psi_2$ . The plots are: Ground truth, No constraint, Geometric, Tempered, and Geometric-tempered. The Ground truth plot shows a clear distribution of points. The No constraint and Tempered plots show significant mode collapse, with points concentrated in a few regions. The Geometric and Geometric-tempered plots show more diverse distributions. A color bar on the right indicates the free energy in units of $k_B T$ , ranging from 0 to 10.
+
+Figure 3: Ramachandran plots for alanine hexapeptide. The plots show the distribution of phi\_2 vs psi\_2 for Ground truth, No constraint, Geometric, Tempered, and Geometric-tempered methods. A color bar on the right indicates free energy / k\_B T.
+
+Figure 3: Ramachandran plots for alanine hexapeptide with trust-region and entropy constraints selectively enabled or disabled. Using a single or no constraint leads to mode collapse, whereas combining both constraints avoids it. See Appendix D.3 for details.
+
+## 6 CONCLUSION
+
+We have introduced *Constrained Mass Transport* (CMT), a variational framework for constructing intermediate distributions that transport probability mass from a tractable base measure to a complex, unnormalized target. By enforcing constraints on both the KL divergence and the entropy decay between successive steps, CMT balances exploration and convergence, thereby mitigating mass teleportation, reducing mode collapse, and promoting smooth distributional overlap. Our empirical evaluation across established Boltzmann generator benchmarks and the here proposed *ELIL tetrapeptide*, learned purely from energy evaluations without access to molecular dynamics samples, demonstrates that CMT consistently outperforms existing annealing-based and variational baselines, achieving over $2.5\times$ higher effective sample size while preserving mode diversity.
+
+Promising directions for future work include exploring alternative approximation families $\mathcal{Q}$ and divergences $D$ for learning intermediate densities, which may lead to further performance improvements. Applying our method in Cartesian coordinate representations also presents an interesting avenue, as it facilitates transferability across different molecular systems (Klein & Noé, 2024; Tan et al., 2025b). A key limitation of the current approach is the large number of gradient updates needed to approximate each intermediate target during training. Future work could investigate using more efficient loss functions, such as the log-variance loss (Richter et al., 2020), to reduce computational cost and improve scalability.
+
+## REPRODUCIBILITY STATEMENT
+
+The source code for all experiments is available at . The ground-truth molecular dynamics data have been made publicly accessible at .
+
+{9}------------------------------------------------
+
+## ACKNOWLEDGMENTS
+
+The authors acknowledge support by the state of Baden-Württemberg through bwHPC. This work is supported by the Helmholtz Association Initiative and Networking Fund on the HAICORE@KIT partition. D.B. acknowledges support by funding from the pilot program Core Informatics of the Helmholtz Association (HGF). H.S. acknowledges financial support by the German Research Foundation (DFG) through the Research Training Group 2450 “Tailored Scale-Bridging Approaches to Computational Nanoscience”. P.F. acknowledges funding from the Klaus Tschira Stiftung gGmbH (SIMPLAIX project) and the pilot program Core-Informatics of the Helmholtz Association (KiKIT project).
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/MwuSvrthXq.txt b/papers/MwuSvrthXq.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f87c26daa93019976829901fa49788cd6ee2fd75
--- /dev/null
+++ b/papers/MwuSvrthXq.txt
@@ -0,0 +1,340 @@
+
+
+{0}------------------------------------------------
+
+# REINFORCEMENT LEARNING FOR HETEROGENEOUS DAG SCHEDULING WITH WEIGHTED CROSS-ATTENTION
+
+Anonymous authors
+ Paper under double-blind review
+
+## ABSTRACT
+
+Efficient scheduling of directed acyclic graphs (DAGs) in heterogeneous environments is challenging due to diverse resource capacities and intricate dependencies. In practice, the need for adaptability across environments with varying resource pools, task types, and other settings, alongside rapid schedule generation, complicates these challenges. We propose WeCAN, an end-to-end reinforcement learning framework for heterogeneous DAG scheduling featuring task-resource compatibility. WeCAN rapidly generates schedules through single-pass network inference. Leveraging the weighted cross-attention layer, WeCAN utilizes all available environment information while preserving adaptability across diverse heterogeneous environments. Moreover, we analyze the optimality gap inherent in list-scheduling-based methods, revealing their inability to guarantee optimal solutions and their reduced performance in certain cases. Under the single-pass setting, we develop a method to enable skip actions, addressing this gap without sacrificing computational efficiency. Our approach delivers robust performance and adaptability, outperforming state-of-the-art methods across diverse datasets.
+
+## 1 INTRODUCTION
+
+Task scheduling problems are critical for optimizing computational performance in domains such as data centers (Mao et al., 2019), distributed systems, and large-scale cloud platforms (Lin et al., 2024). These problems are often modeled using directed acyclic graphs (DAGs), where nodes represent tasks and edges specify dependencies. The objective is typically to minimize the makespan (total completion time) subject to task dependencies and resource constraints. It is well known that DAG scheduling is an NP-hard problem even in homogeneous settings (Hartmanis, 1982). In heterogeneous environments, tasks need to be assigned to suitable pools (computational resources) possessing differing capacities and specific task-pool compatibility coefficients. This heterogeneity adds significant complexity to scheduling.
+
+Traditional approaches often employ heuristics, such as list scheduling (Graham, 1969) which assigns tasks to pools iteratively based on priority scores. These scores are often calculated using computationally inexpensive metrics, such as the critical-path length or the number of remaining operations (Haupt, 1989). Variations include Tetris (Grandl et al., 2014) using dynamic scores that change during scheduling, or HEFT (Topcuoglu et al., 2002) based on inserting tasks into an existing timeline. However, the design of such heuristics often relies heavily on human expertise and struggles to fully utilize all available problem information effectively.
+
+The application of machine learning (ML) to combinatorial optimization (CO) problems, originating with Hopfield & Tank (Hopfield & Tank, 1985), has gained significant attention in recent years. As most CO problems establish a one-to-one correspondence between solutions and action sequences, most ML approaches learn policies to construct solutions sequentially (Kool et al., 2019; Kwon et al., 2020; Liu et al., 2024; Zhou et al., 2024). Alternative approaches include learning policies to refine existing solutions (Wu et al., 2021; Ma et al., 2021; 2024) or simplify problem instances (Li et al., 2021; Hou et al., 2023; Ye et al., 2024). Researchers have also proposed reinforcement learning (RL) based methods for scheduling problems (Mao et al., 2016; 2019; Park et al., 2021; Paliwal et al., 2020; Sun et al., 2021; Gagrani et al., 2022; Sun et al., 2024; Li et al., 2024).
+
+{1}------------------------------------------------
+
+054 **Neural DAG Schedulers.** For DAG scheduling problems, [Zhang et al. \(2020\)](#) develop an approach
+055 to generate solutions by using a graph neural network (GNN) to encode state and selecting tasks
+056 sequentially. [Zhou et al. \(2020\)](#) develop a method that learns a policy to iteratively refine an existing
+057 solution. [Wang et al. \(2021\)](#) introduce a bi-level optimization approach applying RL to add auxiliary
+058 edges and proposing heuristics on the modified graph. Typically, these methods require multi-round
+059 neural network processing for generating a solution, limiting speed for time-sensitive applications.
+060 [Jeon et al. \(2023\)](#) introduce an approach using the Gumbel-TopK trick to generate priorities which
+061 are subsequently fed to the list scheduling algorithm for a feasible schedule. While their single-pass
+062 network inference enables rapid solution generation, their architecture does not consider compatibility
+063 coefficients or pool allocation, remaining challenges in highly heterogeneous settings. Furthermore,
+064 the reliance on generation maps like list scheduling in many existing approaches introduces an
+065 inherent optimality gap, limiting their ability to consistently find optimal solutions. The skip action
+066 in [Mao et al. \(2016\)](#) mitigates this gap, but their design relies on the time-consuming multi-round
+067 network processing and is difficult to adapt to the single-pass setting.
+
+068 **Neural DAG Schedulers for Heterogeneous Environments.** Researchers have also proposed
+069 reinforcement learning (RL) based methods for scheduling in heterogeneous environments ([Wu et al.,](#)
+070 [2018; Ni et al., 2020; Grinsztajn et al., 2021; Zhou et al., 2022; Zhadan et al., 2023; Wang et al.,](#)
+071 [2025](#)). For example, [Zhou et al. \(2022\)](#) propose an approach that selects tasks sequentially by network
+072 and assigns them to pools using heuristics. Their method represents compatibility coefficients by
+073 averaging them across pools, potentially losing fine-grained information. Similar strategies for
+074 embedding compatibility coefficients are proposed in [Zhadan et al. \(2023\)](#); [Wang et al. \(2025\)](#). Other
+075 works ([Wu et al., 2018; Grinsztajn et al., 2021; Jeon et al., 2023](#)) handle compatibility coefficients
+076 using representations like one-hot embedding of task types or fixed-dimensional vectors. However,
+077 these representations often depend on a fixed number of task types or pools, limiting their adaptability
+078 and flexibility to varying environment structures. Therefore, it remains a significant challenge to
+079 fully embed detailed environment information, including complex compatibility constraints, while
+080 maintaining adaptability across diverse and dynamically sized heterogeneous configurations.
+
+081 To address these challenges, we propose an end-to-end reinforcement learning framework for hetero-
+082 geneous DAG scheduling, particularly addressing problems featuring compatibility coefficients. Our
+083 main contributions are as follows. (1) We design an end-to-end reinforcement learning framework to
+084 rapidly solve heterogeneous DAG scheduling problems with diverse task-pool compatibilities. Our
+085 approach generates the solution with single-pass network inference, resulting in a processing time
+086 close to the heuristics; (2) We design a weighted cross-attention network (WeCAN), consisting of
+087 weighted cross-attention layers to capture environment information and a longest directed distance
+088 graph neural network to adapt the varying tasks dependence. The weighted cross-attention network
+089 fully utilizes available environment information and compatibility coefficients for embedding, while
+090 preserving adaptability and scalability across varying heterogeneous environment sizes, such as the
+091 number of pools and task types. This facilitates accurate evaluation of task features within the specific
+092 environment; (3) We perform an analysis of the solution spaces and the generation maps, and propose
+093 a criterion for checking their ability to achieve optimality. This analysis highlights the optimality gap
+094 inherent in widely used methods such as list scheduling, which can lead to a significant decrease in
+095 performance under some characteristic cases. We develop a method to enable the skip action in the
+096 single-pass setting, and demonstrate how this method theoretically closes this gap while retaining
+097 the computational efficiency, thereby underscoring the importance of skip. We also reveal which
+098 cases benefit the most from the skip action; (4) Empirical evaluations on the Computation Graphs
+099 and real-world TPC-H benchmarks validate our approach, demonstrating improved performance and
+100 significant gains in computational efficiency compared to state-of-the-art methods.
+
+## 2 PRELIMINARIES
+
+### 2.1 HETEROGENEOUS SCHEDULING PROBLEM
+
+104 The task scheduling problem seeks a schedule that minimizes the objective function among all
+105 feasible schedules subject to given constraints. We focus on heterogeneous scheduling problems
+106 characterized by compatibility coefficients. A problem instance $\mathcal{P} = (V, E, C, t, \rho, \lambda, K_{acc})$ can be
+107 modeled by a DAG $G = (V, E)$ together with a resource pool set $C = \{c(1), \dots, c(n_c)\}$ . The node
+set $V$ and the edge set $E$ represent tasks and their precedence relations, respectively. Each node
+
+{2}------------------------------------------------
+
+(task) $v \in V$ has a processing time $t(v)$ and a resource demand vector $p(v)$ . Each pool in $C$ has a resource capacity vector $\lambda(c)$ . The compatibility coefficients $K_{acc}(v, c) \geq 0$ reflect the variations in task execution time across resource pools (Topcuoglu et al., 2002), with the actual execution time of task $v$ on pool $c$ proportional to the inverse of this coefficient. A schedule is represented by a function $x : V \rightarrow \mathbb{R} \times C$ , which maps each task $v \in V$ to a pair $(s(v), c(v))$ , representing its start time and assigned resource pool, respectively. In this paper, the objective function is the makespan $f$ , defined as the latest task completion time. The problem can thus be formulated as:
+
+$$\begin{aligned} \min_{x=(s,c)} \quad & f(x) := \max_{v \in V} [s(v) + t(v)/K_{acc}(v, c(v))], \\ \text{s.t.} \quad & s(v) + t(v)/K_{acc}(v, c(v)) \leq s(w), \forall (v, w) \in E, \\ & \sum_{v \in F(t, c)} p(v) \leq \lambda(c), \forall t \geq 0, c \in C, \\ & K_{acc}(v, c(v)) > 0, \forall v \in V, \\ & s(v) \geq 0, \forall v \in V. \end{aligned}$$
+
+Here, $F(t, v)$ is the set of tasks on $c$ at time $t$ . The last constraint ensures the start time nonnegative, while the first three types of constraints are interpreted as follows: (1) dependency constraints, requiring each task to start after all its predecessors complete; (2) resource constraints, ensuring at any time $t$ , the total resource demand of tasks running on pool $c$ does not exceed its capacity $\lambda(c)$ ; and (3) compatibility constraints, requiring that a task $v$ can be assigned to a pool $c$ only if $K_{acc}(v, c) > 0$ .
+
+In the homogeneous setting where $K \equiv 1$ and $|C| = 1$ , the third constraint is naturally satisfied. In contrast, heterogeneous environments with compatibility constraints pose additional challenges, requiring tasks to run on compatible resource pools and schedulers to adapt to diverse resource characteristics. These scheduling problems can be formulated as mixed integer linear programming (MILP) problems, as described in Appendix A. This formulation establishes a one-to-one correspondence between feasible schedules and MILP feasible solutions, enabling a unified framework for analyzing scheduling scenarios. Compared to the homogeneous case, these settings introduce additional constraints and significantly increase MILP size, posing challenges for effective scheduling.
+
+### 2.2 LEARN TO SCHEDULE WITH MASK AND MAP
+
+Most neural scheduling methods construct feasible schedules by sequentially assigning tasks to pools, rather than directly generating them as function $x : V \rightarrow \mathbb{R} \times C$ . For a scheduling problem $X$ , the scheduling process is modeled as a Markov decision process (MDP), with the state represented by $s_t$ . At each decision step, the scheduler, using a neural network to implement $p_\theta(\pi_t | s_t, \pi_{ t_{cur}$ and set $t_{cur} = t_{next}$ .
+ end if
+ Update the dependency table and current resource.
+end while
+
+```
+
+---
+
+Here, $b(X)$ is a baseline for reducing the variance and is taken as average rewards.
+
+## 4 SCHEDULE WITH SKIP TO FIX GAPS
+
+We design a method to introduce the skip action, which is defined as advancing time $t_{cur}$ to the next task completion time, in our single-pass network framework. In this section, we demonstrate and analyze how the skip action enhances scheduling performance in characteristic cases by closing the optimality gap. We also provide a criterion for determining whether a generation map can generate optimal schedules and investigating which cases skip benefits most.
+
+### 4.1 REDUCED SPACE
+
+The scheduling problem can be formulated as an MILP problem. In Section 2, the concept of feasible schedule is introduced. For brevity, we denote the space of all such schedules as the original space $A$ . In the MDP formulation, action sequences do not directly generate a feasible schedule; instead, they correspond to schedule orders in a discrete space $B$ and the scores generated by the neural network represent point (in greedy way) or distributions (in sampling way) on $B$ , as detailed in Appendix A. We refer to the discrete space $B$ as the reduced space, whose point can be characterized by all task orders and pool allocations. Naturally, there exists a map $T : A \rightarrow B$ that associates each feasible schedule with its schedule order in $B$ . A feasible schedule order is the legal order lying in the feasible reduced space $B_f = T(A) \subset B$ . Obtaining a feasible schedule from a schedule order in $B_f$ requires a generation map to $A$ . Most heuristic and neural schedulers employ the list scheduling $S_{list} : B \rightarrow A$ described in Section 2, which is effective for generating sub-optimal schedules. However, we prove in Appendix A that, in certain cases, list scheduling cannot yield an optimal schedule. We further find this theoretical gap leads to a significant performance decrease in some cases, as it prioritizes tasks meeting current resource availability. This prioritization creates a preference for delaying resource-intensive tasks and significantly impacts cases with heavy tasks featured by extreme resource demands and running times. Our experimental results in Appendix C further show that as the rate of heavy task increases, the gap also increases.
+
+### 4.2 FINDING OPTIMUM WITH SURJECTION
+
+Our theoretical analysis and illustrative examples show that the inherent optimality gap of $S_{list}$ arises because $TS_{list}$ is neither the identity nor surjective. As a result, $S_{list}$ maps multiple points in $B$ to the same point in $A$ , shrinking its image and excluding the optimal solution. To construct a map $S : B_f \rightarrow A$ whose image includes the optimal solution, a projection between $A$ and $B_f$ associating each subspace of $A$ with a point in $B_f$ helps. Such maps must satisfy the following requirements.
+
+{6}------------------------------------------------
+
+**Assumption 1.** (1) $TS = I$ . This ensures that $T$ and $S$ provide an embedding of feasible reduced space $B_f$ into $A$ , while $ST$ serves as a projection.
+
+(2) $f(v) \geq f(ST(v)), \forall v$ . The map $ST(v)$ minimizes the objective function $f$ within subspace $T^{-1}(T(v))$ .
+
+These properties ensure that $S$ embeds the feasible reduced space as a projection space for $A$ , and the following theorem shows that such a map $S$ can be used to find the optimal solution.
+
+**Theorem 2.** Let $S : B \rightarrow A$ be a generation map satisfying Assumption 1. For any optimal solution $x$ , there exists an optimal solution $y \in \text{Image}(S)$ and $T(y) = T(x)$ .
+
+We provide the proof and construct a map $S_n$ satisfying Assumption 1 in Appendix A. The map $S_n$ extends list scheduling by relaxing certain constraints to allow waiting. However, although $S_n$ includes the optimal solution, it also produces many inferior solutions scattered across the reduced space. This is because the mapping $S_n$ allows arbitrary idle time, resulting in a large variance of makespan, hindering the training of scheduling policies. Therefore, instead of using $S_n$ directly, we enlarge $B_f$ to include skip actions, lift $S_{list}$ to a map $S$ on the enlarged space, and modify $T$ accordingly; the resulting $(B_f, T, S)$ meet Assumption 1. Moreover, our design clusters most poor solutions in the high- $u_a$ , high- $u_c$ region, because excessive skips typically arise from large values of $u_a$ and $u_c$ , rather than scattering them across the space; this concentration makes such regions easier to handle during training and reduces variance. Theorem 1 demonstrates that our design in the single-pass setting ensures that $TS$ is a surjection, enabling the generation of the optimal schedule while retaining high inference speed. Our experiments results in Appendix C further validate the effectiveness of this design, revealing that the skip benefits more when the percentage of heavy tasks increases. Therefore, our design enhances the ability to find the optimal schedules, leading to enhanced performance in heavy task cases without sacrificing computational efficiency or significantly increasing the variance in training outcomes by clustering poor solutions.
+
+## 5 NUMERICAL EXPERIMENTS
+
+### 5.1 DATASET AND ENVIRONMENT SETTINGS
+
+**Datasets.** i) *TPC-H dataset*: a dataset that comprises real-world DAG tasks derived from industrial queries. We use the version sorted by Wang et al. (2021), and add additional random memory constraints and task types (each with a group of compatibility coefficients). The problems in TPC-H-30, TPC-H-50, and TPC-H-100 contain 275, 459, and 918 tasks on average. ii) *Computation Graphs dataset*: a synthetic dataset generated using approaches from Jeon et al. (2023), comprising computation graphs for neural networks arising in ML compilers, including layer graphs, Erdős-Rényi graphs, and stochastic block model graphs. Each problem contains 500 tasks. Problems in both datasets are scheduled on three heterogeneous resource pools. The heterogeneous significantly multiple the problem size. Details of the two datasets and their problem size are shown in Appendix D.
+
+**Baselines.** We compare our method with the following baselines: list scheduling algorithms, including critical path (CP), shortest first task (SFT), and most operations remaining (MOPNR); Tetris (Grandl et al., 2014), a dynamic list scheduling heuristic for multi-resource pool scheduling; HEFT (Topcuoglu et al., 2002), a non-list heterogeneous scheduling algorithm; **Two RL baselines**: PPO-BiHyb (Wang et al., 2021), a bi-level neural scheduler with beam search; and One-Shot (Jeon et al., 2023), a one-shot neural scheduler generating schedules sequentially based on list scheduling. For the 4 list scheduling algorithms, we apply three pool-selection rules and select the one with the best makespan.
+
+We evaluate our method using two modes: greedy, which selects actions with the highest probability $p_\theta$ and sampling ( $S(n)$ ), which generates $n$ samples based on $p_\theta$ within our accelerated environment and selects the schedule with the minimum makespan. For each experiment, we report the makespan, running time or relative improvement over the best heuristic baseline, with further experimental details provided in Appendices D, E, and H.
+
+### 5.2 EXPERIMENTAL RESULTS
+
+On the TPC-H dataset, WeCAN demonstrates up to 18.1% makespan improvement over the best heuristic and 7.7% over the best neural baseline, with superior performance in instances with
+
+{7}------------------------------------------------
+
+Table 1: Experimental results on TPC-H datasets with standard deviation among random seed.
+
+| | TPC-H-30, 3 pools | | TPC-H-50, 3 pools | | TPC-H-100, 3 pools | |
+|-|-|-|-|-|-|-|
+| | MakeSpan | Time | MakeSpan | Time | MakeSpan | Time |
+| SFT | 27404 | 0.23 | 49172 | 0.78 | 84986 | 3.08 |
+| MOPNR | 25052 | 0.30 | 43545 | 0.99 | 77362 | 3.34 |
+| CP | 23869 | 0.29 | 41597 | 0.90 | 74364 | 3.35 |
+| HEFT | 23177 | 0.18 | 39315 | 0.54 | 70137 | 1.86 |
+| Tetris | 23170 | 0.21 | 38654 | 0.62 | 71296 | 2.13 |
+| PPO-BiHyb | 21941 | 20.48 | 36333 | 55.74 | 67695 | 179.19 |
+| One-Shot-S(256) | $20399 \pm 181$ | 2.26 | $35561 \pm 108$ | 4.16 | $66173 \pm 180$ | 9.85 |
+| WeCAN-Greedy | 19578 | 0.15 | 33428 | 0.50 | 62587 | 1.72 |
+| WeCAN-S(64) | $19053 \pm 28$ | 1.54 | $32912 \pm 40$ | 2.86 | $61662 \pm 118$ | 5.26 |
+| WeCAN-S(256) | | 2.43 | | 4.39 | | 10.43 |
+
+Table 2: Experimental results on Computation Graphs datasets with 500 tasks.
+
+| | Erdős-Rényi | | Layer Graphs | | Stochastic Block | |
+|-|-|-|-|-|-|-|
+| | MakeSpan | Time | MakeSpan | Time | MakeSpan | Time |
+| SFT | 13317 | 0.81 | 16158 | 0.34 | 14408 | 0.53 |
+| MOPNR | 12771 | 1.07 | 14714 | 0.38 | 13148 | 0.68 |
+| Tetris | 13084 | 0.52 | 14271 | 0.44 | 13666 | 0.64 |
+| CP | 12457 | 1.08 | 14797 | 0.40 | 13388 | 0.74 |
+| HEFT | 11098 | 0.55 | 12428 | 0.75 | 11260 | 0.57 |
+| PPO-BiHyb | 10795 | 65.51 | 11883 | 73.7 | 10885 | 73.7 |
+| One-Shot-S(256) | $11071 \pm 76$ | 4.45 | $12277 \pm 49$ | 3.83 | $11377 \pm 40$ | 4.00 |
+| WeCAN-Greedy | 10270 | 0.57 | 11173 | 0.26 | 10539 | 0.41 |
+| WeCAN-S(64) | $10115 \pm 10$ | 3.21 | $10862 \pm 29$ | 3.07 | $10074 \pm 18$ | 3.06 |
+| WeCAN-S(256) | | 4.94 | | 4.30 | | 4.58 |
+
+300~500 nodes and robust results for 1,000 nodes (see Table 1). Additionally, our results show that WeCAN excels at learning robust scheduling policies in complex heterogeneous environments, as evidenced by its performance across diverse TPC-H instances. Owing to single-pass neural processing, WeCAN-greedy achieves lower running time than PPO-BiHyb and comparable running time to One-Shot-greedy and heuristic baselines, while delivering superior makespan. This similarity in running time arises because, in heterogeneous environments, the generation map’s runtime dominates for both WeCAN and One-Shot, approaching the minimum time required to generate a schedule. Furthermore, we conduct experiments in varying resource environments to evaluate generalization from a fixed training environment. Figure 2 shows that our WeCAN shows robust performance under varying environment fluctuations including pool number, pool type (feature), task number, and task type. This result validates our WeCAN effectively utilizes the environment feature while remaining robust and scalable for environment sizes. We also provide results on large-scale problems and more environment fluctuations in Appendix F.
+
+In the Computation Graphs dataset, WeCAN demonstrates up to 13.4% makespan improvement over the best heuristic and 9.5% percent over the best neural baseline, with superior performance across different types of graphs (see Table 2). Given the prevalence of heterogeneous resource environments in ML compilers, our results demonstrate WeCAN’s applicability for efficient scheduling in neural network compilation.
+
+### 5.3 ABLATION STUDY
+
+We conduct ablation experiments to evaluate the contributions of WeCAN’s weighted cross-attention layers and longest directed distance graph neural network components. For WeCA layers, we test the inside version, WeCA layers only in decoder, its inside version, and WeCA layers skipped except in
+
+{8}------------------------------------------------
+
+Table 3: Ablation study results on TPC-H datasets with different architectures.
+
+| | TPC-H-30 | | TPC-H-50 | |
+|-|-|-|-|-|
+| | MakeSpan | Improvement | MakeSpan | Improvement |
+| Tetris | 23170 | 0.0% | 38654 | 0.0% |
+| WeCA + LDDGNN | 19908 ± 48 | 14.0 ± 0.2 % | 34260 ± 52 | 11.4 ± 0.1 % |
+| WeCA-inside + LDDGNN | 20729 ± 55 | 10.5 ± 0.2 % | 34980 ± 30 | 9.5 ± 0.1 % |
+| WeCA-decoder+ LDDGNN | 20234 ± 41 | 12.7 ± 0.2 % | 34815 ± 156 | 9.9 ± 0.4 % |
+| WeCA-decoder-inside+ LDDGNN | 21981 ± 195 | 5.1 ± 0.8 % | 36984 ± 72 | 4.3 ± 0.2 % |
+| WeCA-final-only + LDDGNN | 23066 ± 97 | 0.5 ± 0.3 % | 40308 ± 358 | -4.2 ± 0.9 % |
+| WeCA + GAT(forward) | 20747 ± 21 | 10.5 ± 0.1 % | 35224 ± 14 | 8.9 ± 0.1 % |
+| WeCA + GAT(bi-direction) | 20873 ± 7 | 9.9 ± 0.0 % | 35177 ± 20 | 9.0 ± 0.1 % |
+
+
+
+| Environment Fluctuation | WeCAN-S(256) Improvement (%) | OneShot-S(256) Improvement (%) |
+|-|-|-|
+| more pool | 20.4% | 9.2% |
+| more pool type | 6.7% | 0.9% |
+| more task | 14.3% | 6.0% |
+| more task type | 19.3% | 10.2% |
+
+Bar chart showing evaluations of models on TPC-H-30 with different environment fluctuations. The x-axis shows four categories: 'more pool', 'more pool type', 'more task', and 'more task type'. For each category, two bars are shown: WeCAN-S(256) (blue) and OneShot-S(256) (green). The percentage improvement over best heuristics is labeled above each bar.
+
+Figure 2: Evaluations of models on TPC-H-30 with different environment fluctuations under fixed training conditions. The percent of improvement over best heuristics are labeled.
+
+
+
+| Dataset | WeCAN-S(256) | WeCAN-inside-S(256) | PRO-BALM | WeCAN-S(256) | CP |
+|-|-|-|-|-|-|
+| TPC-H-30-heavy | 8.3% | 2.6% | 4.7% | -2.3% | -4.8% |
+| TPC-H-50-heavy | 8.9% | 3.4% | 4.5% | 0.0% | -3.9% |
+
+Bar chart showing ablation study results on TPC-H datasets with heavy tasks. The x-axis shows two datasets: 'TPC-H-30-heavy' and 'TPC-H-50-heavy'. For each dataset, five bars are shown: WeCAN-S(256) (blue), WeCAN-inside-S(256) (orange), PRO-BALM (yellow), WeCAN-S(256) (green), and CP (red). The percentage improvement over best heuristics HEFT are labeled above each bar.
+
+Figure 3: Ablation study results on TPC-H datasets with heavy tasks. The percent of improvement over best heuristics HEFT are labeled.
+
+the final decoder layer. For LDDGNN, we test a standard GAT (GAT forward) and a bidirectional GAT (GAT bidrection). All network variants share the same layer count and hidden dimensions, with fewer WeCA layers offset by additional LDDGNN layers. We train and test each model on TPC-H-30 and TPC-H-50. For each of 10 test problems, we generate 256 samples, computing mean makespan and relative improvement to the best heuristic (Tetris). Table 3 shows that replacing either component increases makespan and decreases relative improvement. The modified WeCA layers yields higher makespan, with skipping WeCA layers causing significantly worse performance, highlighting WeCA layers’ importance in capturing task-resource pool compatibility. Both GAT variants yield higher makespan than LDDGNN, demonstrating the superiority of LDDGNN.
+
+We conduct experiments to evaluate the skip-action mechanism on TPC-H with “heavy tasks” characterized by high resource demand and long processing time. We modify the TPC-H-30 and TPC-H-50 datasets by randomly replacing 1% tasks with “heavy tasks”. Figure 3 shows that HEFT (not list scheduling) achieves smaller makespan than the best list scheduling approach (CP). WeCAN with the skip action achieves lower makespan than its non-skipping variant and all other approaches. This result validates the optimality gap of list scheduling. It also reveals that the skip-action mechanism mitigates the optimality gap and increases the performance in cases with “heavy tasks”.
+
+## 6 CONCLUSION
+
+This paper presents WeCAN, an end-to-end reinforcement learning framework for heterogeneous DAG scheduling with task-pool compatibility. Weighted cross-attention layers enable WeCAN to fully utilize environment information while adapting to diverse problem sizes. Introducing skip-action in the single-pass setting closes optimality gap of list scheduling and improves performance in heavy task cases. Our theoretical analysis further highlights its importance, especially when heavy-task proportions are large. Evaluations on TPC-H and Computation Graphs datasets demonstrate WeCAN’s effectiveness for heterogeneous DAG scheduling with task-resource compatibility. Extending our WeCAN to address more complicated settings will be an interesting future research direction.
+
+{9}------------------------------------------------
+
+## REFERENCES
+
+- Mukul Gagrani, Corrado Rainone, Yang Yang, Harris Teague, Wonseok Jeon, Roberto Bondesan, Herke van Hoof, Christopher Lott, Weiliang Zeng, and Piero Zappi. Neural topological ordering for computation graphs. In *Advances in Neural Information Processing Systems*, volume 35, pp. 17327–17339. Curran Associates, Inc., 2022.
+- R. L. Graham. Bounds on multiprocessing timing anomalies. *SIAM Journal on Applied Mathematics*, 17(2):416–429, 1969. doi: 10.1137/0117039.
+- Robert Grandl, Ganesh Ananthanarayanan, Srikanth Kandula, Sriram Rao, and Aditya Akella. Multi-resource packing for cluster schedulers. In *Proceedings of the 2014 ACM Conference on SIGCOMM*, SIGCOMM '14, pp. 455–466, New York, NY, USA, 2014. Association for Computing Machinery. ISBN 9781450328364. doi: 10.1145/2619239.2626334.
+- Nathan Grinsztajn, Olivier Beaumont, Emmanuel Jeannot, and Philippe Preux. READYS: A reinforcement learning based strategy for heterogeneous dynamic scheduling. In *2021 IEEE International Conference on Cluster Computing (CLUSTER)*, pp. 70–81, 2021. doi: 10.1109/Cluster48925.2021.00031.
+- Juris Hartmanis. Computers and intractability: A guide to the theory of NP-Completeness (Michael R. Garey and David S. Johnson). *SIAM Review*, 24(1):90–91, 1982. doi: 10.1137/1024022.
+- R. Haupt. A survey of priority rule-based scheduling. *Operations-Research-Spektrum*, 11(1):3–16, Mar 1989. ISSN 1436-6304. doi: 10.1007/BF01721162.
+- Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In *2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)*, pp. 770–778, 2016. doi: 10.1109/CVPR.2016.90.
+- J. J. Hopfield and D. W. Tank. "Neural" computation of decisions in optimization problems. *Biol. Cybern.*, 52(3):141–152, July 1985. ISSN 0340-1200.
+- Qingchun Hou, Jingwei Yang, Yiqiang Su, Xiaoqing Wang, and Yuming Deng. Generalize learned heuristics to solve large-scale vehicle routing problems in real-time. In *The Eleventh International Conference on Learning Representations*, 2023.
+- Wonseok Jeon, Mukul Gagrani, Burak Barton, Weiliang Will Zeng, Harris Teague, Piero Zappi, and Christopher Lott. Neural DAG scheduling via one-shot priority sampling. In *The Eleventh International Conference on Learning Representations*, 2023.
+- Wouter Kool, Herke van Hoof, and Max Welling. Attention, learn to solve routing problems! In *International Conference on Learning Representations*, 2019.
+- Yeong-Dae Kwon, Jinho Choo, Byoungjip Kim, Iljoo Yoon, Youngjune Gwon, and Seungjai Min. POMO: Policy optimization with multiple optima for reinforcement learning. *Advances in Neural Information Processing Systems*, 33:21188–21198, 2020.
+- Sirui Li, Zhongxia Yan, and Cathy Wu. Learning to delegate for large-scale vehicle routing. *Advances in Neural Information Processing Systems*, 34:26198–26211, 2021.
+- Tiangang Li, Shi Ying, Yishi Zhao, and Jianga Shang. Batch jobs load balancing scheduling in cloud computing using distributional reinforcement learning. *IEEE Transactions on Parallel and Distributed Systems*, 35(1):169–185, 2024. doi: 10.1109/TPDS.2023.3334519.
+- Liduo Lin, Li Pan, and Shijun Liu. SpotDAG: An RL-based algorithm for DAG workflow scheduling in heterogeneous cloud environments. *IEEE Transactions on Services Computing*, 17(5):2904–2917, 2024. doi: 10.1109/TSC.2024.3422828.
+- Fei Liu, Xi Lin, Zhenkun Wang, Qingfu Zhang, Tong Xialiang, and Mingxuan Yuan. Multi-task learning for routing problem with cross-problem zero-shot generalization. In *Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining*, pp. 1898–1908, 2024.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/Mz98kwANpF.txt b/papers/Mz98kwANpF.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f5869eebd539de645f8a37a1e88923f786e4fc46
--- /dev/null
+++ b/papers/Mz98kwANpF.txt
@@ -0,0 +1,288 @@
+
+
+{0}------------------------------------------------
+
+# ALIGN, DON’T DIVIDE: REVISITING THE LORA ARCHITECTURE IN MULTI-TASK LEARNING
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Parameter-Efficient Fine-Tuning (PEFT) is essential for adapting Large Language Models (LLMs). In practice, LLMs are often required to handle a diverse set of tasks from multiple domains, a scenario naturally addressed by multi-task learning (MTL). Within this MTL context, a prevailing trend involves LoRA variants with multiple adapters or heads, which advocate for structural diversity to capture task-specific knowledge. Our findings present a direct challenge to this paradigm. We first show that a simplified multi-head architecture with high inter-head similarity substantially outperforms complex multi-adapter and multi-head systems. This leads us to question the multi-component paradigm itself, and we further demonstrate that a standard single-adapter LoRA, with a sufficiently increased rank, also achieves highly competitive performance. These results lead us to a new hypothesis: learning task-shared representations provides a highly effective and promising path towards multi-task learning, offering a powerful alternative to the architectural isolation of task-specific features. To validate this, we propose Align-LoRA, which incorporates an explicit loss to align task representations within the shared adapter space. Theoretical analysis and experiments confirm that Align-LoRA significantly surpasses baselines, establishing a simpler yet more effective paradigm for adapting LLMs to multiple tasks. The code is available anonymously.
+
+## 1 INTRODUCTION
+
+In recent years, large language models (LLMs) have demonstrated unprecedented performance across a wide range of natural language processing (NLP) tasks (Brown, 2020; Zhao et al., 2023; Chang et al., 2024b). Despite their strong generalization abilities, LLMs often require further adaptation to align with domain-specific requirements or to incorporate updated knowledge (Agiza et al., 2024; Xin et al., 2024). Supervised fine-tuning (SFT) plays a critical role in this process, but full parameter fine-tuning (FFT), which updates all model parameters, poses significant challenges in terms of computational and memory costs (Mao et al., 2025).
+
+To address these demands, parameter-efficient fine-tuning (PEFT) methods have been proposed to adapt LLMs by updating only a small subset of parameters (Han et al., 2024; Chang et al., 2024a). Among these, Low-Rank Adaptation (LoRA) (Hu et al., 2021) has become a widely adopted approach. It approximates the full-rank weight update matrix by decomposing it into two low-rank matrices: a down-projection matrix $A$ and an up-projection matrix $B$ . In practice, adapting LLMs often involves data from multiple domains or tasks, naturally aligning with the multi-task learning (MTL) paradigm.
+
+Consequently, this has motivated the development of LoRA variants specifically designed for MTL. An early approach is the Multi-Adapter architecture, which employs multiple, distinct pairs of down-projection ( $A$ ) and up-projection ( $B$ ) matrices for different tasks (Wang et al., 2023). To improve parameter efficiency, the Multi-Head architecture was introduced, typically sharing a single $A$ matrix while maintaining multiple task-specific head matrices ( $B$ ) (Tian et al., 2024). Furthermore, many of these multi-component architectures employ a routing mechanism, inspired by the Mixture-of-Experts (MoE) framework, to dynamically select or weigh the outputs of different adapters for a given input. Recent prevalent methods like R-LoRA (Liu et al., 2025) further refine this by explicitly encouraging diversity among heads to mitigate redundancy. **Despite architectural differences,**
+
+{1}------------------------------------------------
+
+these methods are all built on a common premise: that effective multi-task adaptation requires architectural isolation of task-specific knowledge.
+
+However, this pursuit of architectural isolation introduces a significant practical drawback. The specialized components cannot be merged into the backbone model, resulting in non-negligible inference latency from their processing in every forward pass. Motivated by this trade-off, our work begins with an empirical re-evaluation of this premise, seeking a multi-task adaptation method that eliminates such a latency penalty. We first reveal a paradoxical finding: by simplifying a complex multi-head architecture into a model we term M-LoRA (which removes the dynamic router), we observe that its performance surpasses its more complex counterparts. This occurs despite the simplified model exhibiting higher inter-head similarity, a result that directly challenges the prevailing assumption that component diversity is beneficial. This outcome led us to a more fundamental question: **Is the multi-component structure truly necessary for effective multi-task adaptation?**
+
+In pursuit of an answer, we discovered that merely increasing the rank of a standard, single-adapter LoRA is sufficient to match or even outperform these intricate multi-component variants. Collectively, the findings that a simplified multi-head model excels and that a high-rank single-head model is equally or more effective point to a new and unexplored hypothesis: **learning task-shared representations provides a highly effective and promising path towards multi-task learning, offering a powerful alternative to the architectural isolation of task-specific features.** To directly validate this hypothesis and operationalize this principle, we propose Align-LoRA. This method enhances a standard LoRA by augmenting its training objective with a component based on the Kullback-Leibler (KL) Divergence (Kullback & Leibler, 1951), which encourages the alignment of task representations in the shared low-rank space without adding parameters or inference overhead.
+
+Our key contributions are fourfold:
+
+- We demonstrate that a simplified multi-head LoRA (**M-LoRA**) with high head similarity outperforms complex variants, challenging the prevailing assumption that architectural isolation of task-specific knowledge is necessary.
+- We show that simply **increasing the rank** of a standard LoRA can match the performance of multi-component architectures, questioning their fundamental necessity for multi-task learning.
+- We propose a new hypothesis: learning task-shared representations provides a highly effective and promising path towards multi-task learning, offering a powerful alternative to the architectural isolation of task-specific features.
+- We introduce **Align-LoRA**, a novel method that validates our hypothesis by explicitly aligning representations, achieving superior performance and setting a new direction for multi-task PEFT.
+
+## 2 RELATED WORKS
+
+### 2.1 LOW-RANK ADAPTATION (LoRA)
+
+Current LLMs typically adopt a decoder-only architecture, consisting of stacked transformer blocks (Zhao et al., 2023). Each block contains two core components with residual connections: a multi-head self-attention (MHA) layer and a feed-forward network (FFN) (Vaswani, 2017). Both layers rely on dense learnable weight matrices $\mathbf{W}$ for feature transformation.
+
+To efficiently adapt LLMs under resource constraints, LoRA (Hu et al., 2021) offers an effective solution. It is inspired by the hypothesis that the intrinsic dimensionality of weight updates in LLMs is low. LoRA approximates the weight update $\Delta\mathbf{W}$ using two low-rank matrices $\mathbf{A} \in \mathbb{R}^{r \times n}$ and $\mathbf{B} \in \mathbb{R}^{m \times r}$ , where $\mathbf{W} \in \mathbb{R}^{m \times n}$ is the original weight matrix. The rank $r$ is chosen to be significantly smaller than $\min(m, n)$ , reducing the number of trainable parameters from $\mathcal{O}(mn)$ to $\mathcal{O}(r(m+n))$ . The forward pass is modified as follows:
+
+$$h = (\mathbf{W} + \Delta\mathbf{W})x = \mathbf{W}x + \mathbf{B}\mathbf{A}x, \quad (1)$$
+
+where $\Delta\mathbf{W} = \mathbf{B}\mathbf{A}$ denotes the low-rank update. A key advantage of LoRA is that after training, the low-rank update $\Delta\mathbf{W}$ can be merged back into the original weights $\mathbf{W}$ , introducing zero inference overhead.
+
+{2}------------------------------------------------
+
+
+
+Figure 1: A comparison of LoRA architectural paradigms. (a) Vanilla LoRA: A single input arrow points to a pair of matrices A and B. (b) The Multi-Adapter framework: A single input arrow points to a shared matrix A, which then branches into multiple parallel adapter pairs (B1, A1), (B2, A2), ..., (Bn, An). (c) The Multi-Head framework: A single input arrow points to a shared matrix A, which then branches into multiple parallel head matrices B1, B2, ..., Bn. All three diagrams are enclosed in a dashed green box.
+
+Figure 1: A comparison of LoRA architectural paradigms: (a) Vanilla LoRA; (b) the Multi-Adapter framework; and (c) the Multi-Head framework. The categorization of the multi-component architectures is adapted from R-LoRA (Liu et al., 2025). A common feature of these multi-component designs is the inclusion of a dynamic routing mechanism.
+
+Several works have built upon the original LoRA framework. AdaLoRA (Zhang et al., 2023) dynamically allocates the rank budget, while DoRA (Liu et al., 2024b) decomposes weight updates into magnitude and direction. Other methods like PiSSA (Meng et al., 2025) and NLoRA (Guo et al., 2025) have focused on improving performance through better initialization and decomposition strategies, highlighting the ongoing effort to enhance LoRA’s effectiveness.
+
+### 2.2 MULTI-COMPONENT LORA
+
+To adapt LoRA for multi-task learning (MTL), a natural extension is to employ multiple trainable components. Early works proposed the **Multi-Adapter** architecture, which utilizes multiple independent LoRA adapters (i.e., distinct $B_i A_i$ pairs) for different tasks. Notable examples of this approach include Multi-LoRA (Wang et al., 2023), MixLoRA (Li et al., 2024), LoRAMoE (Dou et al., 2023), MoELoRA (Liu et al., 2024a), and LoRAHub (Huang et al., 2023).
+
+The **Multi-Head** architecture was developed to improve parameter efficiency, driven by the key insight that LoRA’s matrices have distinct roles. It was observed that down-projection matrices ( $A$ ) capture redundant, **task-general knowledge**, while up-projection matrices ( $B$ ) learn diverse, **task-specific features**. Consequently, the Multi-Head design, exemplified by methods like HydraLoRA (Tian et al., 2024), MALoRA (Wang et al., 2024), MTLLoRA (Agiza et al., 2024), and R-LoRA (Liu et al., 2025), employs a single shared $A$ matrix with multiple distinct $B_i$ heads. To further enhance task specialization within this paradigm, R-LoRA introduced a randomization technique to also reduce similarity among the head matrices. Figure 1 illustrates the architectural differences between three key paradigms: the original LoRA, the multi-adapter architecture, and the multi-head architecture.
+
+The **Multi-Head** architecture, exemplified by methods like HydraLoRA (Tian et al., 2024) and R-LoRA (Liu et al., 2025), uses a shared down-projection matrix $A$ and multiple head matrices $B_i$ . The aggregated weight update in this structure is a dynamically weighted sum of each head’s output:
+
+$$\Delta W = \sum_{i=1}^N \omega_i(\mathbf{x}) \cdot B_i A. \quad (2)$$
+
+Drawing inspiration from the Mixture-of-Experts (MoE) framework, this dynamic routing mechanism employs a learnable routing matrix $W_r$ and a gating function, such as softmax or Top-K, to assign weights to each “expert” adapter based on the input $\mathbf{x}$ . The widely used softmax-based router is formulated as:
+
+$$\omega(\mathbf{x}) = \text{Softmax}(W_r \mathbf{x}). \quad (3)$$
+
+However, this complexity introduces a critical trade-off. A significant drawback of input-dependent routing is that the aggregated update $\Delta W$ can no longer be pre-computed. Consequently, the adapter weights **cannot be merged** into the frozen backbone model post-training. This results in **non-negligible inference latency**, as the router and multiple heads must be processed for each forward pass, sacrificing one of LoRA’s most significant practical advantages.
+
+{3}------------------------------------------------
+
+
+
+Figure 2: Distribution of Head Similarity by Layer. A box plot showing the distribution of inter-head cosine similarity across three model modules: down\_proj, up\_proj, and gate\_proj. For each module, three box plots are shown for HydraLoRA (blue), R-LoRA (pink), and M-LoRA (purple). The y-axis represents Similarity, ranging from 0.1 to 0.9. The x-axis labels are 'down\_proj', 'up\_proj', and 'gate\_proj', with 'Module' written below 'up\_proj'. In all modules, M-LoRA shows the highest similarity (median around 0.85), followed by R-LoRA (median around 0.7), and HydraLoRA shows the lowest similarity (median around 0.68).
+
+Figure 2: Distribution of inter-head cosine similarity across different model modules. Within each module, the box plots from left to right correspond to HydraLoRA, R-LoRA, and M-LoRA, respectively. The solid line within each box indicates the median similarity, while the dashed line represents the mean.
+
+## 3 OBSERVATIONS
+
+In this section, we critically examine the prevailing assumption that component diversity is essential for effective multi-task adaptation with LoRA. By questioning the fundamental necessity of the prevalent multi-head paradigm, our investigation leads to a new hypothesis centered on the pivotal role of shared knowledge.
+
+### 3.1 M-LoRA: A SIMPLIFIED VARIANT
+
+Prevalent methods like R-LoRA (Liu et al., 2025) are built on the premise that encouraging diversity among adapter heads is crucial for capturing distinct, task-specific knowledge. To directly test the hypothesis on head diversity, we propose **M-LoRA** (Base Multi-Head LoRA), a minimal ablation variant of R-LoRA. While preserving R-LoRA’s core designs, such as multi-head randomization for initialization and input differentiation via Dropout, M-LoRA’s sole architectural change is the removal of the dynamic routing module. Instead, it aggregates the outputs of its head matrices by simple summation, allowing us to directly study the effect of eliminating explicit, input-dependent diversification. The framework of M-LoRA is provided in the Appendix B.
+
+### 3.2 THE PARADOX OF DIVERSITY: LESS IS MORE
+
+We fine-tune the Qwen2.5-3B (Qwen Team, 2024) model using HydraLoRA, R-LoRA, and M-LoRA on a benchmark comprising five distinct tasks: QNLI (Wang, 2018), PiQA (Bisk et al., 2020), Winogrande (Sakaguchi et al., 2021), ARC (easy & challenge) (Clark et al., 2018), and GSM8K (Cobbe et al., 2021). To quantify inter-head similarity, we compute a matrix of pairwise cosine similarities between all flattened head vectors ( $\mathbf{B}_i$ ). The final metric is the mean of this matrix’s off-diagonal values. All Experimental details in this work, including implementation specifics, hyperparameter settings, dataset descriptions, baseline configurations, and other relevant information, are documented in the Appendix G.
+
+Our findings reveal a paradox regarding the role of head diversity in multi-task adaptation. Figure 2, which plots the inter-head cosine similarity, shows that R-LoRA successfully achieves its design goal of maximizing diversity, exhibiting the lowest similarity. In stark contrast, M-LoRA, which lacks any diversity-enforcing mechanism, displays the opposite effect, yielding a high degree
+
+{4}------------------------------------------------
+
+| Schemes | QNLI | PIQA | Winogrande | ARC | GSM8K | Avg | %Para |
+|-|-|-|-|-|-|-|-|
+| HydraLoRA | 81.91 | 84.21 | 70.92 | 87.21 | 45.95 | 74.04 | 0.45 |
+| w/o Router | 81.33 | 83.51 | 70.14 | 86.46 | 45.35 | 73.58 | 0.41 |
+| R-LoRA | 82.03 | 85.55 | 71.84 | 87.69 | 46.25 | 74.67 | 0.45 |
+| M-LoRA | 82.52 | 86.76 | 72.95 | 88.15 | 46.85 | 75.45 | 0.41 |
+
+Table 1: Comparative study of several multi-head LoRA variants across five tasks.
+
+of head redundancy with similarity medians consistently exceeding 0.85. Paradoxically, as demonstrated in Table 1, this high-redundancy model achieves superior multi-task performance. Despite its architectural simplicity, M-LoRA consistently and significantly outperforms the more complex HydraLoRA and R-LoRA. This outcome presents a fundamental contradiction to the philosophy of prior work: the architectural configuration that seemingly violates the principle of head diversity actually enhances multi-task generalization.
+
+### 3.3 TASK-SHARED VS. TASK-SPECIFIC LEARNING
+
+This section seeks to explain the surprising effectiveness of M-LoRA. Its strong multi-task generalization, achieved despite high inter-head similarity, challenges conventional assumptions and offers a new perspective on the core principles of multi-task adaptation in LoRA. Improving multi-task learning (MTL) has largely followed two distinct paths: isolating **task-specific** knowledge to mitigate interference, or enhancing **task-shared** knowledge to improve generalization. To date, the predominant focus has been on the former. Recent multi-task LoRA methods, such as LoRA MoE (Dou et al., 2023) and R-LoRA (Liu et al., 2025), have predominantly focused on isolating task-specific knowledge. **In contrast, the alternative path of actively enhancing task-shared knowledge within the LoRA framework has remained unexplored.**
+
+**M-LoRA** challenges this specialization-focused paradigm. We hypothesize that the high similarity is not a sign of failed specialization, but a feature derived from the architecture’s implicit regularization. The key mechanism is the interplay between removing the router and retaining the multi-head dropout. In models like R-LoRA, the heads are treated as competing “specialists,” and the dynamic router attempts to select the single best expert, which can often lead to redundancy or load imbalance. In contrast, by replacing the dynamic router with simple averaging, M-LoRA compels the multiple **B** heads to form a collaborative ensemble. As illustrated in Figure 4, M-LoRA achieves this by retaining the multi-head dropout mechanism from R-LoRA (Liu et al., 2025). The dropout forces each head to learn from a slightly different input perspective. By forcing all heads to contribute (via summation), they are compelled to converge on a robust, task-general representation that works well from all perspectives.
+
+To validate this mechanism, we performed an ablation on a non-dropout multi-head variant, HydraLoRA. As shown in Table 1, removing the router from HydraLoRA (“w/o Router”) causes its average performance to drop, while M-LoRA’s collaborative ensemble achieves the highest performance among tested variants. This strongly confirms that the multi-head dropout is the critical factor that, when combined with router removal, transforms the heads from isolated “specialists” into effective “collaborators” and significantly enhances task-general learning.
+
+The success of M-LoRA suggests a revised viewpoint: **learning task-shared representations provides a highly effective and promising path towards multi-task learning, offering a powerful alternative to the architectural isolation of task-specific features.**
+
+## 4 INCREASING RANK: A UNIFIED ADAPTER
+
+Given M-LoRA’s strong performance with highly redundant heads, which largely learn shared knowledge, this section explores a critical question: Is the multi-head architecture itself truly necessary for multi-task generalization, or does it merely serve as a means to increase total trainable parameters rather than offering genuine benefits?
+
+To test this, we design a straightforward yet powerful experiment. We abandon the multi-component structure entirely and instead use a standard, single-adapter LoRA. We reallocate the entire parame-
+
+{5}------------------------------------------------
+
+Table 2: Comparison of different training schemes on LLaMA2. All variants use a LoRA rank of 8, except LoRA†(rank=30, adjusted to match multi-head variants’ trainable parameter count). \* indicates results from Tian et al. (2024).
+
+| Metrics | Base | LoRA | LoRAHub* | LoRA MoE* | HydraLoRA | R-LoRA | LoRA † | M-LoRA |
+|-|-|-|-|-|-|-|-|-|
+| 7B | 31.61 | 37.05 | 39.70 | 40.30 | 41.46 | 42.24 | 42.21 | 42.83 |
+| 13B | 38.42 | 40.73 | 41.90 | 43.70 | 44.31 | 44.96 | 45.02 | 46.16 |
+| % Param | - | 0.06 | 1.24 | 2.98 | 0.34 | 0.34 | 0.34 | 0.32 |
+
+Table 3: Comparison of different training schemes on Qwen2.5. The superscript in “LoRA” (e.g., 4, 8, etc.) indicates the rank value used for each variant.
+
+| Metrics | Base | LoRA 4 | LoRA 8 | LoRA 9 | LoRA 10 | HydraLoRA | R-LoRA | M-LoRA |
+|-|-|-|-|-|-|-|-|-|
+| 7B | 39.82 | 43.21 | 46.66 | 48.18 | 49.51 | 49.12 | 49.51 | 49.74 |
+| 14B | 45.33 | 48.18 | 51.82 | 52.74 | 54.23 | 53.76 | 54.08 | 54.18 |
+| Rank | - | 4 | 8 | 9 | 10 | 4 | 4 | 4 |
+| % Param | - | 0.10 | 0.20 | 0.22 | 0.25 | 0.25 | 0.25 | 0.22 |
+
+ter budget of the complex variants into this single adapter by simply increasing its rank, $r$ . Following the experimental setup of HydraLoRA (Tian et al., 2024), we conduct fine-tuning on a curated subset of the Flanv2 dataset (Liu et al., 2022). This training data is sampled from dozens of individual datasets and organized into ten distinct task categories, providing comprehensive training across both Natural Language Understanding and Natural Language Generation capabilities. We then evaluate the models’ multi-task generalization on the challenging Big-Bench Hard(BBH) benchmark (Suzgun et al., 2022), which is designed to test generalization.
+
+The results, presented in Table 2 and Table 3, reveal a clear trend. Across different base models, including LLaMA2 (Touvron et al., 2023) and Qwen2.5 (Qwen Team, 2024), the performance of a standard LoRA adapter consistently improves with its rank. Crucially, when its rank is scaled to a comparable parameter count, a simple, single-adapter LoRA achieves performance that is competitive with, and at times superior to, sophisticated multi-component architectures such as LoRA-Hub (Huang et al., 2023), LoRA MoE (Liu et al., 2024a), HydraLoRA (Tian et al., 2024), and R-LoRA (Liu et al., 2025).
+
+This finding provides compelling evidence that **the architectural complexity of multi-adapter designs may not be a prerequisite for achieving strong multi-task generalization**. Our results indicate that a simple, unified adapter with sufficient capacity delivers comparable performance. This challenges not only the trend toward elaborate structures but also the underlying strategy of isolating task-specific features, suggesting it is a less effective path to generalization than previously assumed and that the research focus on specialized components may warrant reconsideration.
+
+## 5 BEYOND RANK: REPRESENTATION ALIGNMENT
+
+Our investigation in the preceding sections has led to two critical conclusions. First, based on our analysis in Section 3, we formed a guiding hypothesis: learning task-general, shared knowledge may be more critical than enforcing task-specific separation. Second, our findings demonstrate that the architectural complexity introduced by multi-component designs is unnecessary for achieving strong multi-task generalization. This calls into question the prevailing assumption that specialized structures are a prerequisite for effective multi-task learning.
+
+These conclusions motivate a shift in our approach. Moving away from structural complexity, we adopt the standard, high-rank LoRA architecture as a rational and efficient baseline. This simplification, however, raises a more fundamental inquiry: How can we move beyond merely increasing the rank and take a more principled step towards better multi-task learning? This leads us to the two central questions addressed in this work:
+
+1. How can we validate our hypothesis about the primacy of shared knowledge?
+
+{6}------------------------------------------------
+
+2. How can we design a mechanism to explicitly enhance the learning of these shared representations within a single, unified LoRA adapter?
+
+To address these questions, we introduce **Align-LoRA**, a novel framework as follows.
+
+### 5.1 ALIGN-LoRA
+
+To enhance multi-task generalization, we introduce **Align-LoRA**, a method that encourages the model to learn task-shared features. Align-LoRA introduces an alignment loss, $\mathcal{L}_{\text{align}}$ , to explicitly minimize the statistical distance between the low-dimensional representations generated by the shared LoRA down-projection matrix, **A**. **To the best of our knowledge, this is the first work to systematically apply statistical distance metrics for this purpose within the multi-task LoRA framework**, drawing inspiration from their foundational use in domain adaptation (Pan et al., 2010).
+
+Our primary approach instantiates $\mathcal{L}_{\text{align}}$ using the **Kullback-Leibler (KL) divergence** (Kullback & Leibler, 1951), a classic statistical method for measuring the distance between distributions. However, we hypothesize that the principle of aligning representations is broadly applicable and not contingent on a single metric. To validate this, we introduce a variant that employs the multi-kernel **Maximum Mean Discrepancy (MK-MMD)** (Gretton et al., 2012). The strong performance of both instantiations, as we will demonstrate, validates our core thesis: that explicitly aligning the low-dimensional representations of different tasks is a robust and viable strategy. The formulation for MK-MMD is detailed in Appendix E.
+
+Let $\mathcal{T} = \{T_1, T_2, \dots, T_M\}$ be a set of $M$ tasks. For an input $\mathbf{x}$ from task $T_i$ with contextualized embeddings $\tilde{X}_{T_i}$ , the representation we align is the output of the down-projection matrix:
+
+$$\phi_{T_i}(\mathbf{x}) = \mathbf{A} \cdot \tilde{X}_{T_i}. \quad (4)$$
+
+Our choice to operate on this rank- $r$ latent space is motivated by two key factors. First, it directly targets the component responsible for shared knowledge. Recent studies have consistently found that the down-projection matrix **A** tends to learn task-general features while the up-projection matrix **B** captures task-specific knowledge (Agiza et al., 2024; Wang et al., 2024; Tian et al., 2024). By applying our alignment loss to the output of **A**, we directly enhance its natural function, promoting the development of robust, shared representations. Second, this approach is highly efficient. As demonstrated in prior work (Liu et al., 2025), performing operations in the low-dimensional space significantly reduces computational load and GPU memory demand, ensuring our method’s practicality.
+
+To measure and minimize the distance between the representation distributions from different tasks, we model the batch-wise distribution for each task $T_i$ as a multivariate Gaussian with a diagonal covariance matrix, $\mathcal{N}(\boldsymbol{\mu}_i, \text{diag}(\boldsymbol{\sigma}_i^2))$ . The mean $\boldsymbol{\mu}_i$ and variance $\boldsymbol{\sigma}_i^2$ are empirically estimated from the output vectors $\{\phi_{T_i}(\mathbf{x})\}$ in a given batch. Since standard KL divergence is asymmetric, we employ a symmetric formulation. The total alignment loss, $\mathcal{L}_{\text{KL}}$ , is the sum of these symmetric pairwise divergences across all unique task pairs $(T_i, T_j)$ where $i < j$ :
+
+$$\mathcal{L}_{\text{KL}} = \sum_{i=1}^M \sum_{j=i+1}^M \frac{1}{2} (D_{\text{KL}}(p_{T_i} \| p_{T_j}) + D_{\text{KL}}(p_{T_j} \| p_{T_i})), \quad (5)$$
+
+where $p_{T_i}$ is the modeled Gaussian distribution over the low-dimensional representations of task $T_i$ . This loss drives the empirical mean and variance of each task’s distribution toward a common value.
+
+The alignment loss is incorporated as an auxiliary objective to the primary language modeling task. The total loss function is therefore defined as:
+
+$$\mathcal{L}_{\text{total}} = \mathcal{L}_{\text{lm}} + \lambda \cdot \mathcal{L}_{\text{align}}, \quad (6)$$
+
+where $\mathcal{L}_{\text{lm}}$ is the primary language modeling loss, $\mathcal{L}_{\text{align}}$ is the auxiliary alignment loss ( $\mathcal{L}_{\text{KL}}$ ), and $\lambda$ is a scalar hyperparameter controlling the influence of the auxiliary task.
+
+A key advantage of Align-LoRA is its compatibility with various LoRA-based strategies and initialization schemes. Importantly, unlike multi-component LoRA variants, Align-LoRA introduces no additional modules that increase overhead. Consequently, its trained weights can be merged directly into the base model, incurring **zero inference latency**. This property ensures both efficiency and practicality, making Align-LoRA a lightweight yet effective solution for multi-task adaptation. For a more detailed analysis of this inference efficiency, please refer to Appendix C.
+
+{7}------------------------------------------------
+
+Table 4: Multi-task generalization performance of different LoRA variants on the BBH benchmark, evaluated across three base models ranging from 7B to 14B. “% Param” refers to the percentage of parameters that are trainable. Align-LoRA (A-LoRA) demonstrates a clear advantage over the other variants, highlighting its strong capabilities for multi-task generalization.
+
+| Metrics | LoRA | LoRAMoE | HydraLoRA | R-LoRA | M-LoRA | A-LoRA-M | A-LoRA-K |
+|-|-|-|-|-|-|-|-|
+| Qwen2.5-7B | 48.36 | 47.18 | 47.38 | 48.32 | 48.44 | 47.53 | 50.28 |
+| LLaMA3-8B | 44.89 | 44.18 | 44.03 | 45.01 | 45.35 | 45.42 | 48.84 |
+| Qwen2.5-14B | 52.93 | 50.74 | 51.92 | 52.21 | 53.78 | 52.24 | 55.11 |
+| Rank | 10 | 4 | 4 | 4 | 4 | 8 | 8 |
+| % Param | 0.25 | 0.38 | 0.25 | 0.25 | 0.22 | 0.20 | 0.20 |
+
+Table 5: Performance comparison on an 8-task multi-task reasoning benchmark, evaluated on the Qwen2.5-3B and Qwen2.5-7B models. Baselines include the original LoRA and several multi-component variants. Our proposed Align-LoRA (A-LoRA) consistently achieves significantly superior performance, demonstrating its strong multi-task generalization capabilities.
+
+| Schemes | Task1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Avg | %Par |
+|-|-|-|-|-|-|-|-|-|-|-|
+| Qwen2.5-3B | | | | | | | | | | |
+| LoRA | 86.31 | 56.42 | 84.65 | 72.76 | 91.37 | 87.91 | 87.60 | 44.80 | 76.48 | 0.45 |
+| LoRAMoE | 87.41 | 58.21 | 85.64 | 73.37 | 92.18 | 87.40 | 87.35 | 44.80 | 77.05 | 0.68 |
+| HydraLoRA | 86.58 | 56.42 | 85.00 | 73.36 | 92.18 | 87.33 | 88.38 | 45.15 | 76.80 | 0.45 |
+| R-LoRA | 87.12 | 57.95 | 88.13 | 73.89 | 94.71 | 88.25 | 88.26 | 45.60 | 77.99 | 0.45 |
+| M-LoRA | 88.02 | 57.95 | 88.87 | 74.21 | 94.71 | 88.91 | 89.07 | 46.35 | 78.51 | 0.42 |
+| A-LoRA-M | 87.94 | 58.03 | 88.87 | 74.12 | 94.51 | 88.85 | 88.61 | 45.88 | 78.35 | 0.42 |
+| A-LoRA-K | 89.25 | 59.88 | 90.35 | 75.41 | 95.33 | 89.55 | 91.95 | 48.75 | 80.06 | 0.42 |
+| Qwen2.5-7B | | | | | | | | | | |
+| LoRA | 88.41 | 60.78 | 88.42 | 81.58 | 93.52 | 91.20 | 91.79 | 48.15 | 80.48 | 0.25 |
+| LoRAMoE | 89.52 | 61.44 | 88.86 | 82.94 | 92.87 | 91.54 | 91.89 | 48.72 | 80.97 | 0.38 |
+| HydraLoRA | 88.66 | 61.23 | 89.55 | 81.72 | 93.57 | 91.67 | 91.74 | 48.70 | 80.86 | 0.25 |
+| R-LoRA | 89.80 | 62.51 | 89.36 | 83.78 | 95.12 | 91.02 | 92.17 | 50.15 | 81.74 | 0.25 |
+| M-LoRA | 91.35 | 62.51 | 91.98 | 84.70 | 95.93 | 91.02 | 91.97 | 50.20 | 82.46 | 0.22 |
+| A-LoRA-M | 90.86 | 62.45 | 91.68 | 84.59 | 95.93 | 90.74 | 91.75 | 50.45 | 82.31 | 0.20 |
+| A-LoRA-K | 92.23 | 64.85 | 92.89 | 85.73 | 95.93 | 93.35 | 92.93 | 53.66 | 83.95 | 0.20 |
+
+### 5.2 EXPERIMENT
+
+In this section, we evaluate the performance of our proposed **Align-LoRA** (abbreviated as A-LoRA) against standard LoRA and its multi-component variants. We denote our two alignment approaches with suffixes: **A-LoRA-K** for the variant using KL divergence and **A-LoRA-M** for the one using MMD. We conduct two distinct experiments to provide a comprehensive assessment of both multi-task generalization and adaptation capabilities. Detailed information about both the experimental setup and the datasets used for each task is provided in the Appendix G.3. Detailed descriptions of the baseline methods are provided in Appendix J.
+
+First, to measure multi-task generalization, we fine-tuned models on the five-task dataset from Section 3 and evaluated them on the challenging, unseen tasks of the BBH benchmark. The results are presented in Table 4. Across different model families (Qwen2.5 (Qwen Team, 2024) and LLaMA3 (Grattafiori et al., 2024)) and scales, both A-LoRA-K and A-LoRA-M significantly outperform the baselines. Notably, they achieve this superior performance while using a smaller budget of trainable parameters than the sophisticated multi-component variants. This demonstrates Align-LoRA’s highly efficient use of parameters to generalize knowledge from training tasks to a different, more complex reasoning domain.
+
+Second, to validate the model’s multi-task adaptation performance on in-domain tasks, we conducted experiments on a broader eight-task benchmark, evaluating each model on the corresponding test sets. As shown in the detailed results in Table 5, A-LoRA-K once again achieves the highest average
+
+{8}------------------------------------------------
+
+
+
+| Lambda Value | Align-LoRA (%) | LoRA (%) | R-LoRA (%) |
+|-|-|-|-|
+| 0.01 | 75.25 | 74.00 | 74.00 |
+| 0.05 | 75.50 | 74.00 | 74.00 |
+| 0.10 | 75.75 | 74.00 | 74.00 |
+| 0.20 | 75.50 | 74.00 | 74.00 |
+| 0.30 | 75.25 | 74.00 | 74.00 |
+| 0.40 | 75.10 | 74.00 | 74.00 |
+| 0.50 | 75.15 | 74.00 | 74.00 |
+
+Figure 3: Effect of Hyperparameter λ on Performance. A line graph titled 'Performance across Lambda' showing Performance (%) on the y-axis (74.00 to 75.75) versus Lambda Value on the x-axis (0.01, 0.05, 0.10, 0.20, 0.30, 0.40, 0.50). Three series are plotted: Align-LoRA (solid blue line with circles), LoRA (dashed red line), and R-LoRA (dotted green line). Align-LoRA peaks at 0.10 (approx. 75.75%) and then slightly declines. LoRA and R-LoRA are constant at 74.00%.
+
+Figure 3: Effect of Hyperparameter $\lambda$ on Performance
+
+score across models from 3B to 7B. Impressively, it secures this top performance while utilizing fewer trainable parameters than the more complex multi-component variants. This result highlights its strong and robust adaptability across a wide range of tasks.
+
+Finally, we present several supplementary experiments to provide a comprehensive analysis of Align-LoRA-K. A sensitivity analysis on the hyperparameter $\lambda$ , shown in Figure 3, reveals that our method is robust, consistently outperforming baselines across various $\lambda$ values while maintaining relative stability. Furthermore, we provide several supplementary analyses in the appendix to validate and expand upon our findings. These include feature visualizations (Appendix I.1), which confirm the explicit alignment of task representations. Our analysis of training efficiency (Appendix D) demonstrates that Align-LoRA achieves the lowest FLOPs and the fastest overall training time, stemming from its use of a smaller parameter budget. Crucially, we also present comprehensive robustness checks: validating the method’s efficacy when applied exclusively to Attention modules versus MLP layers (Appendix H.1); demonstrating that the alignment mechanism is universally applicable and enhances multi-head architectures (e.g., M-LoRA+Align) by better combining task-general and task-specific knowledge (Appendix I); and its sustained superiority on highly heterogeneous and complex task benchmarks (Appendix H.2).
+
+The consistent improvements from both A-LoRA-K and A-LoRA-M, demonstrated across a wide range of models, scales, and task benchmarks, provide compelling evidence for our central thesis. The fact that both the KL and MMD-based alignment strategies elevate performance above the standard LoRA baseline confirms that **explicit representation alignment is an effective strategy for improving multi-task generalization**. This success can be attributed to the alignment loss mechanism: by encouraging the representations from different tasks to map onto a shared subspace within the latent space of the down-projection matrix $\mathbf{A}$ , we explicitly strengthen the ability of $\mathbf{A}$ to learn task-general features. **This provides further, direct proof that learning task-shared representations provides a highly effective and promising path towards multi-task learning, offering a powerful alternative to the architectural isolation of task-specific features.**
+
+### 5.3 THEORETICAL ANALYSIS
+
+To theoretically analyze the generalization performance of Align-LoRA in multi-task scenarios, we derive a novel generalization bound for MTL. Our key insight is that by explicitly aligning the representation distributions across multiple tasks, Align-LoRA can effectively reduce the distribution discrepancy among tasks. This alignment leads to a tighter generalization error bound compared to traditional multi-component LoRA variants.
+
+Formally, let $M$ be the number of tasks, $\mathcal{D}_i$ ( $i = 1, 2, \dots, M$ ) be the data distribution of task $i$ , and $\tilde{\mathcal{D}}_i$ be the corresponding training dataset. Let $R_{\text{train}}(f; \tilde{\mathcal{D}}_i)$ denote the empirical training risk of model $f$ on $\tilde{\mathcal{D}}_i$ , and $n_{\text{total}} = \sum_{i=1}^M |\tilde{\mathcal{D}}_i|$ be the total number of training samples across all tasks. The generalization bound for Align-LoRA is given by:
+
+{9}------------------------------------------------
+
+$$R_{\text{MTL}}(f) \leq \frac{1}{M} \sum_{i=1}^M R_{\text{train}}(f; \hat{\mathcal{D}}_i) + \frac{\lambda}{M} \sum_{i < j} \Delta(\mathcal{D}_i, \mathcal{D}_j) + O\left(\sqrt{\frac{\log(1/\delta)}{n_{\text{total}}}}\right),$$
+
+where $R_{\text{MTL}}(f) = \frac{1}{M} \sum_{i=1}^M \mathbb{E}_{(x,y) \sim \mathcal{D}_i} \ell(f(x), y)$ is the average expected risk over all tasks, $\Delta(\mathcal{D}_i, \mathcal{D}_j)$ measures the distribution discrepancy between task $i$ and task $j$ (e.g., using KL divergence or MK-MMD), $\lambda > 0$ is a weight parameter balancing the training risk and distribution alignment term, $\delta \in (0, 1)$ is the confidence parameter.
+
+The crucial advantage of Align-LoRA is its distribution alignment mechanism, which actively minimizes $\Delta(\mathcal{D}_i, \mathcal{D}_j)$ during training. This significant reduction in cross-task distribution discrepancy directly leads to a tighter generalization bound, as the second term in the bound is effectively controlled. For the detailed derivation of this theoretical result, including all technical assumptions and proof steps, please refer to the Appendix F.
+
+## 6 CONCLUSION
+
+In this work, we revisited multi-task generalization in LoRA, critically examining the prevailing approach of using multi-component designs to separate task-specific knowledge. Our investigation yielded two key insights that challenge this paradigm. First, we demonstrated that a simplified multi-head LoRA (**M-LoRA**) with highly redundant head matrices can outperform more complex, diversity-focused variants. Second, we showed that simply **increasing the rank** of a standard LoRA is sufficient to match the performance of these multi-component architectures. This calls their fundamental utility into question, as they fail to deliver significant performance gains over a simpler baseline while introducing additional inference latency and complexities from non-mergeable routers. Based on these findings, we proposed a new hypothesis: **learning task-shared representations provides a highly effective and promising path towards multi-task learning, offering a powerful alternative to the architectural isolation of task-specific features.**
+
+Our hypothesis deliberately steers research toward what has been a largely unexplored direction in the LoRA framework: the active enhancement of task-shared knowledge. To formally explore this promising path and validate our hypothesis, we introduced **Align-LoRA**, a novel method that explicitly aligns representations to foster the learning of shared knowledge. Our findings, substantiated by comprehensive empirical evidence and theoretical analysis, confirm that Align-LoRA achieves superior performance, validating our hypothesis and charting a new, more efficient direction for multi-task PEFT. We believe this shift in focus, which moves from separating task-specific knowledge via multi-component architectures to learning task-shared knowledge via representation alignment, is a more promising direction for future research.
+
+## 7 REPRODUCIBILITY STATEMENT
+
+The code for Align-LoRA is available at both the anonymous link Align-LoRA and Supplement Material. Implementation details can be found in the Appendix K.
+
+## REFERENCES
+
+- Ahmed Agiza, Marina Neseem, and Sherief Reda. Mtlora: Low-rank adaptation approach for efficient multi-task learning. In *Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition*, pp. 16196–16205, 2024.
+- Shai Ben-David, John Blitzer, Koby Crammer, and Fernando Pereira. Analysis of representations for domain adaptation. *Advances in neural information processing systems*, 19, 2006.
+- Yonatan Bisk, Rowan Zellers, Jianfeng Gao, Yejin Choi, et al. Piqa: Reasoning about physical commonsense in natural language. In *Proceedings of the AAAI conference on artificial intelligence*, volume 34, pp. 7432–7439, 2020.
+- Tom B Brown. Language models are few-shot learners. *arXiv preprint arXiv:2005.14165*, 2020.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/NlHHlqP1zk.txt b/papers/NlHHlqP1zk.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7d6ad2214cc68b2793b0070d3761376610256429
--- /dev/null
+++ b/papers/NlHHlqP1zk.txt
@@ -0,0 +1,342 @@
+
+
+{0}------------------------------------------------
+
+# ARE LARGE LANGUAGE MODELS GOOD XAI ANNOTATORS?
+
+Anonymous authors
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Explainable AI (XAI) methods for deep neural networks (DNNs) typically rely on costly annotations to supervise concept-class relationships. To alleviate this burden, recent studies have leveraged large language models (LLMs) and vision-language models (VLMs) to automatically generate these annotations. However, the sufficiency of such automated annotations—whether the generated concepts sufficiently characterize their corresponding classes—remains underexplored. In this paper, we propose the *Fast and Slow Effect* (FSE), a unified evaluation framework designed to assess annotation sufficiency without human supervision. FSE first guides the LLMs to progressively annotate concept-class test cases along a continuum, ranging from a *fast mode*, involving opaque visual labeling without any conceptual reasoning, to a *slow mode*, employing a multi-step, conceptual coarse-to-fine annotation strategy. Then, to systematically validate the sufficiency at each step, our framework leverages the models to self-evaluate annotations using the *Class Representation Index* (CRI), a metric designed to measure how sufficiently annotated concepts represent the target classes against semantically similar alternatives. Our experiments reveal that the current annotation methods fail to provide sufficient semantic coverage for accurate concept-class mapping, especially in fine-grained datasets. Specifically, a significant performance gap is observed between fast and slow modes, with the CRI dropping by over 25% on average in slow mode, indicating while the annotators’ intrinsic knowledge enables rapid inference, it remains challenging for them to conceptualize this knowledge in the slow mode, making such expertise difficult to access and interpret. These findings underscore the need for more transparent frameworks to enable reliable, concept-aware annotation in XAI.
+
+## 1 INTRODUCTION
+
+Deep neural networks (DNNs) have achieved remarkable success in computer vision tasks (Deng et al., 2009; He et al., 2016), but their complexity limits interpretability, which is crucial in domains such as medical imaging and engineering inspection. Explainable AI (XAI) methods, such as concept-based models (Koh et al., 2020; Oikarinen et al., 2023; Yang et al., 2023; Sun et al., 2024; Srivastava et al., 2024; Radford et al., 2021; Achiam et al., 2023; Wang et al., 2024; Grattafiori et al., 2024), encode human-interpretable concepts to enhance transparency. However, these models require extensive manual annotations from domain experts to supervise concept-class relationships during training, making them costly and difficult to scale (Snow et al., 2008). Recent work has turned to LLMs and VLMs for automated concept annotation. Two distinct annotation paradigms have emerged: (1) *post-hoc annotation*, employing LLMs via textual prompting to generate class-level concept annotations (Oikarinen et al., 2023; Koh et al., 2020; Yuksekgonul et al., 2022; Yang et al., 2023; Sun et al., 2024; Srivastava et al., 2024); and (2) *visual grounded annotation*, utilizing VLMs to directly link visual inputs to concepts and subsequently to classes at the image level (He et al., 2025; Hossain et al., 2024; Patricio et al., 2025; Selvaraj et al., 2024). While such generated annotations are often intuitively plausible, it remains unclear whether they provide *sufficient* semantic coverage to capture the defining essence of their target classes, especially in specialized domains. Without this sufficiency, concept-based explanations risk reflecting superficial correlations rather than genuine discriminative cues (Figure 1).
+
+{1}------------------------------------------------
+
+
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+
+Classify the provided image, and then explain your rationale by annotating the unique concepts that helped you recognize this entity.
+
+Based on the image provided, I believe this bird is a **Red-faced Cormorant**. Several notable characteristics support this identification, including its long, narrow wings, dark plumage, distinctive hooked bill, oceanic habitat, pelagic lifestyle, and gliding flight pattern.
+
+Based solely on your earlier textual annotation, if you had to choose between a Crested Auklet and a Red-faced Cormorant, which species would you identify?
+
+Based on my textual annotation, I believe it's a **Crested Auklet!**
+
+Figure 1: A dialogue between a human user and an AI annotator. The user provides an image of a bird and asks for classification and rationale. The AI initially identifies it as a Red-faced Cormorant based on visual features. When asked to choose between a Crested Auklet and a Red-faced Cormorant based only on its own concepts, the AI incorrectly identifies it as a Crested Auklet, showing a failure in reasoning.
+
+068
+069
+070
+071
+072
+073
+
+Figure 1: Motivating example: An automated annotator generates a set of concepts for an image and correctly identifies its class. However, when asked to choose between the correct class and several semantically similar alternatives using only its own concepts, it fails. Despite the initial correct inference, the annotator fails in the second stage, raising concerns about the annotator’s true understanding of conceptual relationships and motivating further investigation.
+
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+
+Motivated by these limitations, we propose the *Fast and Slow Effect* (FSE) framework to systematically evaluate conceptual annotation sufficiency without human supervision (see Figure 2). Our framework comprises two main components: (a) annotating test cases for concept-class relations by simulating how existing annotators progressively refine concepts for a target class, which is then structured into five refinement stages—*Background*, *Superclass*, *Salient Features*, *Detailed Features*, and *Auxiliary Features*. In this process, class predictions transit from a *fast mode* (opaque visual inference without any conceptual reasoning) to a *slow mode* (leveraging the accumulated concepts); and (b) *Class Representation Index* (CRI), an evaluation metric, which quantifies how sufficiently the accumulated concepts support accurate concept-class mapping. We further hypothesize a phenomenon termed *Slow Mode Superiority*, where class mapping guided by accumulated concepts will yield higher CRI scores compared to opaque visual inference. This highlights the significance of concept-based textual supervision in enhancing the sufficiency of concept-class relationships.
+
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+
+However, empirical results reveal that the current annotation methods fail to provide sufficient semantic coverage for accurate concept-class mapping, especially in fine-grained datasets. The slow mode significantly reduces performance—by over 25% on average—compared to the fast mode, indicating while the annotators’ intrinsic knowledge enables rapid inference, it remains challenging for them to conceptualize this knowledge in the slow mode, rendering such expertise opaque. We further apply our FSE framework to examine the widely adopted *utility-as-proxy* assumption (Hu et al., 2024b,a; He et al., 2025), which posits that if concept knowledge is incorporated into the visual pipeline—enabling joint multi-modal prediction—then improved performance on downstream tasks reflects annotation quality. Surprisingly, our fused mode—which integrates fast and slow modes to simulate such an end-to-end pipeline—achieves an CRI score of approximately 90%, whereas the slow mode alone scores only about 50% under identical conditions. This discrepancy indicates that strong performance in downstream tasks may not necessarily correlate with adequate conceptual supervision, suggesting that high utility scores can be misleading if the annotations are insufficient.
+
+098
+
+Our key contributions are:
+
+- 099
+100
+101
+102
+103
+104
+105
+106
+107
+- We propose the *Fast and Slow Effect* (FSE), a fully autonomous framework for validating the sufficiency of automated concept-class annotations without human supervision.
+ - We propose a novel evaluation metric, the *Class Representation Index* (CRI), designed to quantitatively measure how sufficiently the accumulated conceptual annotations support accurate concept-class mapping, providing interpretable criteria for assessing whether annotations capture sufficient semantic relationships or merely reflect superficial correlations.
+ - We conduct extensive experiments across diverse and fine-grained datasets, demonstrating that current automated annotators often fail to achieve adequate semantic coverage, underscoring the need for more robust and semantically expressive annotation strategies.
+
+{2}------------------------------------------------
+
+## 2 BACKGROUND
+
+**Concept-based Models.** Concept-based models have emerged as a promising paradigm for enhancing the interpretability of deep neural networks (DNNs) by explicitly incorporating human-understandable concepts into the decision-making process. Notable approaches in this domain include Concept Bottleneck Models (CBMs) (Koh et al., 2020; Oikarinen et al., 2023; Yang et al., 2023; Sun et al., 2024; Srivastava et al., 2024), Contrastive Language-Image Pre-training (CLIP) (Radford et al., 2021), and Vision-Language Models (VLMs) (Achiam et al., 2023; Wang et al., 2024; Grattafiori et al., 2024). These methods typically leverage visual and textual modalities jointly to perform class predictions. Formally, we define a training dataset as $\mathcal{D} = \{(x_i, c_i, y_i)\}_{i=1}^N$ , where each data point consists of an input image $x_i \in \mathbb{R}^d$ (with $d$ pixels), a set of concept embeddings $c_i = \{c_{i,1}, c_{i,2}, \dots, c_{i,M_i}\}$ , and a class label $y_i \in \{1, \dots, K\}$ . Here, $K$ denotes the total number of distinct classes, and each concept embedding $c_{i,j} \in \mathbb{R}^{d_c}$ corresponds to a human-understandable textual description associated with the image $x_i$ . The dimensionality of the concept embeddings is represented by $d_c$ , while $M_i$ indicates the number of concepts annotated for the $i$ -th image. The objective is to learn a visual encoder $f_v : \mathbb{R}^d \rightarrow \mathbb{R}^{d_c}$ that maps input images to visual features of dimensionality $d_c$ , a concept mapping $f_c : \mathbb{R}^{d_c} \rightarrow \mathbb{R}^{d_c}$ that projects visual features into the conceptual embedding space, and a prediction head $f_p : \mathbb{R}^{d_c} \rightarrow \mathbb{R}^K$ that produces the final class prediction. Despite their promise, a significant bottleneck in deploying concept-based models is the requirement for explicit concept supervision ( $c_i$ ) during training. Acquiring such supervision typically involves manual annotation, which is labor-intensive and challenging to scale to large datasets (Snow et al., 2008). This challenge has spurred significant interest in developing automated methods for generating concept annotations at scale.
+
+**Automated Annotation.** These methods aim to augment datasets that initially contain only class labels with explicit concept annotations. Formally, given a class labeled dataset without concept annotations: $\mathcal{D}_{\text{cls}} = \{(x_i, y_i)\}_{i=1}^N$ , where each input image $x_i \in \mathbb{R}^d$ is associated only with a class label $y_i \in \{y_k\}_{k=1}^K$ , the objective is to automatically generate a set of concepts $c_i$ . Automated annotation methods can be broadly divided into two main categories: *post-hoc textual annotation* and *visual-grounded annotation*. Post-hoc textual annotation typically generates domain-specific textual annotations at the class level. Early approaches utilized general-purpose knowledge graphs, such as ConceptNet (Liu & Singh, 2004; Yuksekgonul et al., 2022), to infer structured relationships between concepts and class labels. More recently, LLMs have been employed to generate domain-specific textual concepts (Oikarinen et al., 2023; Yang et al., 2023; Sun et al., 2024; Srivastava et al., 2024). In this setting, annotators are prompted to produce a set of textual concepts $c_k$ describing each class $y_k$ , resulting in annotations of the form: $\mathcal{D}_{\text{post-hoc}} = \{(c_k, y_k)\}_{k=1}^K$ . While post-hoc annotations improve domain relevance, their abstract, class-level nature often lacks explicit grounding in visual evidence, which can limit both interpretability and precision. In contrast, visual-grounded annotation directly leverages VLMs to generate fine-grained, image-specific concept annotations (He et al., 2025; Hossain et al., 2024; Patricio et al., 2025; Selvaraj et al., 2024). Here, VLMs produce visual-grounded concept annotations $c_i$ for each individual image $x_i$ , resulting directly in the training dataset $\mathcal{D}$ . By explicitly grounding concepts in visual evidence, the annotation methods enhance interpretability, reduce ambiguity, and provide more precise annotations for downstream modeling tasks.
+
+## 3 MOTIVATION
+
+**Current Limitations in Validating Annotations.** Despite the progress in automated annotation, systematic validation of the generated concept annotations remains an underexplored area. While initial efforts have been made, current validation strategies are primarily confined to two main approaches: *human evaluation* (Oikarinen et al., 2023; Yang et al., 2023; Sun et al., 2024; He et al., 2025) and an approach here referred to as the *utility-as-proxy assumption* (Hu et al., 2024b;a; He et al., 2025). Human evaluation, while intuitive, is fraught with practical and methodological challenges. Recent studies (Ford & Keane, 2022) have shown that human perceptions of explanations can vary significantly depending on domain expertise, affecting response times, perceived helpfulness, and trustworthiness. Moreover, obtaining consistent, high-quality human annotations is inherently difficult, expensive, and infeasible at scale (Snow et al., 2008). The utility-as-proxy assumption, on the other hand, describes a practice common in prior work: assessing the validity of generated concept annotations by measuring their effect on downstream classification accuracy. Although
+
+{3}------------------------------------------------
+
+
+
+(a) Annotating Test Cases: (i) Concept-Chain Gathering (C)
+
+Background: ocean background
+ Superfeatures: albatross
+ Detailed features: feathers, beak, wings
+ Detailed features: dark feathers, hooked beak, dark wings
+ Auxiliary features: bird flying over the ocean
+
+(A: Laysan Albatross B: Sooty Albatross C: Black-footed Albatross)
+
+(ii) Fast and Slow Class Prediction (C - Y)
+
+| t steps | Ground Truth (Y) | Prediction (C) |
+|-|-|-|
+| 0 | B: Laysan Albatross | B: Laysan Albatross |
+| 1 | B: Laysan Albatross | B: Sooty Albatross |
+| 2 | B: Laysan Albatross | B: Laysan Albatross |
+| 3 | B: Laysan Albatross | B: Laysan Albatross |
+| 4 | B: Laysan Albatross | C: Black-footed Albatross |
+| 5 | B: Laysan Albatross | C: Black-footed Albatross |
+
+(b) Metrics
+
+GPR (%)
+
+t steps
+
+Figure 1: Overview of the proposed framework. (a) Annotating Test Cases: An image of a Black-footed Albatross is processed by an LLM to generate a list of features (background, superfeatures, detailed features, auxiliary features). (ii) Fast and Slow Class Prediction (C - Y): A table showing the prediction of classes over time steps t=0 to 5. The ground truth (Y) is Laysan Albatross. The prediction (C) starts with Sooty and Black-footed Albatross and converges to Black-footed Albatross by t=5. (b) Metrics: A graph showing the GPR (%) metric increasing over time steps t.
+
+Figure 2: Overview of the proposed FSE framework. The framework consists of two main components: (a) *Annotating Test Cases* for concept-class relations, and (b) *Evaluation Metrics*. In (a), test cases are annotated through an incremental two-step process: (i) concepts are progressively collected over $t$ steps to refine understanding, and (ii) the model maps these concepts to class labels at each step. This process begins with a *fast mode* ( $t = 0$ ), where class labels are directly inferred from visual input without conceptual or textual cues, and transitions to a *slow mode* ( $t > 0$ ), where predictions leverage the accumulated concept set. In (b), we introduce the *Class Representation Index* (CRI) to quantify the likelihood that the accumulated concepts sufficiently represent the target classes against semantically similar alternatives. As annotation steps increase, we expect the CRI to rise.
+
+straightforward, this approach introduces considerable uncertainty. Recent work has demonstrated that end-to-end utility can improve even when annotations are irrelevant or encode unintended shortcuts (Havasi et al., 2022; Sun et al., 2024). Furthermore, as illustrated in the motivating example (Figure 1), annotations that appear beneficial in multimodal fusion may become misleading or insufficient when evaluated in isolation. Consequently, improvements in end-to-end accuracy alone do not reliably reflect the interpretability or sufficiency of the underlying annotations.
+
+**Towards Rigorous Criteria for Annotation Sufficiency.** Given these limitations, it is essential to develop an evaluation framework that is automatic, requiring no human supervision, and capable of assessing annotation quality beyond mere improvements in downstream accuracy. A critical aspect of this framework is the need to clarify what constitutes a sufficient annotation. Recent advances in LLM research have demonstrated promising self-assessment capabilities, enabling models to critically evaluate their own outputs (Kiciman et al., 2023; Xie et al., 2023; Panickssery et al., 2024). Intuitively, a trustworthy annotation should be self-contained, meaning it must provide all necessary information to sufficiently infer the target class without needing any external context or supplementary information. Motivated by this intuition, we formally define the notion of *sufficient* concept-class annotation as follows:
+
+**Definition 3.1** (Sufficient Concept-Class Annotation). A concept-class annotation generated by an LLM or VLM is considered *sufficient* if the generated concepts alone are expressive, clear, and precise enough to enable accurate inference of the corresponding class, without requiring additional external information or contextual cues.
+
+This definition provides a principled foundation for the development of automatic evaluation frameworks. Building on this, we introduce our proposed approach, the *Fast and Slow Effect* (FSE) framework, which serves as a novel evaluation paradigm for assessing annotation sufficiency, with the following section introducing its specific procedures and metrics.
+
+## 4 FAST AND SLOW EFFECT (FSE) FRAMEWORK
+
+The FSE framework (Figure 2) consists of two main components: (1) annotating test cases for concept-class relations, where concepts are incrementally collected following established concept-gathering paradigms (Yuksekgönül et al. (2022); Yang et al. (2023); Panousis et al. (2025); Oikarinen et al. (2023); Sun et al. (2024)) to refine conceptual understanding; this ensures our approach is grounded in and extends mainstream hierarchical extraction practices; and (2) an evaluation metric, the proposed *Class Representation Index* (CRI), measuring how sufficiently concepts support accurate concept-class mapping.
+
+### 4.1 ANNOTATING TEST CASES FOR CONCEPT-CLASS RELATIONS
+
+To replicate the concept-based annotation paradigm and investigate concept-class relationships ( $C \rightarrow Y$ ), we construct test cases $\mathcal{D}_{\text{test}}$ of annotated concept-class pairs. This involves multiple
+
+{4}------------------------------------------------
+
+annotation steps to explore these relationships hierarchically from coarse to fine. The test cases are defined as:
+
+$$\mathcal{D}_{\text{test}} = \{(c_i^t, y_i^t) \mid t = 1, \dots, T; i = 1, \dots, l\},$$
+
+where $c_i^t$ denotes the concepts for instance $i$ at step $t$ , and $y_i^t$ is the class mapped post-concept gathering, with $l$ as the total number of cases. The annotation proceeds in two stages: (i) *Concept-Chain Gathering*, where concepts are incrementally refined, and (ii) *Fast and Slow Class Prediction*, mapping concepts to their corresponding classes after each gathering step.
+
+**Concept-Chain Gathering.** Given an input query $X_i$ from a labeled instance $(x_i, y_i) \in \mathcal{D}_{\text{cls}}$ , we consider two annotation scenarios: *post-hoc* annotation at the class level ( $X_i = y_i$ , covering all $K$ classes) and *visual-grounded* annotation at the image instance level ( $X_i = x_i$ , covering all $N$ samples). We then initiate a five-stage annotation process ( $T = 5$ ) that progressively refines concepts from Stage 1 to Stage 5 for each $X_i$ . The choice of five stages *reflects* and builds upon established methodologies for structured, hierarchical concept extraction, which typically progress from coarse to fine levels of detail. For example, certain methods(Yuksekgonul et al., 2022; Yang et al., 2023) use a single-level process that directly produces concepts without further hierarchical refinement. Sun et al. (2024); Panousis et al. (2024) adopt a two-level scheme (*Perceptual vs. Descriptive*), while Oikarinen et al. (2023) propose a three-tier process (*Background, Superclass, Important Features*).
+
+We extend these ideas into the following **five-stage refinement process**:
+
+1. *Background* – High-level environmental or contextual cues.
+2. *Superclass* – Broad categorical grouping of the object.
+3. *Salient Features* – Prominent visual traits that are visually distinctive.
+4. *Detailed Features* – Fine-grained and discriminative characteristics per salient feature.
+5. *Auxiliary Features* – Supplemental attributes to enhance coverage and completeness.
+
+The refinement begins with coarse concepts such as “*Background: Ocean*” or “*Superclass: Bird*”, and gradually incorporates finer attributes, e.g., “*Narrow and pointed wings*”. Formally, the concept chain at step $t$ , denoted $c_i^t$ , is obtained from the annotator model $\mathcal{F}$ as:
+
+$$c_i^t = \bigcup_{j=1}^{t-1} \mathcal{F}(c_i^j, X_i; \Theta), \quad t = 1, \dots, T, \quad (1)$$
+
+where $\mathcal{F}$ is a fixed LLM/VLM-based annotator that refines the concept set based on the previous output $c_i^{t-1}$ and the query $X_i$ . The parameters $\Theta$ capture the annotator’s model weights.
+
+**Fast and Slow Class Prediction.** Immediately after each concept-gathering step $t$ , the model synthesizes the accumulated concept set $c_i^t$ into a class prediction $y_i^t$ . To systematically investigate contradictions between raw visual inputs and conceptual annotations (illustrated in Figure 1), we categorize predictions into two distinct modes based on the annotation step $t$ :
+
+- *Fast Mode* ( $t = 0$ ): In this mode, classes are annotated directly from the visual input $x_i$ without intermediate textual annotations:
+
+$$y_i^0 = \mathcal{F}(x_i; \Theta).$$
+
+This mode applies exclusively to visual-grounded scenarios, where the input $X$ visually represents the class $y$ . The post-hoc scenario inherently requires explicit conceptual annotations and thus is not suitable for this mode.
+
+- *Slow Mode* ( $t > 0$ ): In contrast, the slow mode is applicable to both visual-grounded and post-hoc scenarios, where predictions involve a structured, multi-step textual annotation process, incrementally gathering and refining conceptual information before each prediction. Importantly, at these stages, the original input $X_i$ is no longer required, and the prediction relies solely on the high-level conceptual annotations:
+
+$$y_i^t = \mathcal{F}(c_i^t; \Theta), \quad t = 1, \dots, T.$$
+
+#### 4.1.1 PROMPT DESIGN
+
+We employ the structured hierarchical prompting strategy previously described, comprising $T = 5$ concept-gathering stages. Detailed prompt formulations for each stage are provided in Appendix B.
+
+{5}------------------------------------------------
+
+After each concept-gathering step $t$ , the model uses only the textual concepts collected up to that step to predict $y_i^t$ from a candidate set $S = \{y_i, d_i^j\}_{j=1}^4$ , which contains the ground-truth class $y_i$ and four semantically similar distractor classes $d_i^j$ . We carefully construct this candidate set to realistically challenge the model, as detailed in Section 5.3.
+
+### 4.2 METRICS
+
+**Class Representation Index (CRI).** Given the set of annotated test cases $\mathcal{D}_{\text{test}}$ and their corresponding class labeled dataset $\mathcal{D}_{\text{cls}}$ , the CRI quantifies the likelihood that the concept information alone supports accurate classification, e.g., the proportion of correctly predicted labels $y_i^t$ compared to the ground-truth labels $y_i$ from $\mathcal{D}_{\text{cls}}$ . Formally, the CRI at step $t$ is defined as:
+
+$$CRI(\mathcal{F}, t; \mathcal{D}_{\text{test}}, \mathcal{D}_{\text{cls}}) := 100\% \times \frac{1}{t} \sum_{i=1}^t \mathbb{1}[y_i^t = y_i], \quad (2)$$
+
+$$\text{where } y_i^t = \begin{cases} \mathcal{F}(x_i; \Theta), & \text{if } t = 0 \\ \mathcal{F}(c_i^t; \Theta), & \text{if } t > 0 \end{cases}$$
+
+We will often write it as $CRI(t)$ or just $CRI$ to simplify notation. A higher CRI indicates that the conceptual annotations at step $t$ provide a sufficient foundation for classification. A well-structured concept chain should exhibit positive incremental CRI at each annotation step. Specifically, a positive marginal CRI increment ( $CRI(t) - CRI(t-1) > 0$ ) indicates that the annotation at step $t$ provides valid conceptual information, whereas a non-positive increment suggests insufficiency at that step.
+
+**Slow Mode Superiority.** According to the dual-process theory (Kahneman, 2011), fast mode serves as a “black box” approach, relying on direct visual conclusions without extensive reasoning, which can lead to quick but less thoughtful results. Slow mode, on the other hand, involves a detailed, conceptual, and multi-step reasoning process, which is more thorough but time-consuming. Therefore, when both modes are available, the slow mode is expected to consistently achieve performance superior or at least comparable to the fast mode. Specifically, we consider the slow mode at its maximum annotation step $t = T$ , representing the scenario where the annotator has fully leveraged all available annotation opportunities. Formally, we define CRI-Gap $\Delta CRI_T$ between the slow mode (at step $t = T$ ) and the fast mode (at step $t = 0$ ) as:
+
+$$\Delta CRI_T = CRI(T) - CRI(0). \quad (3)$$
+
+We expect this CRI gap to be non-negative, indicating the superiority (or at least equivalence) of the slow mode: $\Delta CRI_T \geq 0$ .
+
+## 5 IMPLEMENTATION
+
+### 5.1 DATASET
+
+Following previous works (Oikarinen et al., 2023; Koh et al., 2020; Yuksekgonul et al., 2022; Yang et al., 2023; Sun et al., 2024; Srivastava et al., 2024), we evaluate our framework on three fine-grained visual classification datasets (*CUB-200 Birds* (Welinder et al., 2010), *Cars-196* (Krause et al., 2013), *Flowers-102* (Nilsback & Zisserman, 2008)) and two general object recognition datasets (*CIFAR-100* (Krizhevsky et al., 2009), *Caltech-101* (Li et al., 2022)). Detailed descriptions for each dataset are provided in Appendix A.
+
+### 5.2 MODEL SELECTION
+
+To effectively evaluate the annotation performance of LLMs and VLMs, we select several representative models reflecting recent advancements in textual reasoning and visual understanding. Given rapid developments in multimodal capabilities, we prioritized models capable of both purely textual (post-hoc) and visual-grounded annotation tasks, ensuring fairness and consistency in our evaluation. We chose three prominent model families: GPT-4o (Achiam et al., 2023), Qwen2-VL (Wang et al., 2024), and Llama3.2 (Grattafiori et al., 2024). For a balanced assessment, we evaluated two model
+
+{6}------------------------------------------------
+
+sizes from each family, covering both large-scale and smaller-scale variants: GPT-4o, GPT-4o-mini, Llama-3.2-vision-90b, Llama-3.2-vision-11b, QwenVL2-72b, and QwenVL2-7b. For simplicity, we refer to these multimodal models as LLMs throughout this paper. Additionally, to demonstrate the effectiveness of our FSE framework, it supports evaluation of Chain-of-Thought (CoT) performance for models specifically designed for reasoning tasks. Notably, our application of the FSE revealed that even advanced reasoning models like DeepSeek-R1 (Guo et al., 2025) often bypass their own detailed CoT reasoning processes in decision-making, highlighting limitations in their reasoning abilities. Please refer to Appendix D for further details.
+
+Table 1: Contradiction rates (%) of GPT-series models when predicting $y^{con}$ using generated concepts under two different candidate set construction strategies. A contradiction occurs when the concept-based prediction $y^{con}$ differs from the initial prediction $y^{init}$ , indicating inconsistency between the model’s initial output and its concept-driven prediction. For evaluation, we use three datasets (Car, Flower, and CUB-Bird), randomly sampling 100 images from each dataset, and report the contradiction rates averaged across these samples.
+
+| Strategy | Model | Car | Flower | CUB-Bird | Average |
+|-|-|-|-|-|-|
+| Semantically Related Selection | GPT-4o | 42.39 | 14.14 | 45.90 | 34.14 |
+| | GPT-4o-mini | 41.30 | 35.35 | 59.02 | 45.22 |
+| Random Selection (Baseline) | GPT-4o | 18.48 | 6.06 | 18.03 | 14.19 |
+| | GPT-4o-mini | 14.13 | 17.16 | 31.15 | 20.81 |
+
+### 5.3 PRELIMINARY EXPERIMENT: SELECTING EFFECTIVE DISTRACTOR STRATEGIES
+
+Before presenting our main results, we first conduct a preliminary contradiction test to identify the most effective strategy for selecting distractor classes used in our FSE evaluation. This preliminary experiment provides a glimpse into the annotation quality by evaluating how well different distractor strategies challenge the annotators, with the goal of ensuring that the candidate set (S) used in subsequent evaluations realistically challenges the annotators. We consider two candidate distractor selection strategies:
+
+1. *Random Selection*: Distractor classes are randomly chosen from the entire set of available classes, without considering semantic or visual relationships.
+2. *Semantically Related Selection*: Distractor classes are selected based on semantic similarity. Specifically, we construct a Semantic Similarity Dictionary (SSD) using predictions from a pretrained ResNet-18 (He et al., 2016). For each class, we record the top four predicted classes (excluding the ground-truth class itself) for each data sample. These top predictions serve as semantically related distractors.
+
+To evaluate these strategies, we simplify the FSE framework into a contradiction test. Given an image sample $x_i$ , we prompt GPT-4 annotators to generate an initial prediction ( $y_i^{init}$ ) as well as their related descriptive concepts ( $C_i$ ), as shown in Figure 1. Next, annotators must select the correct class from the candidate set $\{y_i^{init}, d_i^j\}_{j=1}^4$ using only the generated concepts $C_i$ , producing a second prediction ( $y_i^{con}$ ). Here, each $d_i^j$ is a distractor class selected according to one of the two strategies described above. A contradiction occurs when the annotator’s initial prediction differs from the second prediction ( $y_i^{init} \neq y_i^{con}$ ), indicating that the distractors effectively challenge the annotator’s reasoning. To avoid positional bias (Shi et al., 2024), we randomly shuffle the candidate set in both strategies. Table 1 summarizes the results of this experiment. We observe that random selection yields relatively low contradiction rates (14–20%), suggesting that randomly chosen distractors are ineffective at challenging annotators. In contrast, semantically related selection significantly increases contradiction rates (34–45%), demonstrating its effectiveness in creating challenging candidate sets. Based on these findings, we adopt the Semantically Related Selection for all subsequent experiments.
+
+## 6 RESULTS
+
+**CRI Comparison.** Figure 3 summarizes the CRI scores achieved by six representative LLMs across three specialized fine-grained datasets. In the post-hoc textual annotation scenario, the CRI
+
+{7}------------------------------------------------
+
+
+
+Figure 3: CRI (%) of LLMs Across Annotation Steps as an Indicator of Annotation Sufficiency. The figure consists of two rows of line plots. Row (a) shows results for the visual-grounded annotation scenario, and row (b) shows results for the post-hoc textual annotations scenario. Each row contains three plots for the Car, Flower, and CUB-Bird datasets. The x-axis represents 'Annotating Steps (t)' from 0 to 5. The y-axis represents 'CRI (%)' from 0 to 100. Six LLMs are compared: GPT-4o (blue), GPT-4o-mini (orange), QwenVL2-72b (green), QwenVL2-7b (red), Llama-3.2-vision-90b (purple), and Llama-3.2-vision-11b (brown). In (a), star markers (\*) at t=0 represent the fast mode, while dot markers (.) at t>0 represent the slow mode. In (b), only dot markers are shown. Shaded regions around the lines represent error bars (standard deviation).
+
+Figure 3: CRI (%) of LLMs Across Annotation Steps as an Indicator of Annotation Sufficiency. (a) shows results for the visual-grounded annotation scenario, and (b) shows results for the post-hoc textual annotations scenario. The dot marker (.) denotes the slow mode ( $t > 0$ ) in both scenarios, while the star marker (\*) denotes the fast mode ( $t = 0$ ), which is only applicable in the visual-grounded scenario (a). For each data point, three runs (with different seeds) were conducted, and the shaded regions represent the error bars (e.g., standard deviation), it is clear that the standard deviations are negligible, indicating that the results are consistent across repeated trials, and that the observed trends are not due to random variation. Annotation sufficiency generally improves, though the magnitude of improvement varies.
+
+Table 2: Comparison of CRI-Gap (%) between the slow mode at maximum annotation steps ( $t = 5$ ) and the fast mode ( $t = 0$ ), calculated using Eq. 3. Positive values indicate better annotation sufficiency in the slow mode, while negative values suggest the opposite.
+
+| Dataset | GPT-4o | GPT-4o-mini | Llama-3.2-vision-90b | Llama-3.2-vision-11b | QwenVL2-72b | QwenVL2-7b | Average |
+|-|-|-|-|-|-|-|-|
+| Car | -32.92 | -33.65 | -12.36 | -9.78 | -26.43 | -47.43 | -27.10 |
+| Flower | -28.19 | -34.50 | -1.66 | 3.24 | -35.74 | -56.18 | -25.51 |
+| CUB-Bird | -31.56 | -31.79 | -37.36 | -57.44 | -0.46 | 7.50 | -25.19 |
+
+scores for the Car and CUB-Bird datasets generally remain below 70%, with only the Flower dataset occasionally surpassing 80%. The visual-grounded annotation scenario proves even more challenging, as all models achieve CRI scores below 60% even when the annotator fully leverages all available conceptual annotation opportunities (e.g., $t = 5$ ). These results highlight the persistent limitations of current LLM-generated annotations in addressing complex, fine-grained classification tasks. We further explore whether the slow mode offers advantages over the fast mode. Table 2 presents the CRI score differences. Contrary to initial expectations, the slow mode frequently underperforms compared to the fast mode on specialized datasets, with average CRI gaps ranging from $-25\%$ to $-27\%$ . This finding suggests that while the annotators' intrinsic knowledge enables rapid inference, it remains challenging for them to conceptualize this knowledge in the slow mode. Even when the LLMs are guided through a concept-chain process consisting of five distinct stages intended to make their annotation explicit, the models still struggle to externalize their implicit expertise. As a result, much of their expertise remains opaque and difficult to leverage for downstream knowledge transfer.
+
+**Results on Common Datasets.** To assess whether these limitations are pervasive across datasets, we extend our analysis to common object recognition datasets (CIFAR-100 (Krizhevsky et al., 2009)
+
+{8}------------------------------------------------
+
+and Caltech-101 (Li et al., 2022)) using GPT-4o and GPT-4o-mini in visual-grounded scenarios (Table 3). Remarkably, we observe a completely opposite trend in this context. Both models achieve high CRI scores exceeding 90% at $t = 5$ , representing a substantial improvement over their performance on specialized datasets. Furthermore, for the first time, we observe that the slow mode consistently outperforms the fast mode on these general datasets. This indicates that LLMs are capable of generating discriminative and sufficient concept sets when the annotation task is less fine-grained and more general in nature.
+
+Table 3: CRI (%) of GPT-4o and GPT-4o-mini across annotation steps ( $t$ ) in visual-grounded scenarios. Results are shown for general object recognition datasets (CIFAR-100 and Caltech-101). “FineGrained-Avg” denotes the average CRI score computed across the three fine-grained datasets presented in Figure 3.
+
+| Model | Dataset | CRI Score (Steps $t$ ) | | | | | |
+|-|-|-|-|-|-|-|-|
+| | | 0 (Fast) | 1 | 2 | 3 | 4 | 5 |
+| GPT-4o | CIFAR-100 | 84.84 | 29.23 | 64.40 | 83.96 | 91.43 | 94.07 |
+| | Caltech-101 | 91.48 | 30.88 | 80.17 | 91.50 | 93.77 | 93.77 |
+| | FineGrained-Avg | 92.97 | 27.67 | 27.11 | 40.28 | 58.54 | 61.97 |
+| GPT-4o-mini | CIFAR-100 | 83.79 | 33.89 | 67.16 | 84.84 | 90.53 | 95.37 |
+| | Caltech-101 | 89.01 | 33.79 | 76.10 | 85.99 | 87.09 | 89.56 |
+| | FineGrained-Avg | 84.37 | 25.02 | 25.47 | 34.14 | 48.69 | 51.01 |
+
+**Utility-as-Proxy $\neq$ Annotation Sufficiency.** We further leverage our FSE framework to critically examine the validity of the widely adopted utility-as-proxy evaluation paradigm (Hu et al., 2024b;a; He et al., 2025) for annotation quality. To closely replicate this evaluation scenario, we fuse the fast mode ( $t = 0$ ) and slow mode ( $t = 5$ ) during classification, rigorously simulating the end-to-end inference pipeline commonly employed by standard concept-based multimodal models. Specifically, during prediction, the LLMs jointly receive both the visual image and its corresponding generated textual annotation as inputs to determine the class labels. We report the results for GPT-4o and GPT-4o-mini in Table 4. Notably, the CRI score obtained through this fusion approach closely aligns with that of the fast mode alone and significantly surpasses the performance of the slow mode. This discrepancy indicates that strong performance in downstream tasks may not correlate with adequate conceptual supervision, suggesting that high utility can be misleading if the underlying conceptual annotations are insufficient.
+
+Table 4: CRI (%) among three annotation modes on three specialized datasets.
+
+| Model | Dataset | Mode of annotation | | |
+|-|-|-|-|-|
+| | | Fast | Slow | Fuse |
+| GPT-4o | Car | 93.75 | 60.82 | 93.08 |
+| | Flower | 96.76 | 68.57 | 96.14 |
+| | CUB-Bird | 88.40 | 56.84 | 83.60 |
+| GPT-4o-mini | Car | 87.50 | 53.85 | 85.75 |
+| | Flower | 91.70 | 57.19 | 83.60 |
+| | CUB-Bird | 73.90 | 42.11 | 65.80 |
+
+**Visual Case Study.** We also provide a detailed visual analysis to further illustrate the limitations and insufficiency of current LLM-generated annotations. Please refer to Appendix C for specific visual examples highlighting scenarios where LLM-generated annotations fall short.
+
+## 7 CONCLUSION
+
+In this paper, we present the FSE evaluation framework to assess the sufficiency of concept-class annotations in XAI methods. Our extensive experiments shed light on the shortcomings of current annotation methods, revealing that they often fail to adequately capture class semantics, particularly in fine-grained datasets. We encourage future work to leverage our findings to create more effective annotation strategies that improve XAI quality and interpretability.
+
+{9}------------------------------------------------
+
+## 8 ETHICS AND LIMITATIONS
+
+We propose the FSE evaluation framework to assess the sufficiency of concept-class annotations in XAI methods. Our aim is to advocate for a more transparent and concept-aware annotation framework, which has the potential to significantly enhance the interpretability and reliability of XAI systems. By illuminating the challenges that annotators encounter in slow, knowledge-intensive tasks, this work can inform the development of future tools and methodologies that foster improved human-AI collaboration, particularly in domains that require high levels of trust and interpretability. However, in terms of ethical considerations, it is important to acknowledge the potential negative societal impacts associated with the FSE framework. Its reliance on controlled, open-sourced datasets may not fully capture the complexities of real-world data, which could lead to biased or incomplete annotations. This is especially concerning in sensitive sectors such as healthcare, finance, and criminal justice, where such biases could inadvertently contribute to inequalities in decision-making. We are committed to continuously refining and enhancing the framework to address these challenges and ensure its broader applicability in real-world contexts.
+
+## 9 REPRODUCIBILITY
+
+We have provided the code and data at here.
+
+## REFERENCES
+
+- Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. *arXiv preprint arXiv:2303.08774*, 2023.
+- Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In *2009 IEEE conference on computer vision and pattern recognition*, pp. 248–255. Ieee, 2009.
+- Courtney Ford and Mark T Keane. Explaining classifications to non-experts: an xai user study of post-hoc explanations for a classifier when people lack expertise. In *International Conference on Pattern Recognition*, pp. 246–260. Springer, 2022.
+- Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models. *arXiv preprint arXiv:2407.21783*, 2024.
+- Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, et al. Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning. *arXiv preprint arXiv:2501.12948*, 2025.
+- Marton Havasi, Sonali Parbhoo, and Finale Doshi-Velez. Addressing leakage in concept bottleneck models. *Advances in Neural Information Processing Systems*, 35:23386–23397, 2022.
+- Hangzhou He, Lei Zhu, Xinliang Zhang, Shuang Zeng, Qian Chen, and Yanye Lu. V2c-cbm: Building concept bottlenecks with vision-to-concept tokenizer. *arXiv preprint arXiv:2501.04975*, 2025.
+- Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In *Proceedings of the IEEE conference on computer vision and pattern recognition*, pp. 770–778. 2016.
+- Md Imran Hossain, Ghada Zamzmi, Peter Mouton, Yu Sun, and Dmitry Goldgof. Enhancing concept-based explanation with vision-language models. In *2024 IEEE 37th International Symposium on Computer-Based Medical Systems (CBMS)*, pp. 219–224. IEEE, 2024.
+- Lijie Hu, Tianhao Huang, Huanyi Xie, Xilin Gong, Chenyang Ren, Zhengyu Hu, Lu Yu, Ping Ma, and Di Wang. Semi-supervised concept bottleneck models. *arXiv preprint arXiv:2406.18992*, 2024a.
+
+ Rest of paper (reference and Appendix) is removed.
\ No newline at end of file
diff --git a/papers/OUQ8kLRK3m.txt b/papers/OUQ8kLRK3m.txt
new file mode 100644
index 0000000000000000000000000000000000000000..81d1484dbaeb9cda8819837a9c6d4163e2593c30
--- /dev/null
+++ b/papers/OUQ8kLRK3m.txt
@@ -0,0 +1,425 @@
+
+
+{0}------------------------------------------------
+
+# TRULY ASSESSING FLUID INTELLIGENCE OF LARGE LANGUAGE MODELS THROUGH DYNAMIC REASONING EVALUATION
+
+**Anonymous authors**
+
+Paper under double-blind review
+
+## ABSTRACT
+
+Recent advances in large language models (LLMs) have demonstrated impressive reasoning capacities that mirror human-like thinking. However, whether LLMs possess genuine fluid intelligence (i.e., the ability to reason abstractly and generalize rules in novel situations) remains an open question. Existing reasoning benchmarks either focus on domain-specific knowledge (crystallized intelligence) or lack interpretability. To address these limitations, we propose DRE-Bench, a dynamic reasoning evaluation benchmark grounded in a hierarchical cognitive framework. DRE-Bench consists of 36 abstract reasoning tasks organized across four cognitive levels, with each task featuring multiple dynamic variants that test the same underlying latent rule. This design enables fine-grained, interpretable, and reliable assessments of fluid intelligence. We evaluate a range of state-of-the-art LLMs, including both general LLMs (GPT-4o, Claude 3.7) and reasoning LLMs (o1, DeepSeek-R1, QwQ, Skywork-OR1). Experimental results reveal that although most LLMs achieve competent and robust performance in low-level cognition, they struggle with high-level cognition and exhibit limited generalization as task complexity grows. Our findings highlight the gap between current LLMs and true human-like fluid intelligence and offer a new path for systematically tracking reasoning progress in LLMs.
+
+## 1 INTRODUCTION
+
+Recently, large language models (LLMs) (OpenAI, 2024b; DeepSeek-AI et al., 2025; Anthropic, 2024; OpenAI, 2024a; Yang et al., 2024a) have achieved remarkable success across various applications, such as disciplines (Cobbe et al., 2021; Lewkowycz et al., 2022), intelligent chatbots (Zhang et al., 2023; Ouyang et al., 2022) and code generation (Chen et al., 2021; Nijkamp et al., 2023). Models like OpenAI’s o1 (OpenAI, 2024b) leverage substantial test-time computation to refine their reasoning processes, learn from previous errors, and explore diverse strategies, exhibiting a degree of cognitive behavior that closely mirrors human-like thinking. As such, there is an urgent need for a principled evaluation framework to track and quantify the reasoning intelligence of cutting-edge LLMs systematically.
+
+Existing reasoning benchmarks can be broadly categorized into two major types: crystallized intelligence (Cattell, 1963; Schipolowski et al., 2014) and fluid intelligence (Cattell, 1963; Kent, 2017). Crystallized intelligence refers to models’ ability to apply accumulated knowledge to solve problems. Representative benchmarks such as AIME (Ye et al., 2025), GPQA (Rein et al., 2024), and SuperGPQA (Du et al., 2025) which require multi-step reasoning grounded in domain-specific knowledge. However, as LLMs increasingly achieve expert-level performance on such knowledge-intensive tasks, the community gradually recognized that fluid intelligence—the ability to generalize beyond memorized content and reason in novel settings—is becoming increasingly important (Raven, 2003; Flanagan et al., 2007). In assessing the fluid intelligence of LLMs, ARC-AGI series (Chollet, 2019; Chollet et al., 2024) raise abstract reasoning tasks and is regarded as a milestone. Such tasks require LLMs to infer the latent rule solely from provided input-output training pairs and generalize it to predict correct outputs for novel testing inputs. Figure 1(a) illustrates two examples of such latent rules, frequency identification and category classification.
+
+{1}------------------------------------------------
+
+054
+055
+056
+057
+058
+059
+060
+061
+062
+063
+064
+065
+066
+067
+068
+069
+070
+071
+072
+073
+074
+075
+076
+077
+078
+079
+080
+081
+082
+083
+084
+085
+086
+087
+088
+089
+090
+091
+092
+093
+094
+095
+096
+097
+098
+099
+100
+101
+102
+103
+104
+105
+106
+107
+
+
+
+Figure 1 consists of three panels. Panel (a) shows two examples of latent rules in abstract reasoning tasks. The first rule is 'Identify the most frequent color in the grid cells above the dividing line, and put it under the dividing line.' The second rule is 'Classify several categories, and fill the corresponding colors.' Panel (b) compares 'Previous Bench' (mixed latent rule, scalability: human annotated, dynamic: fixed dataset) with 'DRE-Bench' (hierarchical cognition-aligned, scalability: code generated, dynamic: with varying complexity). Panel (c) is a scatter plot of 'Accuracy' vs 'Variance' for various LLMs on DRE-Bench.
+
+| Model | Variance (x-axis) | Accuracy (y-axis) |
+|-|-|-|
+| DeepSeek-R1 | ~0.02 | ~0.4 |
+| Claude3.5-Sonnet | ~0.04 | ~0.3 |
+| QwQ-32B | ~0.03 | ~0.1 |
+| GPT-4o | ~0.02 | ~0.05 |
+| skywork-OR1 | ~0.02 | ~0.02 |
+| a3-moai | ~0.01 | ~0.01 |
+
+Figure 1: (a) Examples of the latent rule hidden in test cases. (b) Comparison of our DRE-Bench and Previous Bench. (c) Leaderboard of Intelligence on DRE-Bench.
+
+Figure 1: (a) Examples of the latent rule hidden in test cases. (b) Compared with previous benchmarks, our DRE-Bench demonstrates advantages in terms of hierarchy (cognition-aligned), scalability (code-generated), and dynamism (varying complexity). (c) Leaderboard of LLM intelligence on DRE-Bench, with accuracy on the y-axis and stability on the x-axis.
+
+Although recent efforts (Chollet, 2019; Chollet et al., 2025) have attempted to measure the fluid intelligence of LLMs, such as analyzing atomic operations (Wu et al., 2025) and the stochastic parrot phenomenon (Yu et al., 2025), they face several limitations as shown in Figure 1(b). First, existing benchmarks usually comprise abstract reasoning cases whose latent rules are not linked with stages of human cognition (Primi, 2001). Consequently, it is hard to tell what level of human-like intelligence a model has reached. Second, previous studies require manual annotation, which is labor-intensive and constrains benchmarks’ scalability and diversity of latent rules. Third, these benchmarks are inherently static, with each latent rule linked to only one or a few fixed cases. Such a static nature suffers from data contamination (Li et al., 2024a; Yang et al., 2024b), making it hard to determine whether the model truly understands the latent rule or merely memorizes it.
+
+To address these challenges, we propose a Dynamic Reasoning Evaluation benchmark, DRE-Bench, designed to assess the genuine fluid intelligence of large language models (LLMs). DRE-Bench is structured around a confirmed psychology hierarchy (Primi, 2001), with four cognitive levels ranging from simple to complex reasoning: Attribute, Spatial, Sequential, and Conceptual level. Each level contains 3 latent rules specified by several designed abstract reasoning tasks. Due to the simple data format of abstract reasoning tasks, we design a code-based generator and solver for each task, which can generate multiple dynamic variants with different levels of complexity. In total, DRE-Bench provides about 4K abstract reasoning cases. This framework enables a fine-grained, cognition-aligned evaluation of the abstract reasoning ability and allows for a robust assessment of fluid intelligence by analyzing both accuracy and variance across tasks with consistent latent rules.
+
+Compared to existing benchmarks, DRE-Bench offers three key advantages as illustrated in Figure 1(b). *i) Cognition-aware task hierarchy.* DRE-Bench presents reasoning tasks with a cognitive hierarchy, which explicitly aligns each task with four human-like cognitive levels. This alignment provides good interpretability and allows mapping model behavior to specific cognitive capabilities. *ii) Human-Agent Collaboration Pipeline.* For each latent rule, we employ LLM-driven agents to design code-based generators and solvers, which can produce input samples and corresponding answers accurately. To this end, our data generation pipeline achieves high correctness, efficiency, and scalability. *iii) Dynamic evaluation.* DRE-Bench supports dynamic generation of multiple task instances by flexibly varying the latent rule-related variables, obtaining extensive variants with different levels of complexity. This dynamic property helps avoid the data contamination issue that static datasets are prone to (Li et al., 2024a;b; Yang et al., 2024b). Therefore, we can precisely and comprehensively assess whether LLMs have truly grasped the underlying reasoning rules, further tracking the fluid intelligence of current LLMs.
+
+We conduct comprehensive experiments on DRE-Bench using a range of LLMs, including general-purpose models without explicit reasoning capabilities such as GPT-4o (OpenAI, 2024a) and Claude-3.7 (Anthropic, 2024), and reasoning LLMs (models with thinking) such as OpenAI-o1 (OpenAI, 2024b), DeepSeek-R1 (DeepSeek-AI et al., 2025), QwQ (Yang et al., 2024a), Skywork-OR1 (He et al., 2025), etc. The takeaways of our key findings are as follows:
+
+{2}------------------------------------------------
+
+- As the cognitive level of the reasoning tasks increases, model accuracy consistently declines, particularly for tasks involving physical concepts. Among them, OpenAI-o1 and DeepSeek-R1 demonstrate stronger performance and stability, while Claude 3.7 stands out in general LLMs. (Figure 1(c) and Section 4.2).
+- Reasoning LLMs outperform general LLMs on most abstract reasoning tasks. Moreover, as the cognitive level increases, the difference between models becomes more pronounced; differences may be minimal on lower-level tasks, but in higher-level tasks, stronger LLMs will exhibit a more obvious advantage (Section 4.2).
+- We analyzed model accuracy and stability across different complexities. We observed that with the complexity of a specific task increasing, models whose performance declines may not possess genuine fluid intelligence; only those that continue to perform well can be considered to truly master the underlying reasoning rules (Section 4.3).
+- Increasing the number of in-context training examples can slightly boost LLMs’ performance. However, adding visual information about the abstract reasoning problems has little positive impact, and sometimes even leads to a decrease in model accuracy (Section 4.4).
+- Inference time scaling plays a more important role in low-level reasoning tasks, but may be insufficient towards high-level latent rules as complexity increases (Section 4.4).
+
+Overall, the **contributions** of this paper are summarized as follows. 1) We propose an abstract reasoning benchmark with a cognition hierarchy, providing a more structural and comprehensive system to analyze the LLMs’ true fluid intelligence. 2) We develop a verifiable and scalable data engine to dynamically generate abstract reasoning data with various complexities, by designing a generator and solver for each task. 3) We perform comprehensive evaluations on a variety of popular LLMs, indicating that the existing LLMs still struggle to solve the reasoning problem of high cognitive levels. Existing LLMs may not have truly internalized the underlying reasoning rules, which highlights that they remain far from achieving true fluid intelligence.
+
+## 2 RELATED WORK
+
+### 2.1 EVALUATION FOR FLUID INTELLIGENCE
+
+There have been numerous attempts to define and measure the intelligence degree of existing large language models. Among them, the Abstraction and Reasoning Corpus(ARC) (Chollet, 2019) is regarded as a milestone, which defines that true intelligence should possess skill-acquisition efficiency. This concept attracted broad attention and led to many analytical studies (Wu et al., 2025; Yu et al., 2025; Acquaviva et al., 2022; Xu et al., 2023; Wang et al., 2023; 2024a). (Wu et al., 2025) select some atomic abstract reasoning operations, and find that LLMs perform poorly on some atomic operations. (Yu et al., 2025) designed PHYSICO to evaluate whether LLMs really understand the physical phenomena they describe, by comparing language-format description and corresponding ARC format grid. However, existing abstraction reasoning benchmarks haven’t categorized tasks along cognitive dimensions, and can only provide a coarse-grained evaluation of LLMs’ reasoning ability. In addition, all these benchmarks are static, implying that they are highly susceptible to data contamination and only possess fixed complexity. Therefore, our work proposes DRE-Bench, a hierarchical cognitive dynamic benchmark on abstract reasoning. DRE-Bench can automatically generate data with varying levels of complexity, enabling comprehensive and fine-grained evaluation of LLM intelligence.
+
+### 2.2 DYNAMIC EVALUATION
+
+Studies (Li et al., 2024a;b; Yang et al., 2024b) have found that static benchmarks are highly prone to data contamination and have detected severe data contamination rates in some LLM benchmarks like (Wang et al., 2018; 2024b). Moreover, their static nature implies a fixed level of complexity, making it difficult to adapt to evolving model capabilities. Therefore, some researchers have pioneered the exploration of dynamic evaluation on LLMs. Study (Zhu et al., 2023) proposed DyVal to dynamically generate test samples based on the graph structure to combat data contamination. Similarly, NPHardEval (Fan et al., 2023) generates new evaluation samples for NP-hard mathematical problems. To extend dynamic evaluation to more diverse NLP tasks, (Zhu et al., 2024) further
+
+{3}------------------------------------------------
+
+162
+163
+164
+165
+166
+167
+168
+169
+170
+171
+172
+173
+174
+175
+176
+177
+178
+179
+180
+181
+182
+183
+184
+185
+186
+187
+188
+189
+190
+191
+192
+193
+194
+195
+196
+197
+198
+199
+200
+201
+202
+203
+204
+205
+206
+207
+208
+209
+210
+211
+212
+213
+214
+215
+
+
+
+The diagram illustrates four cognitive levels of abstract reasoning tasks:
+
+- Level-1 Attribute:**
+ - Size:** Change the size of the whole grid while conducting denoising. Example: A 10x10 grid with a small object is transformed into a 30x30 grid with a larger object.
+ - Count:** Change the number of colors filled in grids to be counted. Example: A grid with 2 colors is transformed into a grid with 9 colors.
+ - Shape:** Change the shape of an object enlarge according to the shape. Example: A 1x1 grid with a yellow square is transformed into a 9x9 grid with a larger yellow square.
+- Level-2 Spatial:**
+ - Move:** Move the object several steps towards right. Example: An object moves 2 steps right in a 10x10 grid.
+ - Symmetry:** Perform the vertical symmetry of the object along axis. Example: An object is reflected across a vertical axis in a 10x10 grid.
+ - Rotation:** Rotate the object around the endpoint of line. Example: An object is rotated 45 degrees in a 10x10 grid.
+- Level-3 Sequential:**
+ - Category:** Classify several objects, and apply the corresponding rules. Example: Objects are classified into categories 3 and 4 based on their shape and color.
+ - Planning:** Starting from a point, plan and execute a path to the nearest point. Example: A path is planned from a starting point to a nearest point in a 10x10 grid.
+ - Sorting:** Rearrange several objects according to the sequential rule. Example: Objects are sorted according to a sequential rule in a 10x10 grid.
+- Level-4 Conceptual:**
+ - Gravity:** Objects in mid-air should fall downward according to gravity. Example: Objects fall downward in a 10x10 grid over time.
+ - Reflection:** The light should reflect upon hitting the walls until absorbed by barrier. Example: Light rays reflect off walls in a 10x10 grid over time.
+ - Expansion:** Objects should expand when heated, until obstructed by barrier. Example: Objects expand in a 10x10 grid over time.
+
+Figure 2: Specific abstract reasoning tasks across four cognitive levels. The diagram is a 4x3 grid. The columns are labeled 'Level-1 Attribute', 'Level-2 Spatial', 'Level-3 Sequential', and 'Level-4 Conceptual'. Each cell contains a task name, a description, an example, and two input/output pairs with arrows indicating variable ranges.
+
+Figure 2: Specific abstract reasoning tasks across four cognitive levels. For each task, we visualize two pairs of input and output, corresponding to two different values of the dynamic variable. The arrows are labeled with variable ranges, with darker colors indicating higher complexity.
+
+developed MPA, which employs LLM-based agents to transform existing problems into new ones. However, most of these dynamic evaluation methods are designed for general NLP tasks and are not applicable to more complex reasoning scenarios. More critically, the accuracy of their dynamically generated data is difficult to verify, leaving their reliability in constant doubt. In this work, we are the first to introduce a dynamic evaluation paradigm for abstract reasoning tasks. Our data generation process is code-verifiable, ensuring 100% reliability of the generated samples.
+
+## 3 METHOD
+
+### 3.1 CONSTRUCTING COGNITION-INSPIRED ABSTRACT REASONING FRAMEWORK
+
+Studies about fluid intelligence (Raven, 2003; Carpenter et al., 2018; Primi, 2001) indicate that the complexity of a reasoning problem may be related to the types of rules applied in the inductive reasoning process. Among them, the rule-type hierarchy proposed by Ricardo (Primi, 2001) represents a relatively comprehensive cognitive framework in psychology. This framework categorizes inductive rule-type as four top-down levels, and proves the four levels form a true cognitive hierarchy: as from rule level 1 to 4, people impose qualitatively greater demands on abstraction, working memory, with reaction times and error rates also increasing. Therefore this categorization is suitable to assess the human-like fluid intelligence of LLMs.
+
+According to this cognitive hierarchy of reasoning rule and corresponding rule variables, we propose our abstract reasoning framework as Figure 2. For the first-tier framework, we adopt four levels, namely (1) Attribute, (2) Spatial, (3) Sequential, and (4) Conceptual. Then, for each cognitive level, we summarize a series of related rule variables related to abstract reasoning tasks. Finally, for each rule variable, we design three sets of dynamic case generators to enable fine-grained evaluation of LLMs’ corresponding cognitive reasoning capabilities. The detailed dataset table is in Appendix C.
+
+**Level-1: Attribute.** In the attribute level, we follow the operational dimensions identified in cognitive psychology (Primi, 2001), dynamically evaluating the reasoning capabilities of LLMs along three key rule types: size, count, and shape.
+
+**Level-2: Spatial.** In the spatial level, drawing on psychological studies, we designed a set of classic rules that comprehensively capture the notion of spatial reasoning, namely move, rotation, and symmetry. Specifically, for the “move” rule, we design dynamic data along five directional axes: up, down, left, right, and upper-right. For each direction, we set the moving distance from 1 to 30. This enables a fine-grained assessment of the LLM’s understanding of both moving direction and
+
+{4}------------------------------------------------
+
+
+
+The diagram illustrates the DRE-Bench Data Generation Pipeline. It starts with 'Level (4)' and 'Rule (12)' leading to 'Base Task & Variable (34)'. This leads to 'Constraint C -> rule', which is a box containing 'Task Constraint C' (What constraints should be followed when generating dynamic data for specific task to accurately reflect the corresponding rule?) and four sub-constraints: $C_1$ : Grid Boundary, $C_2$ : Color Assignment, $C_3$ : Specific Structure, and $C_4$ : Object Placement. This is then processed by a 'CodeAgent' to generate 'Generator G -> input' (Task Generator: $G = f(V)$ , A code function that generates input grid based on the corresponding task rule, variable value assignment) and 'Solver S -> output' (Task Solver: $S = f(V, \text{step})$ , A code function that solves the case according to rule, variable, input grids, obtaining the ground truth). The generator produces 'input' grids (e.g., $V_1, V_2, \dots$ ) and the solver produces 'output' grids (e.g., $V_1, V_2, \dots$ ). These are then used by a 'Tester' to produce 'Task Case' (Val, $V_1, V_2, \dots$ ). A 'FeedBack' loop from the Tester back to the CodeAgent is also shown.
+
+Figure 3: DRE-Bench Data Generation Pipeline. The diagram shows a flow from Level (4) and Rule (12) through a Base Task & Variable (34) to a Constraint C -> rule. The constraint is then processed by a CodeAgent to generate a Generator G -> input and a Solver S -> output. The generator produces input grids, and the solver produces output grids. These are then used by a Tester to produce Task Cases (Val, Vn, ...). A feedback loop from the Tester back to the CodeAgent is also shown.
+
+Figure 3: DRE-Bench Data Generation Pipeline: (1) Professionals identify task-specific constraints and rules. (2) A CodeAgent collaborates with annotators to implement the generator and solver. (3) Different configurations are used to produce diverse cases.
+
+distance. Similarly, for the “rotation” rule, we design two types of rotation axes, namely around an endpoint and around the center of objects. For each rotation setting, we change the rotation angle from 0 to 360 degrees. For the “symmetry” rule, we design tasks based on horizontal, vertical, and diagonal symmetry. For each type, the number of objects to be symmetrized can vary arbitrarily.
+
+**Level-3: Sequential.** For Level-3, we incorporate reasoning rules that require multi-step inference and higher-order abstract ability. Specifically, we include: category learning, which requires identifying categories based on shared attributes across varying contexts; sorting, which requires understanding order and rearranging placement; and planning, which involves goal-directed problem solving by multiple reasoning steps. To precisely control task complexity within these reasoning types, we designed corresponding rule variables: the number of categories to be distinguished, the number of elements to be sorted, and the number of planning steps required.
+
+**Level-4: Conceptual.** For Level-4, we focus on scientific concepts, which require not only high-level abstract reasoning but also the application of conceptual knowledge. Drawing inspiration from fundamental branches of physics (Yu et al., 2025), we introduce three representative concepts: gravity, reflection, and expansion. To further increase task complexity, we progressively intensify the application of these physical rules.
+
+### 3.2 DATA GENERATION FRAMEWORK
+
+After determining the cognitive level, we proceed to select the specific rule to evaluate the LLM’s reasoning performance. To enable fine-grained assessment, we design approximately three tasks for each rule. For example, the “move” rule includes five directional tasks: up, down, left, right, and upper-right movement. As shown in Figure 3, for each task, we identify its underlying constraint, then a code agent constructs a set of generators and solvers, upon human inspection, can be used to batch-produce input-output pairs. Such a human-agent collaboration pipeline can ensure scalability not only in the volume of data but also in the diversity of new rule.
+
+**Identifying Constraint.** First, for a given task, professionals identify all case-relevant constraints, such as , ,