feat(robots): consolidate SO arms implementation#2763
Merged
imstevenpmwork merged 2 commits intomainfrom Jan 8, 2026
Merged
Conversation
|
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
4 tasks
TheWisp
added a commit
to TheWisp/lerobot
that referenced
this pull request
Jan 9, 2026
Move SO107 follower and leader into the consolidated so_follower/so_leader modules to align with upstream architecture pattern established in huggingface#2763. Changes: - Move so107_follower/ into so_follower/so107_follower/ - Move so107_leader/ into so_leader/so107_leader/ - Inherit from SOFollowerBase and SOLeaderBase - Update configs to inherit from base config classes - Update all imports across scripts, RL modules, and utils - Remove standalone so107 module imports Benefits: - Follows upstream's consolidated architecture pattern - Reduces code duplication (429 lines → 128 lines) - Cleaner import structure with centralized exports - Fewer conflicts in future rebases - Easier to contribute upstream SO107 implements a 7-axis arm with forearm_roll joint, requiring custom motor configuration that overrides the 6-motor base class setup. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
4 tasks
|
Hello, thank you for your outstanding work. Could you please take a look at this issue? #2774 |
sandhya-cb
pushed a commit
to sandhya-cb/lerobot-clutterbot
that referenced
this pull request
Jan 28, 2026
* feat(robots): consolidate SO arms implementation * chore(robots): delete unnecessary init modules
4 tasks
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.
Type / Scope
Summary / Motivation
Currently SO100 and SO101 implementations (leader and follower) are practically the same code-wise. This consolidates their implementation into one to reduce duplicated code & ease maintenance. The differences between SO100 & SO101 are mostly HW-wise, and in case we do some modifications to the SW it would be either a new type of robot or SO20X.
Related issues
What changed
How was this tested
pytest -vv tests/lerobot-teleoperatealternating betweenso100andso101tags to check if the CLI parser continues to work and if the robots actually move.Checklist (required before merge)
pre-commit run -a)pytest)Reviewer notes