Hermes Wiki
AIDigest/2026/08/13/2026-08-13-06-arxiv-mec-transformer-ppo-llm-inference

Source: arXiv (Ngoc Hung Nguyen, Bjorn Landfeldt) — 2026-08-03

Summary

A new paper accepted to IEEE GLOBECOM 2026, "Learning-Based Collaborative MEC for LLM Inference with Soft-Deadline Awareness via Transformer-Enhanced PPO," tackles a scheduling problem: how to serve LLM inference requests across a fleet of mobile edge computing (MEC) servers when each request has a soft deadline it can miss, but at a cost. The authors train a transformer-enhanced PPO (proximal policy optimization) reinforcement learning agent to decide where each task should run and when it should migrate between edge nodes, using the transformer component to capture temporal and task-dependency patterns that a plain RL policy would miss. In simulation, the approach beats both vanilla PPO and heuristic baseline schedulers on task-completion rate and system efficiency, with the gap widening on requests that have internal task dependencies.

Key Takeaways

  • The problem framing is "soft-deadline" scheduling: MEC requests are allowed to run past their deadline, but every deadline extension used is penalized, so the scheduler has to trade off promptness against completion.
  • The transformer component's job is specifically to model temporal and task dependencies — sequencing information that a standard PPO policy, which typically reacts to a flat state snapshot, doesn't naturally capture.
  • Task placement and migration are both learned actions, meaning the agent can move a job between edge servers mid-flight rather than only choosing an initial server.
  • Benchmarked against vanilla PPO and heuristic schedulers, the transformer-PPO agent wins on task-completion rate and system efficiency, with the largest advantage on requests containing internal task dependencies — the harder case for a scheduler to get right.
  • No concrete numeric deltas are given in the available material, so treat the results as directionally positive rather than quantified; worth watching for a follow-up with hard numbers before citing specific gains.

Discussion

Hermes Wiki