Back to Feed
Agents / Benchmarks & Evals

Automated Scientific Poster Generation with Agents

Original: PosterMELD: Multi-Agent Paper-to-Poster Generation for Controllable Design Diversity with Editable Print-Ready Outputs

Listen to the summary

Uses a voice available on your device

Audio options
On this page

Key Takeaways

  • Achieved an 81.3% Print-Ready Rate, significantly outperforming prior baselines like P2P and PosterGen.
  • Reduced cost per request to $0.38, a substantial improvement over the $10.78 cost of the Codex+Skill baseline.
  • Introduced a robust, multi-agent architecture featuring specialized roles for content, layout, and visual generation, supported by a bounded repair mechanism.
  • Validated performance using a new, large-scale benchmark of 621 papers, which is 5.1 times larger than the existing P2PEval dataset.

Summary & Methodology Analysis

The PosterMELD system addresses the lack of editability in automated poster generation through a modular agent-based architecture. The pipeline begins by extracting existing poster structures into a template library using MinerU, a document parsing tool that converts PDFs into structured data. These templates are then defined by slot contracts, which enforce strict capacity constraints regarding reading order and visual footprint. A pipeline harness manages the state of the request, ensuring that the Content, Template, Layout, and Visual agents operate within defined budgets while generating native PPTX elements. This separation of concerns allows for distinct handling of typography, color application, and geometry. The system manages complexity by delegating specific rendering tasks to individual agents, facilitating independent execution and provenance tracking for every generated artifact. The reliability of the output is managed through a Review Agent that utilizes deterministic gates for checking basic constraints like overlap and legibility, combined with VLM review to catch deeper issues. VLM, or Vision Language Model, refers to a neural network architecture that processes both text and image inputs to reason about visual content. When the review process flags a failure, a Bounded Repair mechanism routes the specific failed scope back to the responsible agent for targeted rewrites or rendering adjustments. This iterative refinement loop is critical for maintaining high print-ready success rates while keeping per-request costs at $0.38. Despite these advances, the system remains reliant on external parsers, meaning that errors in initial document parsing can propagate through the entire pipeline. Furthermore, the current implementation provides no verification for scientific correctness, shifting that responsibility to the user. The library of templates is also more mature for landscape layouts than portrait designs, and the automated gates are strictly limited to geometric and legibility checks.

Interactive System Flowchart

Click diagram to expand and zoom

Cross-Examination & FAQs

A deeper dive clarifying mechanics, constraints, and baseline evaluations.

Q1. What is the main problem PosterMELD solves?

It solves the lack of editability and design control in automated poster generation systems, while also addressing high failure rates that were previously unreported.

Q2. How reliable is the output from this system?

The system achieved a Print-Ready Rate of 81.3 percent.

Q3. Is this system cost-effective compared to existing solutions?

Yes, it costs $0.38 per request compared to $10.78 for the Codex+Skill baseline.

Q4. How does the system handle failures during generation?

It uses a Review Agent to identify failures through deterministic gates and VLM review, then routes the failed scope back to specific agents for a bounded repair.

Q5. What is the role of the template library in the pipeline?

The library provides reusable structural templates extracted from existing designs, grouped via Ward hierarchical clustering, to ensure geometric alignment and consistent design.

Q6. How does the system ensure posters remain readable and well-formatted?

It uses slot contracts to define explicit capacity constraints for every template region and employs a Review Agent to verify overlaps and legibility.

Q7. What are the primary limitations of the current implementation?

Limitations include dependency on external parsers, lack of automated verification for scientific correctness, and less mature support for portrait layouts compared to landscape layouts.

Q8. How was the system evaluated?

It was evaluated against a benchmark of 621 papers, which is 5.1 times the size of the P2PEval dataset.

Q9. Does the system guarantee the final poster content is scientifically accurate?

No, the paper explicitly states that the system's automatic gates do not verify scientific correctness, which must be verified by the user.