04 · Benchmarks

vs Lightweight VLAs

Kinetic v0.3.0 · Generated 2026-07-16 · Windows AMD64 · Python 3.11.9

Methodology

Kinetic is a modular VLA stack (world model + optional small LLM + policy). Monolithic VLAs (OpenVLA, SmolVLA, …) differ in training and evaluation protocols. This report compares systems efficiency (latency, size class, sim success) and cites published numbers for peers — it is not a LIBERO leaderboard re-run.

Measured locally

  • Control-loop stage latencies (p50/p95, ms)
  • Effective control Hz from step p50
  • Pick-bottle success rate over N trials (max_steps=400)
  • Process RSS memory (approx, MB)

Literature-only

  • Parameter counts and published Hz/VRAM for other VLAs
  • Cross-paper success rates (LIBERO / real-robot) — not same tasks as Kinetic sim

Task: Pick up the bottle from the table (Kinetic mock / MuJoCo sim)

Kinetic profiles

ProfileLangPolicyRobotp50 msp95 msHzSuccessTrialsRSS MB
Kinetic-mock-rule-heuristicruleheuristicmock_sim3.664.33273.3100%1066.6
Kinetic-mock-rule-mlprulemlpmock_sim3.493.90286.3100%1066.5
Kinetic-mujoco-rule-heuristicruleheuristicmujoco4.945.98202.5100%5157.6

Stage breakdown

Fastest profile: Kinetic-mock-rule-mlp

vision1.1481.3111.173
scene0.1230.1590.123
policy0.0030.0780.036
control0.0360.0420.035
step_total3.4923.8993.518
reason0.0180.0180.018

Literature baselines

ModelParamsHzVRAMArchitectureNotes
OpenVLA-7B7000M5.016.0Monolithic VLM→action tokensStrong open baseline; heavy for edge.
MiniVLA-1B1000M12.5Compact OpenVLA-style~2.5× faster than OpenVLA on L40s.
TinyVLACompact VLA familyFaster inference & better data efficiency than OpenVLA (paper).
Octo-Base93MTransformer + diffusion (OXE)Lightweight generalist.
Octo-Small27MTransformer + diffusion (OXE)Smallest common Octo config.
SmolVLA-450M450MCompact HF VLAConsumer hardware; async option.
OpenVLA-OFT7000M15.9OpenVLA + OFT~25–50× action gen speedup claims vs base.
Diffusion PolicyVisuomotor diffusion (IL)Not full VLA; strong manipulation baseline.
ACTAction chunking transformer (IL)Bimanual IL; language usually separate.

Head-to-head (systems efficiency)

Parameters (control path)27M–7B monolithicNo monolithic VLA weights required for rule+heuristic path; optional BitNet ~0.7B only on replan events
Control rateOpenVLA ~5 Hz; MiniVLA ~12.5 Hz (L40s)up to 286 Hz (step p50, this host)
Sim pick successn/a (different protocols)100% on Kinetic bottle task
LLM every control stepUsually yes (token decode)No — reasoner event-only (rule / BitNet on replan)
Edge deploy storyQuantize large VLMModular: INT-ready slots + tiny control loop

Takeaways

  1. 01Kinetic is not a drop-in OpenVLA clone — it is a modular stack optimized for low control-loop latency and optional language reasoning.
  2. 02On this host, the mock rule+heuristic path achieves multi-hundred Hz effective control with high sim pick success — orders of magnitude faster than 7B token-decoding VLAs.
  3. 03Fair skill comparison with OpenVLA/SmolVLA requires shared benchmarks (LIBERO/real robot) and trained policies; use Kinetic's MLP/diffusion slots + OXE-style data for that track.
  4. 04Use literature Hz only as order-of-magnitude; always re-measure on your hardware.

Numbers on this page are literature comparisons and local systems measurements for Kinetic — not product marketing claims.