HyperAIHyperAI

Command Palette

Search for a command to run...

AutoDesign: 장기 지평 에이전틱 설계를 위한 메타-하네스 최적화

초록

멀티모달 소스를 압축적이고 구조화된 미디어 출력으로 변환하는 작업은 근본적으로 모델-하네스 시스템을 중심으로 한 장기 지평 에이전틱 프로세스로 개념화할 수 있다. 이상적인 하네스 시스템은 인간의 설계 사전 지식과 정렬되어야 하며, 경험적 탐색을 통해 재사용 가능한 경험을 축적하여 재귀적 자기 개선을 이끌어내야 하지만, 기존 패러다임은 정적이며 이러한 역량에 미치지 못한다. 본 논문에서는 인간의 설계 사전 지식과 정렬되는 프레임워크인 AutoDesign을 제시한다. 여기서 메타-하네스 최적화기가 롤아웃 피드백을 기반으로 코드 에이전트를 안내하여 하네스를 재귀적으로 개선한다. 이 프레임워크를 구체화하고 평가하기 위해, 학술 논문-포스터 생성 과제에 초점을 맞추고 5개 학문 분야에 걸친 100편의 논문으로 구성된 메인 트랙 PosterBench와 통제 평가를 위한 공유 10편의 논문 하위 집합인 PosterBench-mini를 소개한다. PosterBench 메인 트랙에서 AutoDesign은 78.32점의 최고 점수를 달성하여 폐쇄형 상용 시스템인 Claude Design을 7.45점 앞선다. 7가지 통제된 코드 에이전트-모델 구성 전반에서, 학습된 DesignHarness를 통합하면 성능이 일관되게 향상되어 평균 PosterBench 점수가 54.99에서 67.39로 상승한다(+12.4%). 완전 자율적인 장기 지평 루프에서, 40분 이내에 253회의 도구 호출과 11회의 편집 턴을 3달러 미만의 비용으로 실행하여 인간 평가에서 평균적인 학술대회 포스터 품질에 도달한다. 시스템 블라인드 인간 대상 연구는 AutoDesign이 평가된 시스템 중 가장 높은 인간 선호도를 달성함을 추가로 입증한다.

One-sentence Summary

Researchers from Meituan, MBZUAI, Huazhong University of Science and Technology, and other institutions propose AutoDesign, a framework that aligns with human design priors by using a meta-harness optimizer to guide a code agent in recursively improving the harness based on rollout feedback; in the paper-to-poster PosterBench evaluation, AutoDesign achieves a score of 78.3278.3278.32, surpassing Claude Design by 7.457.457.45 points, and it raises the average PosterBench Score from 54.9954.9954.99 to 67.3967.3967.39.

Key Contributions

  • AutoDesign is a meta-harness optimization framework that recursively updates one DesignHarness component at a time from aggregated rollout trajectories, source and rendering diagnostics, evaluator feedback, and reference posters while keeping model weights fixed.
  • PosterBench is introduced as a unified evaluation protocol for academic paper-to-poster generation, with a 100-paper Main Track spanning five disciplines and a shared 10-paper PosterBench-mini subset for controlled evaluation.
  • AutoDesign achieves the highest PosterBench Main Track score of 78.32, surpassing Claude Design by 7.45 points. Across seven controlled code agent-model configurations, the learned DesignHarness improves average PosterBench Score from 54.99 to 67.39 (+12.4%), and a system-blind human study rates AutoDesign highest in preference.

Introduction

Multimodal design requires turning heterogeneous sources into editable, human-facing artifacts such as posters, slides, and webpages, making it a challenging long-horizon task because systems must extract evidence, reason across mixed inputs, plan revisions, and respond to feedback. Prior systems often rely on generation-critique-revision cycles and may retain reflections or skills, but they typically treat human-aligned feedback as a transient correction to one output rather than as reusable knowledge for improving the production system itself. The authors propose AutoDesign, a meta-harness optimization framework that recursively improves a design harness across tasks by grounding human preferences through an evaluator initialized from annotated references and by accepting harness updates only when they improve training performance without degrading a development set. They instantiate this approach as DesignHarness for academic paper-to-poster generation and introduce PosterBench, a benchmark and evaluation protocol that jointly measures source fidelity, scientific communication, layout, readability, and visual quality.

Method

The authors define a design harness HHH as the system surrounding a fixed model πθ\pi_\thetaπθ that transforms a multimodal source xxx into a human-facing artifact yyy given context ccc:

yH(πθ,x,c)y \sim H(\pi_\theta, x, c)yH(πθ,x,c)

The harness produces the artifact through an execution trajectory τ\tauτ, which records the sequence of intermediate actions and revisions. To enable systematic meta-harness optimization and facilitate credit assignment, the design harness is decomposed into five functional components: Context and Memory, Tools and Specifications, Execution Runtime, Orchestration, and Evaluation and Feedback.

