E-AI · Efficient AI

Efficient and Robust AI System Project

Building lightweight, fast, and reliable AI that can stand beside people when seconds matter.

Modern AI is powerful but heavy. State-of-the-art models are enormous and their inference is slow, still far from human intuition, and far too slow and unreliable to trust in urgent, high-stakes moments.

Two obstacles stand between today's models and AI we can trust in the field. Individually, each model is too large and too slow to run where it is actually needed. Collectively, when many models or agents work together, a single faulty or adversarial member can quietly derail the whole system. E-AI attacks both making every model lightweight and fast while keeping teams of agents reliable even when some of them fail.

I started the E-AI (Efficient-AI) project to build compact yet powerful AI that can assist people in disaster scenarios, responding to dangerous accidents quickly and reliably when every second counts.

E-AI is the central theme of all my research. Every project I work on is a step toward making it real.
Research under E-AI

The work splits into two threads: keeping teams of LLM agents robust when individual agents fail, and shrinking and accelerating the models themselves without losing what makes them powerful.

I Robust Multi-Agent Systems
Self-Anchored Consensus (SAC) pipeline overview on an (F+1)-robust network
01
Accepted · EMNLP 2026 Main

Robust Multi-Agent LLMs under Byzantine Faults

When LLM agents collaborate over a network, a few unreliable or adversarial ("Byzantine") agents can mislead the rest and corrupt the group's answer. Self-Anchored Consensus (SAC) is a fully decentralized filter-and-refine protocol where agents iteratively share, evaluate, and filter each other's messages with graph conditions that guarantee honest agents keep reliable information flowing, even under adversarial attacks.

Read the paper →
II Efficient Models & Compression
OptR output-aware INT2 KV-cache quantization pipeline
02

Output-Aware Rotation for INT2 KV-Cache Quantization

INT2 KV-cache quantization saves substantial memory, but existing rotation methods optimize proxy errors before the full attention output is formed. OptR instead learns per-head orthogonal corrections that minimize post-projection attention-output error, while an attention-equivalent key reparameterization reduces channel-wise outliers. It improves reasoning, coding, and long-context retrieval while preserving paged KV-cache compatibility with negligible serving overhead.

Read the paper →
Ghosted Layers architecture diagram
03

Ghosted Layers: Recovering Layer-Pruned LLMs

Layer pruning removes whole Transformer blocks to shrink an LLM, but creates a mismatch at the pruning boundary that hurts accuracy. Ghosted Layers is a training-free module that solves a closed-form activation-alignment problem to recover the lost information while keeping the speedup of pruning while restoring quality.

Read the paper →
Inter-layer similarity heatmaps across LLM architectures
04
Accepted · EMNLP 2026 Main

Locality-Aware Redundancy Pruning (LoRP)

Where redundancy lives inside an LLM depends on its architecture. It can be localized or spread globally (think Llama vs. Qwen). LoRP measures inter-layer similarity to compute a Representation Locality Score, then prunes each model according to its own redundancy structure instead of a one-size-fits-all rule.

Read the paper →
3D weight-magnitude landscape before and after concentration
05

Weight Concentration Regularization (WCR)

Under aggressive sparsity, naive pruning destroys accuracy because important weights are spread thin. WCR is a training-time regularizer that concentrates a model's energy onto a small set of informative parameters, so magnitude pruning can safely remove the rest and make models far more robust to high-sparsity compression.

Read the paper →
Pruned layer patterns across calibration configurations
06

Rethinking Layer Redundancy: Calibration over Search

Most depth-pruning methods chase clever search algorithms to find removable layers. We show the opposite: under a fixed calibration set, complex search barely beats simple one-shot pruning. It is the calibration configuration that really shapes which layers are redundant. A call to prioritize data over search.

Read the paper →
Robust Multi-Agent LLMs
@inproceedings{lee2026robust,
  title   = {Robust Multi-Agent LLMs under Byzantine Faults},
  author  = {Lee, Haejoon and Yun, Vincent-Daniel and Oh, Hyeonho and Panagou, Dimitra and Karimireddy, Sai Praneeth},
  booktitle = {Proceedings of the 2026 Conference on Empirical Methods in Natural Language Processing},
  year    = {2026}
}
Ghosted Layers
@article{yun2026ghosted,
  title   = {Ghosted Layers: Unconstrained Activation Alignment for Recovering Layer-Pruned LLMs},
  author  = {Yun, Vincent-Daniel and Jo, Junhyuk and Karimireddy, Sai Praneeth and Lee, Sunwoo},
  journal = {arXiv preprint arXiv:2605.15491},
  year    = {2026}
}
Locality-Aware Redundancy Pruning (LoRP)
@inproceedings{yun2026lorp,
  title   = {Locality-Aware Redundancy Pruning for LLM Depth Compression},
  author  = {Yun, Vincent-Daniel and Kim, Youngrae and Lim, Woosang and Heo, Youngjin and Kim, Minkyu and Lee, Sunwoo},
  booktitle = {Proceedings of the 2026 Conference on Empirical Methods in Natural Language Processing},
  year    = {2026}
}
Weight Concentration Regularization (WCR)
@article{yun2026wcr,
  title   = {Weight Concentration Regularization for Improving Pruning Robustness Under High Sparsity},
  author  = {Yun, Vincent-Daniel and Jo, Junhyuk and Lee, Sunwoo},
  journal = {arXiv preprint arXiv:2511.14282},
  year    = {2026}
}
Rethinking Layer Redundancy
@article{kim2026rethinking,
  title   = {Rethinking Layer Redundancy: Calibration Matters More Than Search in LLM Depth Pruning},
  author  = {Kim, Minkyu and Yun, Vincent-Daniel and Kim, Youngrae and Cho, Suin and Lim, Woosang and Lee, Sunwoo},
  journal = {arXiv preprint arXiv:2604.24938},
  year    = {2026}
}
Output-Aware Rotation for INT2 KV-Cache Quantization
@article{yun2026outputaware,
  title   = {Output-Aware Rotation for INT2 KV-Cache Quantization},
  author  = {Yun, Vincent-Daniel and Lim, Woosang and Cheong, Minsoo and Lee, Sunwoo and Annavaram, Murali and Karimireddy, Sai Praneeth and Yoo, Sungjoo},
  journal = {arXiv preprint arXiv:2608.02691},
  year    = {2026}
}