← Search

Yoon Kim

72 accepted papers

2026

Beyond Binary Rewards: Training LMs to Reason About Their Uncertainty

ICLR 2026poster

When language models (LMs) are trained via reinforcement learning (RL) to generate natural language “reasoning chains”, their performance improves on a variety of difficult question answering tasks. Today, almost all successful applications of RL for reasoning use binary reward functions that evalua…

Cited by 0SourceScholar
2026

Distilling to Hybrid Attention Models via KL-Guided Layer Selection

ICLR 2026poster

Distilling pretrained softmax attention Transformers into more efficient hybrid architectures that interleave softmax and linear attention layers is a promising approach for improving the inference efficiency of LLMs without requiring expensive pretraining from scratch. A critical factor in the con…

Cited by 0SourcecodeScholar
2026

Escaping the Mode: Multi-Answer Reinforcement Learning in LMs

ICML 2026poster

Large language models (LMs) are typically post-trained via RL to produce a single best answer per query, implicitly optimizing for modal correctness. While effective for benchmark accuracy, this approach is unideal for many applications of interest such as in medical diagnosis, which would benefit f…

Cited by 0SourceScholar
2026

Physiology as Language: Translating Nocturnal Breathing to EEG

ICML 2026poster

This paper introduces a novel cross-physiology translation task: synthesizing sleep electroencephalography (EEG) from respiration signals. To address the significant complexity gap between the two modalities, we propose a waveform-conditional generative framework that preserves fine-grained respirat…

Cited by 0SourceScholar
2026

Reinforcement Learning with Evolving Rubrics for Deep Research

ICML 2026oral

Deep research agents perform multi-step research to produce long-form, well-attributed answers. However, most open deep research agents are trained on easily verifiable short-form QA tasks via reinforcement learning with verifiable rewards, which does not extend to realistic long-form tasks. We addr…

Cited by 0SourceScholar
2025

Ladder-Residual: Parallelism-Aware Architecture for Accelerating Large Model Inference with Communication Overlapping

ICML 2025poster

Large language model inference is both memory-intensive and time-consuming, often requiring distributed algorithms to efficiently scale. Various model parallelism strategies are used in multi-gpu training and inference to partition computation across multiple devices, reducing memory load and comput…

2025

On the Duality between Gradient Transformations and Adapters

ICML 2025poster

We study memory-efficient optimization of neural networks (in particular language models) with *linear gradient transformations*, where the gradients are linearly mapped to a lower dimensional space than the full parameter space, thus saving memory required for gradient accumulation and optimizer st…

Cited by 0SourcePDFScholar
2025

On the Same Wavelength? Evaluating Pragmatic Reasoning in Language Models across Broad Concepts

EMNLP 2025

Language use is shaped by pragmatics—i.e., reasoning about communicative goals and norms in context. As language models (LMs) are increasingly used as conversational agents, it becomes ever more important to understand their pragmatic reasoning abilities. We propose an evaluation framework derived f

Cited by 0SourcePDFScholar
2025

PaTH Attention: Position Encoding via Accumulating Householder Transformations

NeurIPS 2025poster

The attention mechanism is a core primitive in modern large language models (LLMs) and AI more broadly. Since attention by itself is permutation-invariant, position encoding is essential for modeling structured domains such as language. Rotary position encoding (RoPE) has emerged as the de facto sta…

Cited by 0SourceScholar
2025

Position: Retrieval-augmented systems can be dangerous medical communicators

ICML 2025poster

Patients have long sought health information online, and increasingly, they are turning to generative AI to answer their health-related queries. Given the high stakes of the medical domain, techniques like retrieval-augmented generation and citation grounding have been widely promoted as methods to…

Cited by 0SourcePDFScholar
2025

The Semantic Hub Hypothesis: Language Models Share Semantic Representations Across Languages and Modalities

ICLR 2025poster

Modern language models can process inputs across diverse languages and modalities. We hypothesize that models acquire this capability through learning a _shared representation space_ across heterogeneous data types (e.g., different languages and modalities), which places semantically similar inputs…

