StarVLA supports real-world robotic arm data conversion, single- and dual-arm training, and inference deployment, using the Franka as an example.#198
Merged
JinhuiYE merged 6 commits intostarVLA:starVLAfrom Mar 19, 2026
Conversation
JinhuiYE
approved these changes
Mar 19, 2026
Contributor
|
StarVLA supports real-world robotic arm data conversion, single- and dual-arm training, and inference deployment, using the Franka as an example. (#198) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces comprehensive documentation and example code for training and deploying StarVLA with Franka robot data, including both single-arm and dual-arm setups. The main additions are a detailed step-by-step guide in
README.mdand a fully annotated dual-arm inference example script. These changes make it much easier to understand the workflow for data preparation, model training, and real-time robot control, and provide reusable code for WebSocket-based policy server integration.Documentation improvements:
examples/Franka/README.mdcovering data conversion, dataset registration, training configuration, model parameter setup, deployment, and adaptation to new robots. The guide includes code snippets, configuration examples, and reference implementations forenv.step()in both single-arm and dual-arm setups.Example code enhancements:
examples/Franka/eval_files/inference_dual_example.py, a dual-arm inference script with clear separation between reusable real code (WebSocket client, request/response handling, action unnormalization, normalization stats loading) and robot-specific pseudocode (camera acquisition, robot environment, action execution). The script is annotated for easy adaptation to other robots and includes detailed comments on action space and integration.Deployment and integration guidance:
Action normalization and unnormalization logic:
WebSocket-based policy server workflow: