Skip to content

Commit 15d41a2

Browse files
committed
replaced old bitbots_rl_motion with bitbots_rl_walk
1 parent 341cb6a commit 15d41a2

41 files changed

Lines changed: 70 additions & 485 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/bitbots_misc/bitbots_bringup/launch/motion.launch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050

5151
<!-- launch the rl walking
5252
<group if="$(var walking)">
53-
<node pkg="bitbots_rl_walk" exec="walk" output="screen">
53+
<node pkg="bitbots_rl_motion" exec="walk" output="screen">
5454
<param name="use_sim_time" value="$(var sim)"/>
5555
</node>
5656
</group>
@@ -70,7 +70,7 @@
7070

7171
<!-- launch the rl kick -->
7272
<group if="$(var kicking)">
73-
<node pkg="bitbots_rl_walk" exec="forward_kick" output="screen">
73+
<node pkg="bitbots_rl_motion" exec="forward_kick" output="screen">
7474
<param name="use_sim_time" value="$(var sim)"/>
7575
</node>
7676
</group>

src/bitbots_misc/bitbots_bringup/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<exec_depend>bitbots_localization</exec_depend>
2929
<exec_depend>bitbots_odometry</exec_depend>
3030
<exec_depend>bitbots_quintic_walk</exec_depend>
31-
<exec_depend>bitbots_rl_walk</exec_depend>
31+
<exec_depend>bitbots_rl_motion</exec_depend>
3232
<exec_depend>bitbots_robot_description</exec_depend>
3333
<exec_depend>bitbots_ros_control</exec_depend>
3434
<exec_depend>bitbots_utils</exec_depend>

src/bitbots_motion/bitbots_rl_motion/CMakeLists.txt

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/bitbots_rl_walk/bitbots_rl_walk/__init__.py renamed to src/bitbots_motion/bitbots_rl_motion/bitbots_rl_motion/__init__.py

File renamed without changes.

src/bitbots_rl_walk/bitbots_rl_walk/forward_kick.py renamed to src/bitbots_motion/bitbots_rl_motion/bitbots_rl_motion/forward_kick.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from bitbots_msgs.msg import JointCommand
3232

3333
ONNX_MODEL = os.path.join(
34-
get_package_share_directory("bitbots_rl_walk"), "models", "wolfgang_forward_kick_better_ball_ppo.onnx"
34+
get_package_share_directory("bitbots_rl_motion"), "models", "wolfgang_forward_kick_better_ball_ppo.onnx"
3535
)
3636

3737
WALKREADY_STATE = np.array(

src/bitbots_rl_walk/bitbots_rl_walk/policy_nodes.py renamed to src/bitbots_motion/bitbots_rl_motion/bitbots_rl_motion/policy_nodes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
def main():
99
rclpy.init()
1010

11-
wolfgang_config = os.path.join(get_package_share_directory("bitbots_rl_walk"), "config", "wolfgang_config.yaml")
12-
# kick_policy_path = os.path.join(get_package_share_directory("bitbots_rl_walk"), "models", "wolfgang_kick_ppo.onnx")
11+
wolfgang_config = os.path.join(get_package_share_directory("bitbots_rl_motion"), "config", "wolfgang_config.yaml")
12+
# kick_policy_path = os.path.join(get_package_share_directory("bitbots_rl_motion"), "models", "wolfgang_kick_ppo.onnx")
1313

1414
walk_node = WalkNode(wolfgang_config)
1515
# kick_node = RLNode(kick_policy_path)

src/bitbots_motion/bitbots_rl_motion/config/rl_walk_sim.yaml

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/bitbots_rl_walk/configs/wolfgang_config.yaml renamed to src/bitbots_motion/bitbots_rl_motion/configs/wolfgang_config.yaml

File renamed without changes.
-11.4 KB
Binary file not shown.

src/bitbots_motion/bitbots_rl_motion/docs/conf.py

Lines changed: 0 additions & 187 deletions
This file was deleted.

0 commit comments

Comments
 (0)