2025

The Surprising Effectiveness of Test-Time Training for Few-Shot Learning

ICML 2025poster

Language models (LMs) have shown impressive performance on tasks within their training distribution, but often struggle with structurally novel tasks even when given a small number of in-context task examples. We investigate the effectiveness of test-time training (TTT)—temporarily updating model pa…

2025

Training-Free Activation Sparsity in Large Language Models

ICLR 2025spotlight

Activation sparsity can enable practical inference speedups in large language models (LLMs) by reducing the compute and memory-movement required for matrix multiplications during the forward pass. However, existing methods face limitations that inhibit widespread adoption. Some approaches are tail…

2025

Vision-Language Models Do Not Understand Negation

CVPR 2025poster

Many practical vision-language applications require models that understand negation, e.g., when using natural language to retrieve images which contain certain objects but not others. Despite advancements in vision-language models (VLMs) through large-scale training, their ability to comprehend nega…

Cited by 7SourcePDFScholar
2025

reWordBench: Benchmarking and Improving the Robustness of Reward Models with Transformed Inputs

EMNLP 2025

Reward models have become a staple in modern NLP, serving as not only a scalable text evaluator, but also an indispensable component in many alignment recipes and inference-time algorithms. However, while recent reward models increase performance on standard benchmarks, this may partly be due to ove

2024

CHAMP: A Competition-level Dataset for Fine-Grained Analyses of LLMs’ Mathematical Reasoning Capabilities

ACL 2024findings

Recent large language models (LLMs) have shown indications of mathematical reasoning ability on challenging competition-level problems, especially with self-generated verbalizations of intermediate reasoning steps (i.e., chain-of-thought prompting). However, current evaluations mainly focus on the e…

Cited by 16SourcePDFScholar
2024

Can You Learn Semantics Through Next-Word Prediction? The Case of Entailment

ACL 2024findings

Do LMs infer the semantics of text from co-occurrence patterns in their training data? Merrill et al. (2022) argue that, in theory, sentence co-occurrence probabilities predicted by an optimal LM should reflect the entailment relationship of the constituent sentences, but it is unclear whether proba…

2024

Data Engineering for Scaling Language Models to 128K Context

ICML 2024poster

We study continual pretraining recipe for scaling language models' context lengths to 128K, with a focus on data engineering. We hypothesize that long context modeling, in particular *the ability to utilize information at arbitrary input locations*, is a capability that is mostly already acquired th…

2024

DoLa: Decoding by Contrasting Layers Improves Factuality in Large Language Models

ICLR 2024poster

Despite their impressive capabilities, large language models (LLMs) are prone to hallucinations, i.e., generating content that deviates from facts seen during pretraining. We propose a simple decoding strategy for reducing hallucinations with pretrained LLMs that does not require conditioning on ret…

2024

Fast Matrix Multiplications for Lookup Table-Quantized LLMs

EMNLP 2024finding

The deployment of large language models (LLMs) is often constrained by memory bandwidth, where the primary bottleneck is the cost of transferring model parameters from the GPU’s global memory to its registers. When coupled with custom kernels that fuse the dequantization and matmul operations, weigh…

2024

Gated Linear Attention Transformers with Hardware-Efficient Training

ICML 2024poster

Transformers with linear attention allow for efficient parallel training but can simultaneously be formulated as an RNN with 2D (matrix-valued) hidden states, thus enjoying linear-time inference complexity. However, linear attention generally underperforms ordinary softmax attention. Moreover, curre…

2024

Global Reward to Local Rewards: Multimodal-Guided Decomposition for Improving Dialogue Agents

EMNLP 2024main

We describe an approach for aligning an LLM based dialogue agent for long-term social dialogue, where there is only a single global score given by the user at the end of the session. In this paper, we propose the usage of denser naturally-occurring multimodal communicative signals as local implicit…

2024

In-Context Language Learning: Architectures and Algorithms

ICML 2024poster

