Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Build robust reward models for computer-use agents by processing execution videos with spatiotemporal token pruning (STP+TTP) to remove redundancy while preserving task-relevant UI details. Achieve 84.7% accuracy with adversarial instruction translation.
Technique: Spatiotemporal Token Pruning for Efficient Video Reward Modeling
Computer-use agents generate long, high-resolution execution videos that are expensive to process. Standard vision models struggle with this modality's inherent redundancy: static backgrounds, repeated layouts, and unchanged UI elements dominate frames. Execution Video Reward Models (ExeVRM) use spatiotemporal token pruning to eliminate this redundancy while preserving subtle visual cues determining task correctness.
The approach combines spatial pruning (removing homogeneous regions) with temporal pruning (suppressing unchanged tokens) and augments training with adversarial instruction translation to handle distribution shifts.
Core Concept
ExeVRM operates through three mechanisms:
Spatial Token Pruning (STP): Identifies and removes large homogeneous regions (backgrounds, toolbars) while preserving localized UI elements
Temporal Token Pruning (TTP): Suppresses tokens unchanged across consecutive frames, focusing on state transitions
Adversarial Instruction Translation: Generates hard negatives by pairing successful trajectories with semantically mismatched instructions
This enables efficient processing of long, high-resolution videos while maintaining robustness to instruction variations.
Architecture Overview
Video encoder: ViT-based visual processor
Spatial pruner: Identifies homogeneous regions to mask
Temporal pruner: Compares frame deltas to suppress unchanged tokens
MLLM backbone: Vision-language model for understanding instructions
Reward head: Classifier outputting execution and consistency scores
Adversarial augmentation: Generates hard negatives for training
Implementation Steps
Step 1: Spatial Token Pruning
Remove large homogeneous regions while preserving UI-relevant patches.