Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e79d8cd
(refactor) refactor `kineamatics.py`
michel-aractingi Jun 16, 2025
52273f7
(refactor) refactor `gym_manipulator.py` to use the new kinematics fr…
michel-aractingi Jun 16, 2025
1d6dabb
(pyproject) added `kinematics` optional dependency to install placo
michel-aractingi Jun 16, 2025
a6b99af
(pyproject) bump gym-hil version
michel-aractingi Jun 16, 2025
5e47eb3
(pyproject) add placo dependency to hilserl
michel-aractingi Jun 16, 2025
6b252cd
(docs) updated docs to convey the need for urdf
michel-aractingi Jun 16, 2025
54fc265
Remove joint names from config_so100_follower_end_effector
michel-aractingi Jun 18, 2025
fe32add
(fix) bug in gym_manipulator where get_observation was called at diff…
michel-aractingi Jun 19, 2025
76d5fe3
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 19, 2025
8aabbd3
change ik to inverse_kinematics and target_frame_name
michel-aractingi Jun 20, 2025
806a0b7
Remove target frame from ik and fk and keep it in the constructor
michel-aractingi Jun 20, 2025
7672daf
(fix) general fixes in find joint limits and gym_manipulator
michel-aractingi Jun 20, 2025
92749aa
added orientation weight in config
michel-aractingi Jun 20, 2025
de44931
fix directions in keyboard teleop
michel-aractingi Jun 21, 2025
713b53e
Removed orientation weight from configuration and added it as an argu…
michel-aractingi Jun 30, 2025
4c144a7
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jun 30, 2025
cd0a5d6
Unifiying names in `kinematics.py` for consistency
michel-aractingi Jun 30, 2025
dd6687f
fix(keyboard teleop), update(end-effector-frame), added not for urdf …
michel-aractingi Jul 2, 2025
6352236
reverted back key mappings for easier readability
michel-aractingi Jul 2, 2025
c632b36
Merge branch 'main' into user/michel-aractingi/2025-06-16-refactor-ki…
CarolinePascal Jul 2, 2025
cec36bd
fix(record and preprocess): update dataset cropping and gym environme…
AdilZouitine Jun 24, 2025
02186c9
nit removed dead line
michel-aractingi Jul 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/hilserl.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ This guide provides step-by-step instructions for training a robot policy using
- A gamepad (recommended) or keyboard to control the robot
- A Nvidia GPU
- A real robot with a follower and leader arm (optional if you use the keyboard or the gamepad)
- A URDF file for the robot for the kinematics package (check `lerobot/common/model/kinematics.py`)

## What kind of tasks can I train?

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ dependencies = [
"pyserial>=3.5",
"pyzmq>=26.2.1",
"rerun-sdk>=0.21.0",
"scipy>=1.14.0",
"termcolor>=2.4.0",
"torch>=2.2.1",
"torchcodec>=0.2.1; sys_platform != 'win32' and (sys_platform != 'linux' or (platform_machine != 'aarch64' and platform_machine != 'arm64' and platform_machine != 'armv7l')) and (sys_platform != 'darwin' or platform_machine != 'x86_64')",
Expand All @@ -87,6 +86,7 @@ dora = [
dynamixel = ["dynamixel-sdk>=3.7.31"]
feetech = ["feetech-servo-sdk>=1.0.0"]
gamepad = ["pygame>=2.5.1", "hidapi>=0.14.0"]
kinematics = ["placo>=0.9.6"]
intelrealsense = [
"pyrealsense2>=2.55.1.6486 ; sys_platform != 'darwin'",
"pyrealsense2-macosx>=2.54 ; sys_platform == 'darwin'",
Expand All @@ -100,7 +100,7 @@ stretch = [
"pyrealsense2>=2.55.1.6486 ; sys_platform != 'darwin'"
]
test = ["pytest>=8.1.0", "pytest-timeout>=2.4.0", "pytest-cov>=5.0.0", "pyserial>=3.5", "mock-serial>=0.0.1 ; sys_platform != 'win32'"]
hilserl = ["transformers>=4.50.3", "gym-hil>=0.1.8", "protobuf>=5.29.3", "grpcio==1.71.0"]
hilserl = ["transformers>=4.50.3", "gym-hil>=0.1.9", "protobuf>=5.29.3", "grpcio==1.71.0", "placo>=0.9.6"]
umi = ["imagecodecs>=2024.1.1"]
video_benchmark = ["scikit-image>=0.23.2", "pandas>=2.2.2"]
xarm = ["gym-xarm>=0.1.1 ; python_version < '4.0'"]
Expand Down
Loading
Loading