Some neural language models (LMs) exhibit a remarkable capacity for in-context learning (ICL): they can fit predictors to datasets provided as input. While the mechanisms underlying ICL are well-studied in the context of synthetic problems like in-context linear regression, there is still some diver…

2024

LQ-LoRA: Low-rank plus Quantized Matrix Decomposition for Efficient Language Model Finetuning

ICLR 2024poster

We propose a simple approach for memory-efficient adaptation of pretrained language models. Our approach uses an iterative algorithm to decompose each pretrained matrix into a high-precision low-rank component and a memory-efficient quantized component. During finetuning, the quantized componen…

2024

LangNav: Language as a Perceptual Representation for Navigation

NAACL 2024findings

We explore the use of language as a perceptual representation for vision-and-language navigation (VLN), with a focus on low-data settings. Our approach uses off-the-shelf vision systems for image captioning and object detection to convert an agent’s egocentric panoramic view at each time step into n…

2024

Learning to Decode Collaboratively with Multiple Language Models

ACL 2024long

We propose a method to teach multiple large language models (LLM) to collaborate by interleaving their generations at the token level. We model the decision of which LLM generates the next token as a latent variable. By optimizing the marginal likelihood of a training set under our latent variable m…

2024

Leveraging Large Language Models for Learning Complex Legal Concepts through Storytelling

ACL 2024long

Making legal knowledge accessible to non-experts is crucial for enhancing general legal literacy and encouraging civic participation in democracy. However, legal documents are often challenging to understand for people without legal backgrounds. In this paper, we present a novel application of large…

2024

Lookback Lens: Detecting and Mitigating Contextual Hallucinations in Large Language Models Using Only Attention Maps

EMNLP 2024main

When asked to summarize articles or answer questions given a passage, large language models (LLMs) can hallucinate details and respond with unsubstantiated answers that are inaccurate with respect to the input context. This paper describes a simple approach for detecting such **contextual hallucinat…

2024

MDCR: A Dataset for Multi-Document Conditional Reasoning

EMNLP 2024finding

The same real-life questions posed to different individuals may lead to different answers based on their unique situations. For instance, whether a student is eligible for a scholarship depends on eligibility conditions, such as major or degree required. ConditionalQA was proposed to evaluate models…

2024

Natural Language Embedded Programs for Hybrid Language Symbolic Reasoning

NAACL 2024findings

How can we perform computations over natural language representations to solve tasks that require symbolic and numeric reasoning? We propose natural language embedded programs (NLEP) as a unifying framework for addressing math/symbolic reasoning, natural language understanding, and instruction follo…

2024

Parallelizing Linear Transformers with the Delta Rule over Sequence Length

NeurIPS 2024poster

Transformers with linear attention (i.e., linear transformers) and state-space models have recently been suggested as a viable linear-time alternative to transformers with softmax attention. However, these models still underperform transformers especially on tasks that require in-context retrieval.…

Cited by 51SourcePDFScholar
2024

Paraphrase and Solve: Exploring and Exploiting the Impact of Surface Form on Mathematical Reasoning in Large Language Models

NAACL 2024long

This paper studies the relationship between the surface form of a mathematical problem and its solvability by large language models. We find that subtle alterations in the surface form can significantly impact the answer distribution and the solve rate, exposing the language model’s lack of robustne…

2024

Phenomenal Yet Puzzling: Testing Inductive Reasoning Capabilities of Language Models with Hypothesis Refinement

ICLR 2024oral

The ability to derive underlying principles from a handful of observations and then generalize to novel situations---known as inductive reasoning---is central to human intelligence. Prior work suggests that language models (LMs) often fall short on inductive reasoning, despite achieving impressive s…

2024

Reasoning or Reciting? Exploring the Capabilities and Limitations of Language Models Through Counterfactual Tasks

NAACL 2024long

The impressive performance of recent language models across a wide range of tasks suggests that they possess a degree of abstract reasoning skills. Are these skills general and transferable, or specialized to specific tasks seen during pretraining? To disentangle these effects, we propose an evaluat…

