-
Notifications
You must be signed in to change notification settings - Fork 3.4k
fix a bug for kwargs in wallx #2714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Pepijn <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request aims to improve the WallXPolicy class extensibility and enhance the WALL-OSS documentation with additional resources. However, the main code change has a bug that prevents the intended functionality from working correctly.
Key changes:
- Added
**kwargsparameter toWallXPolicy.__init__method (though not properly forwarded to parent) - Enhanced documentation with direct links to paper, repository, and Hugging Face resources
- Fixed markdown table formatting issues in the README
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
src/lerobot/policies/wall_x/modeling_wall_x.py |
Added **kwargs parameter to constructor signature, but missing proper forwarding to parent class |
docs/source/policy_walloss_README.md |
Added "Additional Resources" section with links, fixed table formatting, and clarified license information |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This pull request updates the documentation for the WALL-OSS model and makes a minor improvement to the
WallXPolicyclass constructor. The most important changes are grouped below:Documentation improvements:
docs/source/policy_walloss_README.mdto enhance discoverability and resource access.Codebase improvement:
WallXPolicyclass constructor insrc/lerobot/policies/wall_x/modeling_wall_x.pyto accept additional keyword arguments (**kwargs), improving extensibility for future enhancements.