The meta-harness operates on this design harness to improve its concrete implementation. Given a user specification and an initial harness H0H_0H0, the meta-harness yields an optimized harness HTH_THT. The optimization target is the expected quality of artifacts produced by the design harness:

J(H)=E(x,c)ptask,yH(πθ,x,c)[Rmeta(y,x,c)]J(H) = \mathbb{E}_{(x, c) \sim p_{\text{task}}, y \sim H(\pi_\theta, x, c)} [R_{\text{meta}}(y, x, c)]J(H)=E(x,c)ptask,yH(πθ,x,c)[Rmeta(y,x,c)]

where RmetaR_{\text{meta}}Rmeta is the evaluator used to assess artifact quality. The objective is to find H=argmaxHJ(H)H^\star = \arg\max_H J(H)H=argmaxHJ(H). Throughout this process, the model parameters θ\thetaθ remain fixed, meaning the optimization acts on the system surrounding the model rather than the model weights themselves.

AutoDesign organizes artifact generation and harness optimization as two nested feedback loops.

The inner loop improves a single artifact under a fixed design harness HHH. It initializes a scaffold with a designer MdesignM_{\text{design}}Mdesign and a critic McriticM_{\text{critic}}Mcritic. At refinement step kkk, the designer generates the artifact yky_kyk based on the previous state and feedback, while the critic evaluates it:

yk=Mdesign(yk1,fk1;x,c)y_k = M_{\text{design}}(y_{k-1}, f_{k-1}; x, c)yk=Mdesign(yk1,fk1;x,c) fk=Mcritic(yk;x,c)f_k = M_{\text{critic}}(y_k; x, c)fk=Mcritic(yk;x,c)

This interaction produces an execution trajectory τ\tauτ under the current design harness.

The outer loop improves the design harness HHH across tasks based on evidence collected from multiple generation runs.