2024

Reuse Your Rewards: Reward Model Transfer for Zero-Shot Cross-Lingual Alignment

EMNLP 2024main

Aligning language models (LMs) based on human-annotated preference data is a crucial step in obtaining practical and performant LM-based systems. However, multilingual human preference data are difficult to obtain at scale, making it challenging to extend this framework to diverse languages. In this…

2023

Aging with GRACE: Lifelong Model Editing with Discrete Key-Value Adaptors

NeurIPS 2023poster

Deployed language models decay over time due to shifting inputs, changing user needs, or emergent world-knowledge gaps. When such problems are identified, we want to make targeted edits while avoiding expensive retraining. However, current model editors, which modify such behaviors of pre-trained mo…

2023

Explain-then-translate: an analysis on improving program translation with self-generated explanations

EMNLP 2023long findings

This work explores the use of self-generated natural language explanations as an intermediate step for code-to-code translation with language models. Across three types of explanations and 19 programming languages constructed from the MultiPL-E dataset, we find the explanations to be particularly e…

Cited by 0SourcecodeScholar
2023

Federated Learning as Variational Inference: A Scalable Expectation Propagation Approach

ICLR 2023poster

The canonical formulation of federated learning treats it as a distributed optimization problem where the model parameters are optimized against a global loss function that decomposes across client loss functions. A recent alternative formulation instead treats federated learning as a distributed in…

2023

Grammar Prompting for Domain-Specific Language Generation with Large Language Models

NeurIPS 2023poster

Large language models (LLMs) can learn to perform a wide range of natural language tasks from just a handful of in-context examples. However, for generating strings from highly structured languages (e.g., semantic parsing to complex domain-specific languages), it is challenging for the LLM to gen…

2023

Learning to Grow Pretrained Models for Efficient Transformer Training

ICLR 2023top-25%

Scaling transformers has led to significant breakthroughs in many domains, leading to a paradigm in which larger versions of existing models are trained and released on a periodic basis. New instances of such models are typically trained completely from scratch, despite the fact that they are often…

Cited by 67SourcePDFScholar
2023

Multitask Prompt Tuning Enables Parameter-Efficient Transfer Learning

ICLR 2023poster

Prompt tuning, in which a base pretrained model is adapted to each task via conditioning on learned prompt vectors, has emerged as a promising approach for efficiently adapting large language models to multiple downstream tasks. However, existing methods typically learn soft prompt vectors from scra…

Cited by 128SourcePDFScholar
2023

Search Augmented Instruction Learning

EMNLP 2023long findings

Large language models (LLMs) have been significantly improved by instruction fine-tuning, but still lack transparency and the ability to utilize up-to-date knowledge and information. In this work, we propose search-augmented instruction learning (SAIL), which grounds the language generation and inst…

Cited by 0SourceScholar
2023

Simple Hardware-Efficient PCFGs with Independent Left and Right Productions

EMNLP 2023short findings

Scaling dense PCFGs to thousands of nonterminals via low-rank parameterizations of the rule probability tensor has been shown to be beneficial for unsupervised parsing. However, PCFGs scaled this way still perform poorly as a language model, and even underperform similarly-sized HMMs. This work intr…

Cited by 0SourcecodeScholar
2023

Unsupervised Discontinuous Constituency Parsing with Mildly Context-Sensitive Grammars

ACL 2023long

We study grammar induction with mildly context-sensitive grammars for unsupervised discontinuous parsing. Using the probabilistic linear context-free rewriting system (LCFRS) formalism, our approach fixes the rule structure in advance and focuses on parameter learning with maximum likelihood. To red…

2022

Co-training Improves Prompt-based Learning for Large Language Models

ICML 2022spotlight

We demonstrate that co-training (Blum & Mitchell, 1998) can improve the performance of prompt-based learning by using unlabeled data. While prompting has emerged as a promising paradigm for few-shot and zero-shot learning, it is often brittle and requires much larger models compared to the standard…

