← Search

Yewen Pu

21 accepted papers

2026

Code Driven Planning with Domain-Adaptive Selector

ICLR 2026poster

Large Language Models (LLMs) have been widely adopted as task planners for AI agents in sequential decision-making problems, leveraging their extensive world knowledge. However, the gap between their general knowledge and environment-specific requirements often leads to inaccurate plans. To address…

Cited by 0SourceScholar
2026

When Robots Should Say ''I Don't Know'': Benchmarking Abstention in Embodied Question Answering

CVPR 2026

Embodied Question Answering (EQA) requires an agent to interpret language, perceive its environment, and navigate within 3D scenes to produce responses. Existing EQA benchmarks assume that every question must be answered, but embodied agents should know when they do not have sufficient information t

Cited by 0SourceScholar
2025

Combining Induction and Transduction for Abstract Reasoning

ICLR 2025poster

When learning an input-output mapping from very few examples, is it better to first infer a latent function that explains the examples, or is it better to directly predict new test outputs, e.g. using a neural network? We study this question on ARC by training neural models for \emph{induction} (inf…

2025

InverseCoder: Self-improving Instruction-Tuned Code LLMs with Inverse-Instruct

AAAI 2025technical

Recent advancements in open-source code large language models (LLMs) have been driven by fine-tuning on the data generated from powerful closed-source LLMs, which are expensive to obtain. This paper explores whether it is possible to use a fine-tuned open-source model to generate additional data to…

2025

mrCAD: Multimodal Communication to Refine Computer-aided Designs

EMNLP 2025

In collaborative creation tasks, people steer artifacts towards specific goals by _refining_ them with _multimodal_ communication over multiple rounds of interaction. In contrast, generative AI excels at creating artifacts in a single turn but can struggle to make precise refinements that match our

2024

Amortizing Pragmatic Program Synthesis with Rankings

ICML 2024poster

The usage of Rational Speech Acts (RSA) framework has been successful in building *pragmatic* program synthesizers that return programs which, in addition to being logically consistent with user-generated examples, account for the fact that a user chooses their examples informatively. We present a g…

2024

CadVLM: Bridging Language and Vision in the Generation of Parametric CAD Sketches

ECCV 2024poster

"Parametric Computer-Aided Design (CAD) is central to contemporary mechanical design. However, it encounters challenges in achieving precise parametric sketch modeling and lacks practical evaluation metrics suitable for mechanical design. We harness the capabilities of pre-trained foundation models,…

Cited by 6SourcePDFScholar
2024

Generating Pragmatic Examples to Train Neural Program Synthesizers

ICLR 2024poster

Programming-by-example is the task of synthesizing a program that is consistent with a set of user-provided input-output examples. As examples are often an under-specification of one's intent, a good synthesizer must choose the intended program from the many that are consistent with the given set o…

2024

Hypothesis Search: Inductive Reasoning with Language Models

ICLR 2024poster

Inductive reasoning is a core problem-solving capacity: humans can identify underlying principles from a few examples, which can then be robustly generalized to novel scenarios. Recent work has evaluated large language models (LLMs) on inductive reasoning tasks by directly prompting them yielding "i…

2023

ANPL: Towards Natural Programming with Interactive Decomposition

NeurIPS 2023poster

Though LLMs are capable of generating plausible programs, it’s challenging to interact with the LLMs further to revise the program, especially if the user’s specific requirements are different from the initial proposal. In this paper, we introduce ANPL, an interactive programming system that ensures…

2023

DiffVL: Scaling Up Soft Body Manipulation using Vision-Language Driven Differentiable Physics

NeurIPS 2023poster

Combining gradient-based trajectory optimization with differentiable physics simulation is an efficient technique for solving soft-body manipulation problems. Using a well-crafted optimization objective, the solver can quickly converge onto a valid trajectory. However, writing the appropriate object…

Cited by 3SourcePDFScholar
2022

Communicating Natural Programs to Humans and Machines

NeurIPS 2022accept

The Abstraction and Reasoning Corpus (ARC) is a set of procedural tasks that tests an agent's ability to flexibly solve novel problems. While most ARC tasks are easy for humans, they are challenging for state-of-the-art AI. What makes building intelligent systems that can generalize to novel situati…

Cited by 67SourcePDFScholar
2021

Program Synthesis Guided Reinforcement Learning for Partially Observed Environments

NeurIPS 2021spotlight

A key challenge for reinforcement learning is solving long-horizon planning problems. Recent work has leveraged programs to guide reinforcement learning in these settings. However, these approaches impose a high manual burden on the user since they must provide a guiding program for every new task.…

2021

Representing Partial Programs with Blended Abstract Semantics

ICLR 2021poster

Synthesizing programs from examples requires searching over a vast, combinatorial space of possible programs. In this search process, a key challenge is representing the behavior of a partially written program before it can be executed, to judge if it is on the right track and predict where to searc…

Cited by 28SourcePDFScholar
2020

Neurosymbolic Transformers for Multi-Agent Communication

NeurIPS 2020poster

We study the problem of inferring communication structures that can solve cooperative multi-agent planning problems while minimizing the amount of communication. We quantify the amount of communication as the maximum degree of the communication graph; this metric captures settings where agents have…

2020

Program Synthesis with Pragmatic Communication

NeurIPS 2020poster

Program synthesis techniques construct or infer programs from user-provided specifications, such as input-output examples. Yet most specifications, especially those given by end-users, leave the synthesis problem radically ill-posed, because many programs may simultaneously satisfy the specification…

2019

Compiler Auto-Vectorization with Imitation Learning

NeurIPS 2019poster

Modern microprocessors are equipped with single instruction multiple data (SIMD) or vector instruction sets which allow compilers to exploit fine-grained data level parallelism. To exploit this parallelism, compilers employ auto-vectorization techniques to automatically convert scalar code into vect…

2019

Write, Execute, Assess: Program Synthesis with a REPL

NeurIPS 2019poster

We present a neural program synthesis approach integrating components which write, execute, and assess code to navigate the search space of possible programs. We equip the search process with an interpreter or a read-eval-print-loop (REPL), which immediately executes partially written programs, expo…

Cited by 184SourcePDFScholar
2018

Selecting Representative Examples for Program Synthesis

ICML 2018oral

Program synthesis is a class of regression problems where one seeks a solution, in the form of a source-code program, mapping the inputs to their corresponding outputs exactly. Due to its precise and combinatorial nature, program synthesis is commonly formulated as a constraint satisfaction problem,…