Each outer-loop iteration proceeds through four stages: rollout, evaluation, update proposal, and acceptance.

  1. Rollout: The current harness HtH_tHt is executed on a training set to produce artifacts and corresponding trajectories.
  2. Evaluation: An evaluator RmetaR_{\text{meta}}Rmeta assesses artifacts across seven quality dimensions, including Faithfulness, Coverage, Density, Visual Evidence, Layout, Readability, and Aesthetics. This evaluator combines rule-based checks for measurable properties with VLM-based judgments for perceptual properties.
  3. Update Proposal: An optimizer PPP, instantiated as a coding agent acting as a planner and code editor, analyzes trajectories and scores to propose a candidate harness Ht+1H'_{t+1}Ht+1: Ht+1=P(Ht,τt,st,L)H'_{t+1} = P(H_t, \tau_t, s_t, \mathcal{L})Ht+1=P(Ht,τt,st,L) Updates are restricted to exactly one of the five harness components per iteration to keep credit assignment interpretable.
  4. Acceptance Gate: The candidate is accepted only if performance improves on the training set and does not decline on an independent development set: Accept(Ht+1)    Jtrain(Ht+1)>Jtrain(Ht)Jdev(Ht+1)Jdev(Ht)\text{Accept}(H'_{t+1}) \iff J_{\text{train}}(H'_{t+1}) > J_{\text{train}}(H_t) \land J_{\text{dev}}(H'_{t+1}) \geq J_{\text{dev}}(H_t)Accept(Ht+1)Jtrain(Ht+1)>Jtrain(Ht)Jdev(Ht+1)Jdev(Ht)

The system also supports an optional human-in-the-loop mode where users can provide directional guidance to the planner or revise the evaluator if systematic bias is detected.

The meta-harness optimization yields a final DesignHarness architecture that supports multiple output media, such as academic posters, slides, and web pages.

The resulting architecture consists of four main stages:

  1. Paper Ingestion: This stage transforms the input source and design context into a structured, provenance-aware context. It extracts document metadata, section outlines, key passages, and visual evidence, organizing them into a content brief and artifact plan. Every element retains a reference to its source location for traceability.
  2. Artifact Generation and Revision: The designer module, implemented as a coding agent, generates or revises the artifact as editable HTML files. This allows revisions to be implemented as localized code edits without requiring full regeneration.
  3. Validation and Finalization: At each refinement step, a rule-based validator applies deterministic blocking checks for issues like missing assets, broken provenance links, or layout violations. If the candidate passes, the loop terminates. If it fails, the artifact is rendered and inspected by a Critic VLM for perceptual properties like aesthetics and readability. The combined feedback guides the next revision. The loop allows up to 12 attempts.
  4. Finalization: The best valid candidate undergoes post-processing, including rendering adjustments and asset inlining, to produce a self-contained output. If the attempt budget is exhausted without passing all checks, fallback mechanisms identify a deliverable candidate.

Experiment

The experiments benchmark poster generation using PosterBench, a frozen evaluator spanning 100 papers across five disciplines, and find that AutoDesign achieves the highest overall performance among compared systems. Ablations isolate the design harness and show that it consistently improves results across multiple model and coding-agent configurations, while visual preview feedback helps correct layout and clipping failures. A blind human evaluation ranks AutoDesign first and finds moderate but meaningful agreement between automatic scores and human preference, with larger benchmark score gaps predicting more consistent human judgments. Qualitative trajectory analysis confirms that iterative diagnostic feedback produces localized repairs and preserves valid content.

AutoDesign leads the evaluated systems on overall poster quality, with its Claude 4.8 configuration achieving the strongest benchmark result and the highest blind human preference estimate. The benchmark tracks human judgment with a positive but moderate association, and its predictions become more consistent with reviewers when score differences are larger. A representative revision trace shows critic feedback producing localized layout repairs while preserving valid content. AutoDesign attains the highest overall benchmark performance, ahead of Claude Design and OpenDesign configurations. Blind reviewers prefer AutoDesign over other systems, and agreement between benchmark-preferred posters and human choices increases with larger score gaps.

AutoDesign configurations lead the PosterBench Main Track, with the Claude Code and Claude 4.8 setup scoring highest and the Codex setup nearly matching through stronger aesthetics. Claude Design and OpenDesign systems trail overall despite some competitive dimension scores. Human preference judgments also favor AutoDesign, and agreement with human judges improves as benchmark score gaps widen. AutoDesign with Claude Code achieves the strongest overall score, supported by high density, layout, and readability. AutoDesign with Codex nearly matches the top score but trades visual evidence and layout for stronger aesthetics. Claude Design posts the highest coverage and visual evidence among listed systems, yet lower density and readability limit its overall score. OpenDesign variants rank lowest overall, with the Codex configuration showing comparatively weak visual evidence and readability. Human preference places AutoDesign ahead of Claude Code, OpenDesign, and Claude Design, and benchmark-preferred posters align more often with human choices when score margins are larger.

The leading configuration is AutoDesign paired with Codex and GPT 5.5, which records the highest overall PosterBench Score and the top faithfulness, density, readability, and aesthetics scores among the listed systems. AutoDesign also ranks second overall when paired with Claude Code and Claude 4.8, while OpenDesign configurations and Claude Design score lower overall. Claude Design achieves the strongest coverage score but is held back by weaker density and readability. AutoDesign with Codex and GPT 5.5 leads overall and performs best on faithfulness, density, readability, and aesthetics. Within the same coding agent and model, AutoDesign outperforms OpenDesign and Claude Design on overall score. Claude Design obtains the top coverage score but falls behind on density and readability, resulting in a lower overall rank. The weakest overall configuration is OpenDesign with Codex and GPT 5.5, creating a wide gap from the leading system.

On the fixed 10-paper subset, AutoDesign leads the design harness track with the highest overall weighted rubric score, ahead of OpenDesign and Claude Design. Its advantage is driven by layout and readability, though it records the lowest visual evidence among the three design variants. In the coding harness track with AutoDesign and GLM 5.2 fixed, Kimi Code outperforms ZCode by a wide overall margin, with broad advantages across most dimensions. AutoDesign leads the design harness track overall, but has weaker visual evidence relative to OpenDesign and Claude Design. Kimi Code outperforms ZCode across most scoring dimensions, with especially large advantages in layout and readability.

Attaching DesignHarness improves the PosterBench Score in every completed configuration, with gains spanning roughly five to twenty points. Improvements occur across multiple model and coding-agent pairings, and lower-baseline configurations tend to show larger gains. The largest single improvement is for DeepSeek V4 Pro with Claude Code. DesignHarness increases PosterBench Score for all seven completed configurations, with gains between about five and twenty points. The largest gain appears for DeepSeek V4 Pro with Claude Code, while higher-scoring baseline setups such as GPT-5.5 with Codex and Claude 4.8 with Claude Code improve more modestly.

AutoDesign configurations consistently achieve the highest overall poster quality and human preference across evaluations, outperforming Claude Design and OpenDesign, with leading results driven by layout, density, and readability even though some variants trail in visual evidence or coverage. Benchmark preference aligns more closely with human judgment when score differences are larger, and critic feedback supports localized layout repairs without disturbing valid content. In fixed-subset comparisons, AutoDesign also leads the design harness track, while Kimi Code outperforms ZCode in the coding harness. Attaching DesignHarness improves PosterBench scores across all completed configurations, with larger gains for lower-baseline setups.


AI로 AI 구축

아이디어에서 출시까지 — 무료 AI 코코딩, 즉시 사용 가능한 환경, 최적의 GPU 가격으로 AI 개발을 가속화하세요.

AI 협업 코딩
바로 사용 가능한 GPU
최적의 가격

HyperAI Newsletters

최신 정보 구독하기
한국 시간 매주 월요일 오전 9시 에 이번 주의 최신 업데이트를 메일로 발송합니다
이메일 서비스 제공: MailChimp