2022

Controlling the Focus of Pretrained Language Generation Models

ACL 2022findings

The finetuning of pretrained transformer-based language generation models are typically conducted in an end-to-end manner, where the model learns to attend to relevant parts of the input by itself. However, there does not exist a mechanism to directly control the model’s focus. This work aims to dev…

2022

DiffCSE: Difference-based Contrastive Learning for Sentence Embeddings

NAACL 2022long

We propose DiffCSE, an unsupervised contrastive learning framework for learning sentence embeddings. DiffCSE learns sentence embeddings that are sensitive to the difference between the original sentence and an edited sentence, where the edited sentence is obtained by stochastically masking out the o…

2022

Inducing and Using Alignments for Transition-based AMR Parsing

NAACL 2022long

Transition-based parsers for Abstract Meaning Representation (AMR) rely on node-to-word alignments. These alignments are learned separately from parser training and require a complex pipeline of rule-based components, pre-processing, and post-processing to satisfy domain-specific constraints. Parser…

2022

Large language models are few-shot clinical information extractors

EMNLP 2022main

A long-running goal of the clinical NLP community is the extraction of important variables trapped in clinical notes. However, roadblocks have included dataset shift from the general domain and a lack of public clinical corpora and annotations. In this work, we show that large language models, such…

Cited by 448SourcePDFScholar
2022

Probing for Incremental Parse States in Autoregressive Language Models

EMNLP 2022finding

Next-word predictions from autoregressive neural language models show remarkable sensitivity to syntax. This work evaluates the extent to which this behavior arises as a result of a learned ability to maintain implicit representations of incremental syntactic structures. We extend work in syntactic…

2022

VALHALLA: Visual Hallucination for Machine Translation

CVPR 2022poster

Designing better machine translation systems by considering auxiliary inputs such as images has attracted much attention in recent years. While existing methods show promising performance over the conventional text-only translation systems, they typically require paired text and image as input durin…

Cited by 38PDFScholar
2020

Emergence of Separable Manifolds in Deep Language Representations

ICML 2020poster

Deep neural networks (DNNs) have shown much empirical success in solving perceptual tasks across various cognitive modalities. While they are only loosely inspired by the biological brain, recent studies report considerable similarities between representations extracted from task-optimized DNNs and…

2020

Empirical Study of the Benefits of Overparameterization in Learning Latent Variable Models

ICML 2020poster

One of the most surprising and exciting discoveries in supervised learning was the benefit of overparameterization (i.e. training a very large model) to improving the optimization landscape of a problem, with minimal effect on statistical performance (i.e. generalization). In contrast, unsupervised…

2019

Avoiding Latent Variable Collapse with Generative Skip Models

AISTATS 2019poster

Variational autoencoders (VAEs) learn distributions of high-dimensional data. They model data with a deep latent-variable model and then fit the model by maximizing a lower bound of the log marginal likelihood. VAEs can capture complex distributions, but they can also suffer from an issue known as "…

Cited by 229SourcePDFScholar
2018

Generalised Discriminative Transform via Curriculum Learning for Speaker Recognition

ICASSP 2018accepted

In this paper we introduce a speaker verification system deployed on mobile devices that can be used to personalise a keyword spotter. We describe a baseline DNN system that maps an utterance to a speaker embedding, which is used to measure speaker differences via cosine similarity. We then introduc…

Cited by 0SourceScholar
2018

Latent Alignment and Variational Attention

NeurIPS 2018poster

Neural attention has become central to many state-of-the-art models in natural language processing and related domains. Attention networks are an easy-to-train and effective method for softly simulating alignment; however, the approach does not marginalize over latent alignments in a probabilistic s…

2018

Semi-Amortized Variational Autoencoders

ICML 2018oral

Amortized variational inference (AVI) replaces instance-specific local inference with a global inference network. While AVI has enabled efficient training of deep generative models such as variational autoencoders (VAE), recent empirical work suggests that inference networks can produce suboptimal v…