AI News AI资讯 3h ago Updated 2h ago 更新于 2小时前 47

UC Berkeley Researchers Release CUA-Lite, an Open Platform Unifying Sandboxes, Data, Evaluation and RL for Computer-Use Agents 加州大学伯克利分校研究人员发布CUA-Lite,统一计算机使用代理的沙箱、数据、评估与强化学习的开放平台

UC Berkeley researchers released CUA-Lite, an open platform that unifies computer-use agents (CUAs) by standardizing agents, environments, traces, and evaluation/training frameworks under one action space and data schema Lite.OSWorld eliminates the "VM tax" by running OSWorld tasks in plain Docker containers instead of QEMU/KVM VMs, reducing memory from 4.1 GB to 0.9 GB and enabling ~4.6× more parallel instances Cross-fidelity validation across 13 models confirms that scores and training signals UC Berkeley发布CUA-Lite开源平台,统一计算机使用代理(CUA)的代理、环境、轨迹与训练评估框架,解决当前碎片化问题。 Lite.OSWorld将OSWorld桌面任务从QEMU/KVM虚拟机迁移至Docker容器,内存占用从4.1GB降至0.9GB,并行实例提升约4.6倍,且13个模型评分与虚拟机一致。 引入LiteSample统一数据模式,将10余个现有CUA数据集预处理为Parquet格式,并生成教师模型rollout数据用于蒸馏。 平台提供单一命令接口(lite.gym)支持SFT与RL训练,集成15+基准测试、10+代理模型,覆盖桌面/浏览器/移动端,含3万+可验证任

68
Hot 热度
62
Quality 质量
70
Impact 影响力

Analysis 深度分析

TL;DR

  • UC Berkeley researchers released CUA-Lite, an open platform that unifies computer-use agents (CUAs) by standardizing agents, environments, traces, and evaluation/training frameworks under one action space and data schema
  • Lite.OSWorld eliminates the "VM tax" by running OSWorld tasks in plain Docker containers instead of QEMU/KVM VMs, reducing memory from 4.1 GB to 0.9 GB and enabling ~4.6× more parallel instances
  • Cross-fidelity validation across 13 models confirms that scores and training signals earned in containers transfer directly to the real OSWorld VM benchmark
  • The platform ships LiteSample (a unified supervised-learning schema), per-model adapters, 30k+ verifiable tasks, 15+ benchmarks, 10+ agents, and 20+ datasets published free on Hugging Face
  • CUA-Lite supports end-to-end SFT and RL training behind a single command interface, with demonstrated results including Qwen3-VL-2B fine-tuning and GRPO-based reinforcement learning on mobile tasks

Why It Matters

CUA-Lite addresses a critical infrastructure bottleneck in the computer-use agent ecosystem: the fragmentation of agents, environments, traces, and evaluation tools across incompatible repositories. By unifying these components under a single schema and action space, it dramatically lowers the barrier to entry for researchers and practitioners building and benchmarking CUAs. The container-based approach also makes large-scale training and evaluation feasible on standard cloud infrastructure without requiring specialized virtualization support.

Technical Details

  • Lite.OSWorld: Replaces full QEMU/KVM virtual machines with lightweight Docker containers running GNOME desktops, achieving identical task suites and evaluators while reducing memory footprint by 78% (4.1 GB → 0.9 GB) and cold start time by 6 seconds. Parallelism increases ~4.6× with no /dev/kvm or nested virtualization required.
  • LiteSample Schema: A single supervised-learning data format (plain parquet plus images) shared across all environments, agent types, and task categories. Over ten existing CUA datasets (Aguvis, OpenCUA, ScaleCUA, GUI-360, GUIOdyssey, Multimodal-Mind2Web) have been preprocessed into this schema and published on Hugging Face.
  • Per-Model Adapters: The framework includes adapters that pack unified LiteSample data into each model family's native training format, with history collapsing to allow multiple steps within a single forward pass.
  • Unified Training Loop: lite.gym provides a consistent interface (screenshots in, actions out) with one action space per platform. The same loop supports both supervised fine-tuning (SFT) and reinforcement learning (RL via GRPO on Slime). Demonstrated SFT on Qwen3-VL-2B-Instruct lifted mean episode return from 0.138 to 0.237 on the 332-task lite.osworld eval split.
  • Breadth of Coverage: The platform includes Lite.ScaleCUA, Lite.CUAGym, and Lite.CUAWorld (expanding to ~40 applications including Blender, QGIS, and VS Code), 15+ benchmarks spanning grounding, desktop, browser, and mobile domains, and 10+ built-in agents (GPT, Claude, Gemini, Qwen3-VL, UI-TARS, Fara-7B, MAI-UI, and others).

