<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>ICML 2026 | Xinyue Zheng</title><link>https://grandsmile.github.io/tags/icml-2026/</link><atom:link href="https://grandsmile.github.io/tags/icml-2026/index.xml" rel="self" type="application/rss+xml"/><description>ICML 2026</description><generator>Hugo Blox Builder (https://hugoblox.com)</generator><language>en-us</language><lastBuildDate>Wed, 01 Jul 2026 00:00:00 +0000</lastBuildDate><image><url>https://grandsmile.github.io/media/icon_hu_982c5d63a71b2961.png</url><title>ICML 2026</title><link>https://grandsmile.github.io/tags/icml-2026/</link></image><item><title>UniCode: Augmenting Evaluation for Code Reasoning</title><link>https://grandsmile.github.io/publications/unicode/</link><pubDate>Wed, 01 Jul 2026 00:00:00 +0000</pubDate><guid>https://grandsmile.github.io/publications/unicode/</guid><description>&lt;p&gt;&lt;strong&gt;ICML 2026&lt;/strong&gt; ·
·
·
&lt;/p&gt;
&lt;blockquote class="border-l-4 border-neutral-300 dark:border-neutral-600 pl-4 italic text-neutral-600 dark:text-neutral-400 my-6"&gt;
&lt;p&gt;&lt;strong&gt;UniCode&lt;/strong&gt; is a generative evaluation framework for code reasoning. Instead of asking whether a model can solve a familiar static benchmark, UniCode asks whether the model can still reason when the problem is structurally rewritten, recomposed, scaled, and tested against robust corner cases.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;figure&gt;&lt;img src="https://grandsmile.github.io/publications/unicode/figure1-overview.png"
alt="UniCode overview" width="100%"&gt;
&lt;/figure&gt;
&lt;h2 id="background-the-evaluation-paradox"&gt;Background: the evaluation paradox&lt;/h2&gt;
&lt;p&gt;Modern code LLMs score impressively on standard benchmarks, yet often fail when requirements shift in realistic coding settings. This is the &lt;strong&gt;evaluation paradox&lt;/strong&gt;: high benchmark accuracy does not necessarily mean robust reasoning. Static benchmarks can be saturated, contaminated, or solved through familiar templates and statistical shortcuts rather than genuine algorithmic adaptation.&lt;/p&gt;
&lt;p&gt;UniCode addresses this by moving from &lt;strong&gt;static evaluation&lt;/strong&gt; to &lt;strong&gt;generative evaluation&lt;/strong&gt;. Instead of repeatedly testing a fixed set of problems, UniCode expands a dynamic problem space by transforming high-quality seed tasks into new variants that preserve rigor while changing the reasoning path required to solve them.&lt;/p&gt;
&lt;h2 id="why-existing-benchmarks-are-still-insufficient"&gt;Why existing benchmarks are still insufficient&lt;/h2&gt;
&lt;p&gt;Many recent benchmark variants improve coverage, but a large portion of them still rely on &lt;strong&gt;shallow perturbations&lt;/strong&gt;—for example variable renaming, story rewriting, or surface-level rephrasing. As we argue in the paper, these settings often focus on &lt;strong&gt;superficial variations&lt;/strong&gt; rather than changing the &lt;strong&gt;underlying reasoning logic&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;That means a model can appear robust simply because the old solution template still works. But in realistic coding, the challenge is not just reading a different story — it is adapting when the constraint changes, when the complexity budget changes, or when multiple algorithmic ideas must be composed together.&lt;/p&gt;
&lt;p&gt;UniCode is designed to test exactly this deeper form of reasoning.&lt;/p&gt;
&lt;h2 id="methodology"&gt;Methodology&lt;/h2&gt;
&lt;p&gt;UniCode has three main components.&lt;/p&gt;
&lt;h3 id="1-multi-dimensional-task-augmentation"&gt;1. Multi-dimensional task augmentation&lt;/h3&gt;
&lt;p&gt;UniCode starts from high-quality seed programming problems and generates new tasks along &lt;strong&gt;five reasoning axes&lt;/strong&gt;:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Axis&lt;/th&gt;
&lt;th&gt;What changes&lt;/th&gt;
&lt;th&gt;What it probes&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Narrative perturbation&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Theme, variable names, or irrelevant context&lt;/td&gt;
&lt;td&gt;Whether the model is biased by surface tokens&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Rule modification&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Operational rules or boundary conditions&lt;/td&gt;
&lt;td&gt;Whether the model follows new constraints instead of a memorized solution&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Efficiency scaling&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Input scale and computational budget&lt;/td&gt;
&lt;td&gt;Whether the model switches to a more efficient algorithm when needed&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Sequential composition&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Multiple algorithmic steps are chained together&lt;/td&gt;
&lt;td&gt;Whether the model can maintain long reasoning chains&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Concept fusion&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Multiple algorithmic concepts are merged into one task&lt;/td&gt;
&lt;td&gt;Whether the model can perform combinatorial generalization&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;These augmentations intentionally change the &lt;strong&gt;reasoning graph&lt;/strong&gt;, not just the wording.&lt;/p&gt;
&lt;h3 id="2-stress-driven-test-generation"&gt;2. Stress-driven test generation&lt;/h3&gt;
&lt;p&gt;For newly generated tasks, human-written reference solutions do not scale. UniCode therefore constructs reliable test suites through a &lt;strong&gt;stress-driven pipeline&lt;/strong&gt;.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://grandsmile.github.io/publications/unicode/figure2-test-generation.png"
alt="Stress-driven test generation" width="100%"&gt;
&lt;/figure&gt;
&lt;p&gt;The pipeline combines &lt;strong&gt;random cases&lt;/strong&gt;, &lt;strong&gt;adversarial cases&lt;/strong&gt;, and &lt;strong&gt;corner cases&lt;/strong&gt;. For ground-truth outputs, UniCode uses brute-force solvers on small inputs, filters optimized candidates through trusted stress tests, uses majority voting on larger inputs, and finally applies LLM adjudication when solver outputs disagree.&lt;/p&gt;
&lt;h3 id="3-fine-grained-diagnosis"&gt;3. Fine-grained diagnosis&lt;/h3&gt;
&lt;p&gt;A single pass/fail score hides why a model fails. UniCode therefore categorizes failures into &lt;strong&gt;modeling errors&lt;/strong&gt;, &lt;strong&gt;logic bugs&lt;/strong&gt;, &lt;strong&gt;complexity errors&lt;/strong&gt;, &lt;strong&gt;indexing/cache bugs&lt;/strong&gt;, and &lt;strong&gt;other implementation mistakes&lt;/strong&gt;. This turns the benchmark from a simple leaderboard into a diagnostic tool for reasoning analysis.&lt;/p&gt;
&lt;h2 id="experimental-results"&gt;Experimental results&lt;/h2&gt;
&lt;p&gt;UniCode evaluates &lt;strong&gt;19 LLMs&lt;/strong&gt; across reasoning-focused, general-purpose, and open-source families. The benchmark is both challenging and discriminative: even the top model reaches only &lt;strong&gt;70.3% average Pass@1&lt;/strong&gt;, and the average performance drop from seed problems to UniCode variants is &lt;strong&gt;31.2%&lt;/strong&gt;.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://grandsmile.github.io/publications/unicode/leaderboard.png"
alt="UniCode leaderboard" width="100%"&gt;
&lt;/figure&gt;
&lt;h3 id="main-takeaways"&gt;Main takeaways&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Large performance collapse:&lt;/strong&gt; strong performance on seed benchmarks does not reliably transfer to structurally augmented variants.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hard split is still very difficult:&lt;/strong&gt; several models drop to &lt;strong&gt;0.0%&lt;/strong&gt; on the hard subset.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Narrative shifts are easier than structural shifts:&lt;/strong&gt; models are relatively robust to surface changes, but often fail when the logic, scale, or composition changes.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Reliable automatic evaluation:&lt;/strong&gt; the stress-driven pipeline achieves &lt;strong&gt;94.5% correctness&lt;/strong&gt; and &lt;strong&gt;86.0% coverage&lt;/strong&gt; in the test-generation quality study.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="where-do-models-fail"&gt;Where do models fail?&lt;/h2&gt;
&lt;p&gt;UniCode reveals that model failures are &lt;strong&gt;structured&lt;/strong&gt;, not random. The paper highlights three key findings:&lt;/p&gt;
&lt;h3 id="1-large-variance-across-reasoning-dimensions"&gt;1. Large variance across reasoning dimensions&lt;/h3&gt;
&lt;p&gt;Aggregate benchmark scores hide substantial within-model variance. Even strong models can perform well on one reasoning axis and collapse on another. This means a single average score often masks important blind spots.&lt;/p&gt;
&lt;h3 id="2-structural-changes-are-much-harder-than-surface-changes"&gt;2. Structural changes are much harder than surface changes&lt;/h3&gt;
&lt;p&gt;Models are comparatively robust to &lt;strong&gt;narrative perturbations&lt;/strong&gt;, but they deteriorate sharply once the &lt;strong&gt;underlying reasoning graph&lt;/strong&gt; changes. The hardest settings are typically &lt;strong&gt;efficiency scaling&lt;/strong&gt;, &lt;strong&gt;sequential composition&lt;/strong&gt;, and &lt;strong&gt;concept fusion&lt;/strong&gt;, which require the model to adapt its strategy rather than reuse a familiar template.&lt;/p&gt;
&lt;h3 id="3-seed-problem-regression"&gt;3. Seed-problem regression&lt;/h3&gt;
&lt;p&gt;The most revealing phenomenon is &lt;strong&gt;seed-problem regression&lt;/strong&gt;: models frequently fall back to the logic of the original seed task even when the augmented problem invalidates that logic. In other words, the model recognizes the old template, but fails to integrate the new constraints.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://grandsmile.github.io/publications/unicode/figure3-reasoning-variants.png"
alt="Model performance across reasoning variants" width="100%"&gt;
&lt;/figure&gt;
&lt;p&gt;Beyond accuracy, UniCode also shows that the dominant error types are not small implementation mistakes. Instead, the main failures are &lt;strong&gt;modeling errors&lt;/strong&gt; and &lt;strong&gt;complexity errors&lt;/strong&gt;, revealing weaknesses in conceptualization, algorithm selection, and computational scaling.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://grandsmile.github.io/publications/unicode/figure4-error-distribution.png"
alt="Error distribution across models" width="100%"&gt;
&lt;/figure&gt;
&lt;p&gt;Figure 5 provides concrete case studies of these failures. The examples show that models often reuse a memorized modeling paradigm or a low-efficiency solution that was valid for the seed task, but becomes wrong once new structure or new constraints are introduced.&lt;/p&gt;
&lt;figure&gt;&lt;img src="https://grandsmile.github.io/publications/unicode/figure5-seed-regression.png"
alt="Seed-problem regression case study" width="100%"&gt;
&lt;/figure&gt;
&lt;p&gt;Together, these results suggest that current code LLMs are often strong at syntax and familiar templates, but still fragile in &lt;strong&gt;zero-shot adaptation to novel algorithmic requirements&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 id="resources"&gt;Resources&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Paper:&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Code:&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dataset:&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-python" data-lang="python"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="nn"&gt;datasets&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;load_dataset&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="n"&gt;dataset&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;load_dataset&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;grandsmile/Generative_Coding_Dataset&amp;#34;&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="citation"&gt;Citation&lt;/h2&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-bibtex" data-lang="bibtex"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nc"&gt;@article&lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nl"&gt;zheng2026unicode&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;title&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;{UniCode: Augmenting Evaluation for Code Reasoning}&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;author&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;{Zheng, Xinyue and Lin, Haowei and Cai, Shaofei and Zheng, Zilong and Yang, Yaodong and Liang, Yitao}&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;journal&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;{arXiv preprint arXiv:2510.17868}&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="na"&gt;year&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s"&gt;{2026}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description></item></channel></rss>