-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Remove config yaml for robot devices #594
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
Merged
aliberts
merged 40 commits into
user/aliberts/2024_11_30_remove_hydra
from
user/rcadene/2024_12_24_remove_hydra_robot_devices
Jan 9, 2025
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
3bb5876
Add draccus, create MainConfig
aliberts 6b4cdab
Merge remote-tracking branch 'origin/main' into user/aliberts/2024_11…
aliberts 660d65d
WIP refactor train.py and ACT
aliberts ca34677
Add policies training presets
aliberts 0eb7cdc
Update diffusion policy
aliberts 32595f0
Add pusht and xarm env configs
aliberts 66aa91a
Update tdmpc
aliberts 14de4d9
Update vqbet
aliberts 514cdae
Merge remote-tracking branch 'origin/main' into user/aliberts/2024_11…
aliberts fa55e67
Fix poetry relax
aliberts 6a2474e
Switch to full dataclass (Not tested)
Cadene ae89d9f
tests motors, cameras, robots are passing
Cadene 14a117e
nit comment
Cadene ba31014
Add feature types to envs
aliberts 87d92f9
Add EvalPipelineConfig, parse features from envs
aliberts 9248d73
Merge remote-tracking branch 'origin/user/aliberts/2024_11_30_remove_…
Cadene 72e1463
Fix channel -> channels
Cadene b3d20ae
WIP
Cadene e6ebf48
WIP before tests
Cadene bfbde19
WIP fix tests, they are runnable
Cadene b47de65
Fix some more tests
Cadene d180ae8
Fix policties unit tests
Cadene 25ec3e7
fix test policies
Cadene 1199d65
Improve test
Cadene acf44c4
WIP
Cadene ce93213
Small fix
Cadene 0c7126d
fix
Cadene 60a0b0c
Merge remote-tracking branch 'origin/user/aliberts/2024_11_30_remove_…
Cadene 13af6e5
Merge remote-tracking branch 'origin/user/aliberts/2024_11_30_remove_…
Cadene 1319a83
fix test_record_and_replay_and_policy
Cadene c0ecbee
Fix image_transforms
Cadene 3b60310
Add remove dataset download TODO
Cadene 06d44c0
fix tdmpc
Cadene 0ddd9b7
Fix bug in delta_indices
Cadene f686e8a
Remove normalize_inputs and use None instead
Cadene e868178
diffusion backward works
Cadene 028f280
comment out diffusion backward compatibility
Cadene abd1a99
Merge remote-tracking branch 'origin/user/aliberts/2024_11_30_remove_…
Cadene 9cdd778
All tests are passing
Cadene 2c17859
Address Simon's comments
Cadene File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ | |
"dtype": None, | ||
"shape": (3, 96, 96), | ||
"names": [ | ||
"channel", | ||
"channels", | ||
"height", | ||
"width", | ||
], | ||
|
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,13 +26,13 @@ | |
from textwrap import dedent | ||
|
||
from lerobot import available_datasets | ||
from lerobot.common.datasets.v2.convert_dataset_v1_to_v2 import convert_dataset, parse_robot_config | ||
from lerobot.common.datasets.v2.convert_dataset_v1_to_v2 import convert_dataset | ||
from lerobot.common.robot_devices.robots.configs import AlohaRobotConfig | ||
|
||
LOCAL_DIR = Path("data/") | ||
|
||
ALOHA_CONFIG = Path("lerobot/configs/robot/aloha.yaml") | ||
ALOHA_MOBILE_INFO = { | ||
"robot_config": parse_robot_config(ALOHA_CONFIG), | ||
"robot_config": AlohaRobotConfig(), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could add a |
||
"license": "mit", | ||
"url": "https://mobile-aloha.github.io/", | ||
"paper": "https://arxiv.org/abs/2401.02117", | ||
|
@@ -45,7 +45,7 @@ | |
}""").lstrip(), | ||
} | ||
ALOHA_STATIC_INFO = { | ||
"robot_config": parse_robot_config(ALOHA_CONFIG), | ||
"robot_config": AlohaRobotConfig(), | ||
"license": "mit", | ||
"url": "https://tonyzhaozh.github.io/aloha/", | ||
"paper": "https://arxiv.org/abs/2304.13705", | ||
|
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Reminder: Move this in
tests/
as it's only used for that purpose