CoolFace
Modelpublic

x-square-robot/wall-oss-0.5

sourceHugging Faceupdated 3mo agoView on Hugging Face
9likes186downloads
Model Card

WALL-OSS

<div align="left">

<p align="center"> <img src="assets/logo.png" width="600"/> <p>

<div align="center">

![Paper](https://x2robot.com/api/files/file/walloss05.pdf) &nbsp;&nbsp; ![Hugging Face](https://huggingface.co/x-square-robot) &nbsp;&nbsp; ![GitHub](https://github.com/X-Square-Robot/wall-x) &nbsp;&nbsp; ![Project Page](https://x2robot.com/en/oss#resources)

</div>

</div>

<a href="https://x2robot.com/api/files/file/walloss05.pdf" target="_blank"><strong>Wall-OSS-0.5: A Deployment-Ready VLA with GradientBridged Pretraining</strong></a>

We introduce Wall-OSS-0.5, an open-source 4B Vision-Language-Action (VLA) foundation model built upon a 3B VLM backbone augmented with dedicated action-generation components. While traditional VLAs are treated merely as optimization initializations, Wall-OSS-0.5 is designed so that pretrained robotic capability is directly executable and measurable on physical hardware without any downstream fine-tuning.

The model is pretrained across more than 20 distinct robot embodiments, processing over one million trajectories per epoch alongside a grounded multimodal corpus. We adopt a novel gradient-bridged co-training recipe optimizing three complementary objectives:

  • โ€”Discrete Action Prediction: Routes strong VLM-native gradients into the backbone.
  • โ€”Multimodal Prediction: Preserves and strengthens grounded vision-language understanding.
  • โ€”Continuous Flow Matching: Serves as the deployment-time continuous action interface.

๐ŸŒŸ Key Highlights

  1. 1.Zero-Shot Real-Robot Behavior: Achieves non-trivial zero-shot completion on a 17-task suite (including held-out deformable manipulation tasks) directly from the pretrained checkpoint.
  2. 2.Markedly Stronger Adaptation Prior: After task-specific fine-tuning, Wall-OSS-0.5 reaches 60.5% average task progress on 15 real-robot tasks, outperforming $\pi_{0.5}$ by 17.5%.
  3. 3.No Capabilities Erosion: Multimodal evaluations confirm action-pretraining preserves broad vision-language competence while significantly sharpening embodied grounding.

๐Ÿค– Supported Robot Embodiments

Wall-OSS-0.5 supports a wide variety of robot embodiments ranging from commercial platforms to open-source benchmarks, each requiring a specific ``norm_key`` configuration.:

Proprietary / Internal Configurations

  • โ€”ex_normal
  • โ€”x2_normal

Open-Source Benchmarks

  • โ€”norm_keyDobbE
  • โ€”RH20T
  • โ€”UMI-biarm
  • โ€”agibotworld_alpha
  • โ€”austin_buds
  • โ€”austin_sirius
  • โ€”bc_z
  • โ€”berkeley_autolab_ur5
  • โ€”berkeley_cable_routing
  • โ€”berkeley_fanuc_manipulation
  • โ€”bridge_data_v2
  • โ€”droid
  • โ€”fmb
  • โ€”fractal
  • โ€”furniture_bench
  • โ€”galaxea_lerobot_v21
  • โ€”jaco_play
  • โ€”nyu_rot
  • โ€”realomin_umi
  • โ€”stanford_hydra
  • โ€”stanford_kuka_multimodal
  • โ€”taco_play
  • โ€”utaustin_mutex
  • โ€”viola

RoboChallenge Series

  • โ€”norm_keyrobochallenge_Franka
  • โ€”robochallenge_UR5
  • โ€”robochallenge_aloha
  • โ€”robochallenge_arx5

RoboCoin Series

  • โ€”norm_keyrobocoin_aitbot_mmk2
  • โ€”robocoin_aloha
  • โ€”robocoin_alpha_bot
  • โ€”robocoin_cobot
  • โ€”robocoin_galaxea_r1_lite
  • โ€”robocoin_leju
  • โ€”robocoin_realman_rmc
  • โ€”robocoin_ruantong_a2d

RoboMind Series

  • โ€”norm_keyrobomind_agilex_mobile
  • โ€”robomind_franka
  • โ€”robomind_simulation
  • โ€”robomind_tienkung_gello
  • โ€”robomind_tienkung_xsens
  • โ€”robomind_ur
  • โ€”robomind_v2_0_agilex
  • โ€”robomind_v2_0_agilex_mobile
  • โ€”robomind_v2_0_ark
  • โ€”robomind_v2_0_ark_mobile
  • โ€”robomind_v2_0_franka
  • โ€”robomind_v2_0_franka_sim
  • โ€”robomind_v2_0_tianyi
  • โ€”robomind_v2_0_tianyi_mobile
  • โ€”robomind_v2_0_tienkung
  • โ€”robomind_v2_0_tienkung_sim
  • โ€”robomind_v2_0_ur5
  • โ€”robomind_v2_0_ur5_dex

๐Ÿš€ Quick Start

Installation

bash
# Create conda environment
conda create --name wallx python=3.12
conda activate wallx

# Install base requirements
pip install torch torchvision transformers
pip install huggingface_hub

# Install Wall-X from GitHub
git clone https://github.com/X-Square-Robot/wall-x.git
cd wall-x
pip install -e .

๐ŸŽฏ Supervised Fine-Tuning (SFT)

For training Wall-X on your robotics datasets, please refer to our comprehensive training guide:

๐Ÿ“– [Training Documentation](https://github.com/X-Square-Robot/wall-x/blob/main/workspace/README.md)

The training process includes:

  • โ€”Dataset Preparation: How to prepare your robotics datasets in LeRobot format
  • โ€”Configuration Setup: Detailed configuration for GPU setup, model paths, and robot DOF settings
  • โ€”Training Scripts: Ready-to-use training scripts with proper hyperparameters

๐Ÿ”ฎ Inference

For detailed inference examples and model evaluation:

๐Ÿ“– [Inference Documentation](https://github.com/X-Square-Robot/wall-x/blob/main/scripts/)

Basic Inference Example

python
"""Load checkpoint and run one inference with fake inputs."""

from __future__ import annotations

import sys
from pathlib import Path

import numpy as np
import torch

CHECKPOINT = "x-square-robot/wall-oss-0.5"

repo_root = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(repo_root))

import wall_x._vendor.harrix.adapters  # noqa: F401
from wall_x._vendor.harrix.adapters.registry import build_adapter
from wall_x._vendor.harrix.envs.libero_common import encode_proprio
from wall_x._vendor.harrix.eval_config import EvalConfig, autofill_from_checkpoint

# 1) load model
cfg = EvalConfig()
cfg.model.checkpoint_path = CHECKPOINT
cfg.model.norm_key = "x2_normal"
cfg.model.cam_names = ["face_view", "right_wrist_view"]
cfg = autofill_from_checkpoint(cfg)
model = build_adapter(cfg)

# 2) fake input
rng = np.random.default_rng(0)
obs = {
    "eef_pos": rng.normal(size=3).astype(np.float32),
    "eef_axisangle": rng.normal(size=3).astype(np.float32),
    "gripper": rng.normal(size=1).astype(np.float32),
    "face_view": rng.integers(0, 256, (448, 448, 3), dtype=np.uint8),
    "wrist_view": rng.integers(0, 256, (448, 448, 3), dtype=np.uint8),
}
instruction = "pick up the cup"

# 3) infer (return raw action chunk, shape: [horizon, action_dim])
encoded = encode_proprio(obs, model._train_config, model._action_horizon)
prefix, postfix = model._get_flow_prompt(instruction)
batch_inputs = model._construct_model_input([encoded], [prefix], [postfix])
padding = (
    torch.zeros_like(model._normalizer_action.delta[batch_inputs["dataset_names"][0]])
    .unsqueeze(0)
    .to("cpu")
)
padding = model._normalizer_action.normalize_data(
    padding, batch_inputs["dataset_names"]
).to(batch_inputs["input_ids"].device)

out = model._model.generate_flow_action(
    action_horizon=model._action_horizon,
    action_dim=model._action_dim,
    num_inference_timesteps=model._num_inference_timesteps,
    padding_action=padding,
    **batch_inputs,
)
result = out["predict_action"].detach().cpu().numpy()
print("result shape:", result.shape)
print("result:", result)

Advanced Inference Scripts

For production-ready inference and evaluation scripts:

bash
# Basic inference test
python ./scripts/fake_inference.py

# Generate open-loop comparison plots
python ./scripts/draw_openloop_plot.py

๐Ÿ“ [View all inference scripts](https://github.com/X-Square-Robot/wall-x/tree/main/scripts)

๐Ÿ“š Complete Documentation

For comprehensive setup, training, and inference instructions:

๐Ÿš€ [Visit our GitHub Repository](https://github.com/X-Square-Robot/wall-x)

The repository contains:

  • โ€”Detailed Installation Guide: Complete environment setup with all dependencies
  • โ€”Training Tutorials: Step-by-step SFT process with LeRobot datasets
  • โ€”Inference Examples: Multiple inference scripts and evaluation tools
  • โ€”Configuration Templates: Ready-to-use configs for different robot setups
  • โ€”Troubleshooting Guide: Common issues and solutions

๐Ÿ“„ Cite Us

If you find WALL-OSS models useful, please cite:

bibtex
@misc{walloss_paper_2025,
  title        = {WALL-OSS: Igniting VLMs toward the Embodied Space},
  author       = {X Square Robot},
  year         = {2025},
  howpublished = {\url{https://x2robot.cn-wlcb.ufileos.com/wall_oss.pdf}},
  note         = {White paper}
}