Industry Insight

  • The containerization of OSWorld-style benchmarks represents a significant scalability breakthrough, enabling researchers and companies to run large-scale CUA training and evaluation on commodity cloud infrastructure without specialized virtualization hardware—potentially accelerating the pace of agent development across the industry.
  • The unified LiteSample schema and per-model adapter pattern could become a de facto standard for CUA data interoperability, reducing fragmentation and enabling cross-dataset training that was previously impractical due to incompatible formats.
  • While the platform shows promising results, the SFT demonstration was based on a single configuration on two GPUs without independent reproduction, and the repository currently lacks an explicit license—practitioners should verify licensing terms before commercial deployment and treat early performance claims as preliminary until further validation.

TL;DR

  • UC Berkeley发布CUA-Lite开源平台,统一计算机使用代理(CUA)的代理、环境、轨迹与训练评估框架,解决当前碎片化问题。
  • Lite.OSWorld将OSWorld桌面任务从QEMU/KVM虚拟机迁移至Docker容器,内存占用从4.1GB降至0.9GB,并行实例提升约4.6倍,且13个模型评分与虚拟机一致。
  • 引入LiteSample统一数据模式,将10余个现有CUA数据集预处理为Parquet格式,并生成教师模型rollout数据用于蒸馏。
  • 平台提供单一命令接口(lite.gym)支持SFT与RL训练,集成15+基准测试、10+代理模型,覆盖桌面/浏览器/移动端,含3万+可验证任务。
  • 部署兼容任意Docker主机,无需/dev/kvm或嵌套虚拟化,但仓库暂无明确开源许可证,商用需核实条款。

为什么值得看

CUA-Lite通过基础设施层统一降低计算机使用代理的研发与评测门槛,使团队能在轻量容器中高效训练和评估多平台代理,加速开源CUA生态迭代。对从业者而言,其容器化方案与统一数据模式可直接复用,避免重复构建环境;对行业而言,该工作推动CUA基准测试向低成本、高并行方向演进,有助于缩小学术研究与工业部署的差距。

技术解析

  • 架构统一:CUA-Lite以单一动作空间、LiteSample数据模式和统一命令接口整合代理、环境、轨迹与训练评估框架,支持桌面、浏览器、移动端跨平台任务。
  • 容器化沙盒:Lite.OSWorld用Docker容器替代QEMU/KVM虚拟机运行OSWorld任务,内存占用降低78%,冷启动时间缩短20%,并行度提升约4.6倍,且13个模型评分与原版VM一致,验证了保真度。
  • 数据与适配:LiteSample将多源数据集(如Aguvis、OpenCUA、GUI-360等)预处理为统一Parquet格式,并提供模型适配器将数据转为各模型训练格式,支持历史折叠优化。
  • 训练与评估:通过lite.gym接口一键切换模型与环境,集成15+基准测试(如OSWorld、WebArena、AndroidWorld等),README展示Qwen3-VL-2B-Instruct在Lite.ScaleCUA上SFT后任务返回率从0.138提升至0.237,并提供GRPO强化学习示例。
  • 部署与规模:平台兼容Python 3.12与uv sync安装,沙盒无需特殊硬件权限,已扩展至Lite.CUAWorld等40+应用,累计3万+可验证任务。

行业启示

  • 基础设施标准化趋势:CUA领域正从模型中心转向平台中心,统一数据模式与动作空间可降低研发碎片化成本,未来类似框架或成为代理AI的基础设施标配。
  • 资源效率驱动开源创新:容器化沙盒显著降低训练与评测的硬件门槛,使中小团队能高效参与CUA研究,加速开源模型迭代与基准竞争。
  • 部署与合规需前置考量:平台虽简化部署,但缺乏明确许可证可能影响商业应用,建议企业在采用前评估版权与使用条款,并关注后续生态扩展。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Open Source 开源 Agent Agent Research 科学研究 Evaluation 评测 Dataset 数据集